Indicate species boundary condition
The BoundaryCondition
property indicates
whether a species object has a boundary condition.
When the BoundaryCondition
of a species is false
(default),
the species quantity is modified by reactions, rules, events, and
doses. If the BoundaryCondition
is true
,
the species quantity is modified by rules, events, and doses, but
not by reactions.
Set the BoundaryCondition
to true
when
you want the species to participate in a reaction, but do not want
any reactions to modify its quantity.
All SimBiology® species are state variables regardless of
the BoundaryCondition
or ConstantAmount
property.
Consider the following two use cases of boundary conditions:
Modeling receptor-ligand interactions that affect
the rate of change of the receptor but not the ligand. For example,
in response to hormone, steroid receptors such as the glucocorticoid
receptor (GR) translocate from the cytoplasm (cyt
)
to the nucleus (nuc
). The hsp90/ hsp70 chaperone
complex directs this nuclear translocation [Pratt 2004]. The natural ligand for GR is
cortisol; the synthetic hormone dexamethasone (dex
)
is used in place of cortisol in experimental systems. In this system
dexamethasone participates in the reaction but the quantity of dexamethasone
in the cell is regulated using a rule. To simply model translocation
of GR you could use the following reactions:
Formation of the chaperone-receptor complex,
Hsp90_complex + GR_cyt -> Hsp90_complex:GR_cyt
In response to the synthetic hormone dexamethasone (dex
),
GR moves from the cytoplasm to the nucleus.
Hsp90_complex:GR_cyt + dex -> Hsp90_complex + GR_nuc + dex
dex
,BoundaryCondition = true; ConstantAmount = false
dex
is modeled as a boundary condition
with a rule to regulate the rate of change of dex
in
the system. Here, the quantity of dex
is not determined
by the rate of the second reaction but by a rate rule such asddex/dt = 0.001
dex = 0.001
Modeling the role of nucleotides (for example, GTP, ATP, cAMP) and cofactors (for example, Ca++, NAD+, coenzyme A). Consider the role of GTP in the activation of Ras by receptor tyrosine kinases.
Ras-GDP + GTP -> Ras-GTP + GDP
For GTP, BoundaryCondition = true; ConstantAmount = true
Model GTP and GDP with boundary conditions, thus making them boundary
species. In addition, you can set the ConstantAmount
property
of these species to true
to indicate that their
quantity does not vary during a simulation.
Applies to | Object: species |
Data type | boolean |
Data values | true or false . The default
value is false . |
Access | Read/write |
Pratt, W.B., Galigniana, M.D., Morishima, Y., Murphy, P.J. (2004), Role of molecular chaperones in steroid receptor action, Essays Biochem, 40:41-58.