net.simplace.client.simulation.lap.SnowCoverCalculator

Calculates the snow cover, first soil layer temperature and biomass on ground factor depending on climate and soil conditions.

Snow Cover

Snow Cover is calculated using the formula:

DST0=(1.-BCV)*DST+BCV*STMP(2)) [1]

Reference: Williams, J.R., Izaurralde, C.A., 2005. The APEX model, Blackland Research Center Reports, Vol. 2. Blackland Research Center, USDA, Temple, Texas, USA

Snow Cover calculation

If the soil surface is not bare, the surface temperature can be affected considerably by the amount of cover (crop residue or snow). This effect can be simulated by combining the estimated bare surface temperature for the day with the previous day's temperature in the second soil layer (the top 10 mm layer is considered too thin for this purpose).

where DST0 is the final estimate of soil surface temperature in °C and BCV is a lagging factor for simulating residue and snow cover effects on surface temperature. The value of BCV is 0.0 for bare soil and approaches 1.0 as cover increases, as expressed in the equation

BCV=max(SNOF,BCV') [2] BCV'=CV/(CV+exp(5.34-2.40*CV)) [3] SNOF=SNO/(SNO+exp(2.30-0.220*SNO)) [4]

where CV is the sum of above ground biomass and crop residue in t ha-1 and SNO is the water content of the snow cover in mm.

Snow melt

If snow is present, it may be melted on days when the second soil layer temperature exceeds 0 oC. Snow is melted as a function of the snow pack temperature using the equation

SML=AMAX1(0.,X1*(1.52+.54*F*SNPKT)); 0.0<SML<SNO [5] SNPKT=.3333*(2.*X2+TX) [6] X1=sqrt(TMX*RA) [7] X2=min(DST0,STMP(2)) [8] F=TSNO/(TSNO+exp(5.34-2.395*TSNO)) [9]

where SML is the snowmelt rate in mm d-1, SNO is the snow present in mm of water, STMP is the temperature in oC of soil layer 2, SNPKT is the snow pack temperature in oC, DST0 is the soil surface temperature in oC, and TSNO is the age of the snow pack in d.

The equations for estimating STMP and DST0 are presented in the soil temperature section. Melted snow is treated the same as rainfall for estimating runoff volume and percolation, but rainfall energy is set to 0.0 and peak runoff rate is estimated by assuming uniformly distributed rainfall for a 24-h duration.

Snow evaporation

EAJ is a soil cover index. The value of EAJ ranges from 0 to 1.0 according to the equation

EAJ=exp(-X1) [10] X1=max(0.4*SMLA,0.1*(CV+.1)) [11]

where CV is the weight of all above ground plant material in t ha-1.

Component Variables

Content TypeNameDescriptionData TypeUnitMin ValueMax ValueDefault Value
constantcCarbonContentCarbon content of upper soil layerDOUBLE%0.020.00.5
inputiCropResiduesCrop residues plus above ground biomassDOUBLEg/m20.020000.0-
inputiLeafAreaIndexLeaf area indexDOUBLEm2/m20.010.0-
inputiPotentialEvaporationPotenial EvaporationDOUBLEmm0.012.0-
inputiPrecipitationRain amountDOUBLEmm0.060.0-
inputiRadiationSolar radiationDOUBLEMJ/m20.02000.0-
inputiSoilTempArraySoil Temp array of last dayDOUBLEARRAY°C-15.035.0-
inputiTempMaxDaily maximum temperatureDOUBLE°C-40.050.0-
inputiTempMinDaily minimum temperatureDOUBLE°C-40.050.0-
AgeOfSnowAge of snowINT1null
SnowIsolationIndexSnow isolation indexDOUBLE1null
SnowWaterContentSnow water contentDOUBLEmmnull
SoilSurfaceTemperatureSoil surface temperatureDOUBLE°Cnull



public class SnowCoverCalculator extends
net.simplace.simulation.model.FWSimComponent {
// Public Constructors
public SnowCoverCalculator();


// Public Instance Methods
public HashMap createVariables(); // Defines
net.simplace.simulation.model.FWSimComponent


create the FWSimVariables as interface for this SimComponent

// Protected Instance Methods
protected void init(); // Defines
net.simplace.simulation.model.FWSimComponent


initializes the fields by getting input and output FWSimVariables from VarMap
protected void process(); // Defines
net.simplace.simulation.model.FWSimComponent


process the algorithm and write the results back to VarMap
protected FWSimComponent clone(FWSimVarMap aVarMap);
// Defines net.simplace.simulation.model.FWSimComponent


creates a clone from this SimComponent for use in other threads


}



Hierarchy: java.lang.Object - net.simplace.simulation.model.FWSimComponent (net.simplace.simulation.util.FWSimFieldContainer) - SnowCoverCalculator