/// <summary> /// Tillages the specified data. /// </summary> /// <param name="Data">The data.</param> /// <exception cref="ApsimXException"></exception> public void Tillage(TillageType Data) { //* =========================================================== // subroutine soilwat2_tillage () //* =========================================================== //*+ Purpose //* Set up for CN reduction after tillage operation //*+ Notes //* This code is borrowed from residue module. //*- Implementation Section ---------------------------------- // cn_red is the reduction in the cn value, and cn_rain is the amount of rainfall after the tillage event that the reduction ceases to occur. //the event always gives us at least the type of tillage. Even if it does not give the cn_red and cn_rain. //if the event does not give us cn_red and cn_rain then use the type name to look up the values in the sim file (ini file). // ez - departs slightly from the Fortran version, where cn_red and cn_rain were optional arguments // They are always present here, but if the user sets the value to a negative number, we'll then // try to read the values from the initialisation data. //If the TillageData is not valid if ((Data.cn_red <= 0) || (Data.cn_rain <= 0)) { string message = "tillage:- " + Data.Name + " has incorrect values for " + Environment.NewLine + "CN reduction = " + Data.cn_red + Environment.NewLine + "Acc rain = " + Data.cn_red; throw new ApsimXException(this, message); } double reduction; //! Ensure cn equation won't go silly reduction = constants.bound(Data.cn_red, 0.0, Soil.SoilWater.CN2Bare); switch (surface.SurfaceType) { case Surfaces.NormalSurface: NormalSurface normal = (NormalSurface)surface; normal.UpdateTillageCnRedVars(Data.cn_rain, reduction); normal.ResetCumWaterSinceTillage(); WriteTillageToSummaryFile("a User Specified TillageType", reduction, Data.cn_rain); return; case Surfaces.PondSurface: PondSurface pond = (PondSurface)surface; pond.UpdateTillageCnRedVars(Data.cn_rain, reduction); pond.ResetCumWaterSinceTillage(); WriteTillageToSummaryFile("a User Specified TillageType", reduction, Data.cn_rain); return; default: return; } }
///<summary> Who knows</summary> public void Tillage(TillageType Data) { }