Ejemplo n.º 1
0
 /// <summary>Calculate and return the dry matter supply (g/m2)</summary>
 public virtual BiomassSupplyType CalculateDryMatterSupply()
 {
     dryMatterSupply.Fixation        = Photosynthesis.Value();
     dryMatterSupply.Retranslocation = StartLive.StorageWt * DMRetranslocationFactor.Value();
     dryMatterSupply.Reallocation    = 0.0;
     return(dryMatterSupply);
 }
Ejemplo n.º 2
0
 private void SetDMSupply(object sender, EventArgs e)
 {
     DMSupply.Fixation        = Photosynthesis.Value();
     DMSupply.Retranslocation = StartLive.StorageWt * DMRetranslocationFactor.Value();
     DMSupply.Reallocation    = 0.0;
 }