Snow state file
- Required:
- Always
- Name:
- The name is expected to be of the format Snow.State.
<MM.DD.YYYY.hh.mm.ss>.<ext>, where<MM.DD.YYYY.hh.mm.ss>is the time for which the model state is valid, and<ext>is eitherbin(Format = BINARYorFormat = BYTESWAP) ornc(Format= NETCDF).
The file is located in theInitial state directory. - Read by:
InitModelState()- Format:
- A series of 2D matrices.
- Purpose:
- Contains the model state associated with snow variables. This allows a model restart with exactly the same initial conditions.
- Comments:
- The state files are not meant for analysis. They are difficult to
read unless you write some dedicated program or script. However, if
you use
Format = NETCDF, the files are readable by any program that reads and displays NetCDF files. - Details:
-
The snow state file contains the following state variables, which MUST be in the order specified if you use the binary format. For the NetCDF files the order is arbitrary, as long as you provide the correct variable names.
If the format is
BINorBYTESWAP, the variables are:- Whether snow is present (1) or absent (0) (float)
- Number of days since last snowfall (float)
- Snow water equivalent in m (float)
- Water content of the bottom snow pack layer in m (float)
- Temperature of the bottom snow pack layer in °C (float)
- Water content of the top snow pack layer in m (float)
- Temperature of the top snow pack layer in °C (float)
- Cold content of the entire snow pack in J(float)
If the format is
NETCDF, the variables are:- Whether snow is present (1) or absent (0).
The variable name isSnow.HasSnow.
The number type isNC_FLOAT. - Number of days since last snowfall.
The variable name isSnow.LastSnow.
The number type isNC_FLOAT. - Snow water equivalent in m.
The variable name isSnow.Swq.
The number type isNC_FLOAT. - Water content of the bottom snow pack layer in m.
The variable name isSnow.PackWater.
The number type isNC_FLOAT. - Temperature of the bottom snow pack layer in °C.
The variable name isSnow.TPack.
The number type isNC_FLOAT. - Water content of the top snow pack layer in m.
The variable name isSnow.SurfWater.
The number type isNC_FLOAT. - Temperature of the top snow pack layer in °C.
The variable name isSnow.TSurf.
The number type isNC_FLOAT. - Cold content of the entire snow pack in J.
The variable name isSnow.ColdContent.
The number type isNC_FLOAT.
Last Changed:
October 28, 2002 1:56 PM

