-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
Description
Created by zoltuz on 2012-10-02
Reaction Rate Parameters
In simbiology there's two ways to introduce parameters to the reactions
- Parameter object added to Kinetic Law
* Pros: In this way parameters are local and accessible for only one reaction.
* Cons: To handle centralized parameters the array of parameters either should be global or passed into every single function along the way. - Parameter object added directly to the model object
* Pros: All the parameters can be added at one place in the code, but there're global.
More organized code structure.
* Cons: The parameters values inside the code aren't protected from the end-user. (All the latter added parameters and the original ones are in the same space, this might cause parameter override, etc)
More: http://www.mathworks.com/help/simbio/ref/parameterobject.html
Rules and other parameters
-
About the simbiology rules can be easily added, where parameters can be dynamically computer according to the given rule. (Basically, if one of the parameters is the left side of a rule, than that parameter will calculated at simulation initialization or every time parameter is needed) More: http://www.mathworks.com/help/simbio/ref/ruletype.html
-
Temperature, pH and other experiment related variables: I think they can be added directly to the model object as parameters to avoid passing them through each function.
Please, let me know what do you think about this!
Reactions are currently unavailable