コード例 #1
0
 protected IParameter Solubility(string segment) => Lumen.Container(segment).Container(_compound.Name).Parameter(CoreConstants.Parameters.SOLUBILITY);
コード例 #2
0
 protected IContainer ParticleBin(int binIndex)
 {
     return(Application.Container($"ParticleBin_{binIndex + 1}")); //in the model bin inexation starts with 1
 }
コード例 #3
0
 private IParameter organParameterFor(IContainer root, string organName, string parameterName)
 {
    return root.Container(Constants.ORGANISM)
       .Container(organName).Parameter(parameterName);
 }