question

George C2 avatar image
0 Likes"
George C2 asked George C2 commented

Code: How to check if an object exists in the model?

Goal: So I would like to check if a specific object with a specific name exists in the current model.

Q: How would I write an IF statement within a process flow custom code to query such a thing?

Current Code:

  1. if(model().find("Operator1").first){
  2. //Do something
  3. }else{
  4. //Do something else
  5. }

> Do I need to make the "model().find..." part == #, NULL, or something else?

FlexSim 19.1.0
codemodelobjectexist
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Jacob Gillespie avatar image
2 Likes"
Jacob Gillespie answered George C2 commented

Your current code should work fine.

There are only certain situations when you need to use objectexists(). Use it whenever you are using a non dot-syntax command which returns a node. For example:

  1. if(objectexists(node("Operator1", model()))){
  2. //Do something
  3. }else{
  4. //Do something else
  5. }

--

If you are asking how to first check if Operator1 exists you can do this:

  1. if(Model.find("Operator1") && Model.find("Operator1").first){
  2. //Do something
  3. }else{
  4. //Do something else
  5. }

Or this:

  1. if(Model.find("Operator1")?.first){
  2. //Do something
  3. }else{
  4. //Do something else
  5. }
· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Aaron C avatar image
0 Likes"
Aaron C answered

Try:
if(objectexists(Model.find("NameOfObject")))
{
// Do Something
}

5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

José Antonio MD avatar image
0 Likes"
José Antonio MD answered

Hello @George C2,

FlexSim has a specific function for that:

  1. objectexists()

Its value will be 1 if it exists in your model and 0 if not..

I hope I've been helpful.

5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.