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

1 次查看(过去 30 天)
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

采纳的回答

Arthur Goldsipe
Arthur Goldsipe 2015-1-8
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.

更多回答(1 个)

Arthur Goldsipe
Arthur Goldsipe 2015-1-8
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 个评论
Ciaran
Ciaran 2015-1-8
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 2015-1-8
Ok, that makes sense. I'll add a new answer that describes a couple of ways to do this.

请先登录,再进行评论。

社区

更多回答在  SimBiology Community

类别

Help CenterFile Exchange 中查找有关 Extend Modeling Environment 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by