using LeafWeb.Core.Utility; namespace LeafWeb.Core.Entities { /// /// 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. /// public class LeafGasComparisonPhotosyntheticInfo { /// /// intercellular CO2 partial pressure /// [ParseInfo(1, units:"Pa")] public double CO2i { get; set; } /// /// Chloraplastic CO2 partial pressure for Rubisco limited photosynthesis /// [ParseInfo(2, units: "Pa")] public double CO2cc { get; set; } /// /// Rubisco-limited net assimilation rate calculated with the optimized parameters /// [ParseInfo(3, units: "umol/m2/s")] public double Ac { get; set; } /// /// Chloraplastic CO2 partial pressure for RuBP regeneration limited photosynthesis /// [ParseInfo(4, units:"Pa")] public double CO2cj { get; set; } /// /// RuBP regeneration-limited net assimilation rate calculated with estimated parameters /// [ParseInfo(5, units: "umol/m2/s")] public double Aj { get; set; } /// /// Chloraplastic CO2 partial pressure for export limited photosynthesis /// [ParseInfo(6, units: "Pa")] public double CO2ct { get; set; } /// /// TPU-limited net assimilation rate calculated with estimated parameters /// [ParseInfo(7, units: "umol/m2/s")] public double At { get; set; } public virtual LeafGasComparison LeafGasComparison { get; set; } } }