| Contents | Index |
The Name property identifies a SimBiology object. Compartments, species, parameters, and model objects can be referenced by other objects using the Name property, therefore Name must be unique for these objects. However, species names need only be unique within each compartment. Parameter names must be unique within a model (if at the model level), or within each kinetic law (if at the kinetic law level). This means that you can have nonunique species names if the species are in different compartments, and nonunique parameter names if the parameters are in different kinetic laws or at different levels. Note that having nonunique parameter names can cause the model to have shadowed parameters and that may not be best modeling practice. For more information on levels of parameters, see Scope of Parameter Objects in the SimBiology User's Guide documentation.
Use the function sbioselect to find an object with the same Name property value.
In addition, note the following constraints and reserved characters for the Name property in objects:
Model names cannot be empty.
Parameter names cannot be empty, or have the name time.
If you have a parameter, a species, or compartment name that is not a valid MATLAB variable name, when you write an event function, an event trigger, a reaction, reaction rate equation, or a rule you must enclose that name in brackets. For example, enclose [DNA polymerase+] in brackets. In addition, if you have the same species in multiple compartments you must qualify the species with the compartment name, for example, nucleus.[DNA polymerase+], [nuclear complex].[DNA polymerase+].
Species and compartment names cannot be empty, and note the following reserved words, characters, and constraints:
The literal words null and time. Note that you can specify species names with these words contained within the name. For example, nullaminoacids or nullnucleotides.
The characters ->, <—>, [, and ].
For more information on valid MATLAB variable names, see genvarname and isvarname.
| Applies to | Objects: abstract kinetic law, configuration set, compartment, event, kinetic law, model, parameter, reaction, RepeatDose, rule, ScheduleDose, species, unit, or variant |
| Data type | char string |
| Data values | Any char string except reserved words and characters |
| Access | Read/write |
Create a model object named my_model.
modelObj = sbiomodel ('my_model');Add a reaction object to the model object. Note the use of brackets because the names are not valid MATLAB variable names.
reactionObj = addreaction(modelObj, '[Aspartic acid] -> [beta-Aspartyl-PO4]')MATLAB returns:
SimBiology Reaction Array Index: Reaction: 1 [Aspartic acid] -> [beta-Aspartyl-PO4]
Set the reaction Name and verify.
set (reactionObj, 'Name', 'Aspartate kinase reaction'); get (reactionObj, 'Name')
MATLAB returns:
ans = Aspartate kinase reaction
addcompartment, addkineticlaw, addparameter, addreaction, addrule, addspecies, RepeatDose object, sbiomodel, sbiounit, sbiounitprefix, ScheduleDose object

See how to analyze, visualize, and model biological data and systems using MathWorks products.
Get free kit| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |