Compartments
| SBML |
Chaste |
| Compartment |
Parameter in OdeSystem set to compartment size |
Example
SBML
<listOfCompartments>
<compartment id="cell" metaid="metaid_0000040" name="cell" size="1">
</compartment>
</listOfCompartments>
Chaste
class FooOdeSystem : public AbstractOdeSystem
{
mParameters.push_back(1.0); // cell
}
template <>
void CellwiseOdeSystemInformation<FooOdeSystem>::Initialise()
{
this->mParameterNames.push_back("cell");
}
Compartments
Example
SBML
Chaste