Clear Filters
Clear Filters

How to use the 'exist' function for a SimBiology built-in function?

1 view (last 30 days)
SimBiology has a kinetic law built-in called 'MassAction'. I want to use 'exists' to detect whether it is in there or not (then I'll use it in an if formula). Simply using 'exists('MassAction')' does not work as it gives a negative even though I know it is there. Does anybody know how I can get this to work?
Thanks

Accepted Answer

Arthur Goldsipe
Arthur Goldsipe on 8 Jan 2015
Hi Ciaran,
The list of built-in and user-defined kinetic laws are stored on something called the SimBiology root object. You can access is with the sbioroot function. For example, here is sample code to get lists of the kinetic laws:
root = sbioroot;
userDefinedLaws = root.UserDefinedLibrary.KineticLaws;
builtinLaws = root.BuiltinLibrary.KineticLaws;
Alternatively, if you want to search for a kinetic law with a particular name, you can use the sbioselect. For example, here's how you could use sbioselect to find the MassAction kinetic law:
lawList = sbioselect('Name', 'MassAction', 'Type', 'abstract_kinetic_law')
If the output from calling sbioselect is empty, then the kinetic law with the specified name has not been added to the library. If you leave out the 'Type', 'abstract_kinetic_law' part of the command, you'll find all SimBiology objects with the specified name. You can read more about sbioselect here. And here is a list of all the Type values used in SimBiology, in case you ever want to search through the names of other types of objects.

More Answers (1)

Arthur Goldsipe
Arthur Goldsipe on 8 Jan 2015
Hi Ciaran
The MassAction kinetic law is always included in SimBiology, so you can always use it in a SimBiology model. It's also possible to search for or verify the existence of a built-in or user-defined kinetic law. If you can clarify how/why you need that information to use it in a formula, then someone can show you how to get that information if it's really necessary.
-Arthur
  2 Comments
Ciaran
Ciaran on 8 Jan 2015
Hi Arthur,
Essentially I am having difficulty defining a new kinetic law. I wanted to use an 'if' formula to add to the user defined library if it does not already exist (in attempt to get around a paradoxical error that I am getting). The 'MassAction' I know exists so I was using it to test the 'exists' function.
Thanks
Arthur Goldsipe
Arthur Goldsipe on 8 Jan 2015
Ok, that makes sense. I'll add a new answer that describes a couple of ways to do this.

Sign in to comment.

Communities

More Answers in the  SimBiology Community

Categories

Find more on Extend Modeling Environment in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!