CntrlComparison parsing

This commit is contained in:
2015-12-04 10:15:51 -05:00
parent 4d46f206ac
commit 685e8c8658
39 changed files with 820 additions and 491 deletions
@@ -0,0 +1,56 @@
using LeafWeb.Core.Parsers;
using LeafWeb.Core.Utility;
namespace LeafWeb.Core.Models
{
/// <summary>
/// The second section gives photosynthesis for each of the three limitation states at selected values of intercellular
/// partial pressure.Note that the corresponding values of chloraplastic CO2 partial pressure depend on the limitation state.
/// </summary>
public class CntrlComparisonPhotosyntheticInfo
{
/// <summary>
/// intercellular CO2 partial pressure
/// </summary>
[ParseInfo(1, units:"Pa")]
public double CO2i { get; set; }
/// <summary>
/// Chloraplastic CO2 partial pressure for Rubisco limited photosynthesis
/// </summary>
[ParseInfo(2, units: "Pa")]
public double CO2cc { get; set; }
/// <summary>
/// Rubisco-limited net assimilation rate calculated with the optimized parameters
/// </summary>
[ParseInfo(3, units: "umol/m2/s")]
public double Ac { get; set; }
/// <summary>
/// Chloraplastic CO2 partial pressure for RuBP regeneration limited photosynthesis
/// </summary>
[ParseInfo(4, units:"Pa")]
public double CO2cj { get; set; }
/// <summary>
/// RuBP regeneration-limited net assimilation rate calculated with estimated parameters
/// </summary>
[ParseInfo(5, units: "umol/m2/s")]
public double Aj { get; set; }
/// <summary>
/// Chloraplastic CO2 partial pressure for export limited photosynthesis
/// </summary>
[ParseInfo(6, units: "Pa")]
public double CO2ct { get; set; }
/// <summary>
/// TPU-limited net assimilation rate calculated with estimated parameters
/// </summary>
[ParseInfo(7, units: "umol/m2/s")]
public double At { get; set; }
public virtual CntrlComparison CntrlComparison { get; set; }
}
}