Name - Specify name of object

Description

The Nameproperty 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 non-unique species names if the species are in different compartments, and non-unique parameter names if the parameters are in different kinetic laws or at different levels. Note that having non-unique 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 Definition of Parameter Scope in the SimBiology User's Guide.

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 :

For more information on valid MATLAB variable names see genvarname and isvarname.

Characteristics

Applies toObjects: abstract kinetic law, configuration set, compartment, event, kinetic law, model, parameter, reaction, rule, species, unit, or variant.
Data typechar string
Data valuesAny char string except reserved words and characters.
AccessRead/Write

Example

  1. Create a model object with the name my_model.

    modelObj = sbiomodel ('my_model');
  2. Add a reaction object to the model object. Note the use of square 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]
  3. Set reaction Name and verify

    set (reactionObj, 'Name', 'Aspartate kinase reaction');
    get (reactionObj, 'Name')

    MATLAB returns

    ans =
    
      Aspartate kinase reaction

See Also

Functions — sbiomodel, sbiounit, sbiounitprefix

Methods — addcompartment, addkineticlaw, addmodel, addparameter, addreaction, addrule, addspecies

  


 © 1984-2008- The MathWorks, Inc.    -   Site Help   -   Patents   -   Trademarks   -   Privacy Policy   -   Preventing Piracy   -   RSS