本文整理汇总了C#中libsbml.Model.getListOfSpecies方法的典型用法代码示例。如果您正苦于以下问题:C# Model.getListOfSpecies方法的具体用法?C# Model.getListOfSpecies怎么用?C# Model.getListOfSpecies使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类libsbml.Model
的用法示例。
在下文中一共展示了Model.getListOfSpecies方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: getSpecies
/// <summary>
/// [ SpeciesStruct ]
/// [[ Id , Name , Compartment , InitialAmount , InitialConcentration , SubstanceUnit , SpatialSizeUnit , Unit , HasOnlySubstanceUnit , BoundaryCondition , Charge , Constant ]]
/// </summary>
/// <param name="aSBMLmodel"></param>
/// <returns></returns>
public static List<SpeciesStruct> getSpecies(Model aSBMLmodel)
{
List<SpeciesStruct> list = new List<SpeciesStruct>();
ListOfSpecies listOfSpecies = aSBMLmodel.getListOfSpecies();
for (int i = 0; i < listOfSpecies.size(); i++ )
{
Species aSpecies = aSBMLmodel.getSpecies(i);
string anId_Sp = aSpecies.getId();
string aName_Sp = aSpecies.getName();
string aCompartment_Sp = aSpecies.getCompartment();
double anInitialAmount_Sp = GetInitialAmount(aSpecies);
double anInitialConcentration_Sp = GetInitialConcentration(aSpecies);
string aSubstanceUnit_Sp = aSpecies.getSubstanceUnits();
string aSpatialSizeUnit_Sp = aSpecies.getSpatialSizeUnits();
string anUnit_Sp = aSpecies.getUnits();
bool aHasOnlySubstanceUnit_Sp = aSpecies.getHasOnlySubstanceUnits();
bool aBoundaryCondition_Sp = aSpecies.getBoundaryCondition();
int aCharge_Sp = aSpecies.getCharge();
bool aConstant_Sp = aSpecies.getConstant();
SpeciesStruct species = new SpeciesStruct(
anId_Sp,
aName_Sp,
aCompartment_Sp,
anInitialAmount_Sp,
anInitialConcentration_Sp,
aSubstanceUnit_Sp,
aSpatialSizeUnit_Sp,
anUnit_Sp,
aHasOnlySubstanceUnit_Sp,
aBoundaryCondition_Sp,
aCharge_Sp,
aConstant_Sp);
list.Add( species );
}
return list;
}
示例2: test_Species_parent_create
public void test_Species_parent_create()
{
Model m = new Model(2,4);
Species s = m.createSpecies();
ListOf lo = m.getListOfSpecies();
assertTrue( lo == s.getParentSBMLObject() );
assertTrue( lo == m.getSpecies(0).getParentSBMLObject() );
assertTrue( m == lo.getParentSBMLObject() );
}
示例3: test_Species_parent_add
public void test_Species_parent_add()
{
Species ia = new Species(2,4);
ia.setId("s");
ia.setCompartment("c");
Model m = new Model(2,4);
m.addSpecies(ia);
ia = null;
ListOf lo = m.getListOfSpecies();
assertTrue( lo == m.getSpecies(0).getParentSBMLObject() );
assertTrue( m == lo.getParentSBMLObject() );
}
示例4: test_Species_ancestor_create
public void test_Species_ancestor_create()
{
Model m = new Model(2,4);
Species s = m.createSpecies();
ListOf lo = m.getListOfSpecies();
assertTrue( s.getAncestorOfType(libsbml.SBML_MODEL) == m );
assertTrue( s.getAncestorOfType(libsbml.SBML_LIST_OF) == lo );
assertTrue( s.getAncestorOfType(libsbml.SBML_DOCUMENT) == null );
assertTrue( s.getAncestorOfType(libsbml.SBML_EVENT) == null );
Species obj = m.getSpecies(0);
assertTrue( obj.getAncestorOfType(libsbml.SBML_MODEL) == m );
assertTrue( obj.getAncestorOfType(libsbml.SBML_LIST_OF) == lo );
assertTrue( obj.getAncestorOfType(libsbml.SBML_DOCUMENT) == null );
assertTrue( obj.getAncestorOfType(libsbml.SBML_EVENT) == null );
}
示例5: test_Species_ancestor_add
public void test_Species_ancestor_add()
{
Species ia = new Species(2,4);
Model m = new Model(2,4);
ia.setId("s");
ia.setCompartment("c");
m.addSpecies(ia);
ia = null;
ListOf lo = m.getListOfSpecies();
Species obj = m.getSpecies(0);
assertTrue( obj.getAncestorOfType(libsbml.SBML_MODEL) == m );
assertTrue( obj.getAncestorOfType(libsbml.SBML_LIST_OF) == lo );
assertTrue( obj.getAncestorOfType(libsbml.SBML_DOCUMENT) == null );
assertTrue( obj.getAncestorOfType(libsbml.SBML_EVENT) == null );
}
示例6: test_ReadSBML_metaid_ListOf
public void test_ReadSBML_metaid_ListOf()
{
SBase sb;
string s = wrapSBML_L2v1("<listOfFunctionDefinitions metaid='lofd'/>" +
"<listOfUnitDefinitions metaid='loud'/>" +
"<listOfCompartments metaid='loc'/>" +
"<listOfSpecies metaid='los'/>" +
"<listOfParameters metaid='lop'/>" +
"<listOfRules metaid='lor'/>" +
"<listOfReactions metaid='lorx'/>" +
"<listOfEvents metaid='loe'/>");
D = libsbml.readSBMLFromString(s);
M = D.getModel();
assertTrue( M != null );
sb = M.getListOfFunctionDefinitions();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "lofd" == sb.getMetaId() ));
sb = M.getListOfUnitDefinitions();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "loud" == sb.getMetaId() ));
sb = M.getListOfCompartments();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "loc" == sb.getMetaId() ));
sb = M.getListOfSpecies();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "los" == sb.getMetaId() ));
sb = M.getListOfParameters();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "lop" == sb.getMetaId() ));
sb = M.getListOfRules();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "lor" == sb.getMetaId() ));
sb = M.getListOfReactions();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "lorx" == sb.getMetaId() ));
sb = M.getListOfEvents();
assertEquals( true, sb.isSetMetaId() );
assertTrue(( "loe" == sb.getMetaId() ));
}