Exemple #1
0
 /// <summary>Removes biomass from organs when harvest, graze or cut events are called.</summary>
 /// <param name="biomassRemoveType">Name of event that triggered this biomass remove call.</param>
 /// <param name="value">The fractions of biomass to remove</param>
 public override void DoRemoveBiomass(string biomassRemoveType, OrganBiomassRemovalType value)
 {
     biomassRemovalModel.RemoveBiomass(biomassRemoveType, value, Live, Dead, Removed, Detached);
 }
Exemple #2
0
 /// <summary>Removes biomass from organs when harvest, graze or cut events are called.</summary>
 /// <param name="biomassRemoveType">Name of event that triggered this biomass remove call.</param>
 /// <param name="amountToRemove">The fractions of biomass to remove</param>
 public virtual void DoRemoveBiomass(string biomassRemoveType, OrganBiomassRemovalType amountToRemove)
 {
     biomassRemovalModel.RemoveBiomass(biomassRemoveType, amountToRemove, Live, Dead, Removed, Detached);
 }