PISM, A Parallel Ice Sheet Model
|
A class implementing a temperature-index (positive degree-day) scheme to compute melt and runoff, and thus surface mass balance, from precipitation and air temperature. More...
#include <TemperatureIndex.hh>
Public Member Functions | |
TemperatureIndex (IceGrid::ConstPtr g, std::shared_ptr< atmosphere::AtmosphereModel > input) | |
virtual | ~TemperatureIndex ()=default |
const IceModelVec2S & | firn_depth () const |
const IceModelVec2S & | snow_depth () const |
const IceModelVec2S & | air_temp_sd () const |
![]() | |
SurfaceModel (IceGrid::ConstPtr g) | |
SurfaceModel (IceGrid::ConstPtr g, std::shared_ptr< SurfaceModel > input) | |
SurfaceModel (IceGrid::ConstPtr g, std::shared_ptr< atmosphere::AtmosphereModel > atmosphere) | |
virtual | ~SurfaceModel ()=default |
void | init (const Geometry &geometry) |
void | update (const Geometry &geometry, double t, double dt) |
const IceModelVec2S & | accumulation () const |
Returns accumulation. More... | |
const IceModelVec2S & | layer_mass () const |
Returns mass held in the surface layer. More... | |
const IceModelVec2S & | layer_thickness () const |
Returns thickness of the surface layer. Could be used to compute surface elevation as a sum of elevation of the top surface of the ice and surface layer (firn, etc) thickness. More... | |
const IceModelVec2S & | liquid_water_fraction () const |
Returns the liquid water fraction of the ice at the top ice surface. More... | |
const IceModelVec2S & | mass_flux () const |
const IceModelVec2S & | melt () const |
Returns melt. More... | |
const IceModelVec2S & | runoff () const |
Returns runoff. More... | |
const IceModelVec2S & | temperature () const |
![]() | |
Component (IceGrid::ConstPtr g) | |
virtual | ~Component ()=default |
DiagnosticList | diagnostics () const |
TSDiagnosticList | ts_diagnostics () const |
IceGrid::ConstPtr | grid () const |
void | define_model_state (const File &output) const |
Define model state variables in an output file. More... | |
void | write_model_state (const File &output) const |
Write model state variables to an output file. More... | |
MaxTimestep | max_timestep (double t) const |
Reports the maximum time-step the model can take at time t. More... | |
Protected Member Functions | |
virtual void | init_impl (const Geometry &geometry) |
virtual void | update_impl (const Geometry &geometry, double t, double dt) |
virtual MaxTimestep | max_timestep_impl (double t) const |
virtual void | define_model_state_impl (const File &output) const |
The default (empty implementation). More... | |
virtual void | write_model_state_impl (const File &output) const |
The default (empty implementation). More... | |
virtual DiagnosticList | diagnostics_impl () const |
virtual TSDiagnosticList | ts_diagnostics_impl () const |
virtual const IceModelVec2S & | mass_flux_impl () const |
virtual const IceModelVec2S & | temperature_impl () const |
virtual const IceModelVec2S & | accumulation_impl () const |
virtual const IceModelVec2S & | melt_impl () const |
virtual const IceModelVec2S & | runoff_impl () const |
double | compute_next_balance_year_start (double time) |
![]() | |
virtual const IceModelVec2S & | layer_mass_impl () const |
virtual const IceModelVec2S & | layer_thickness_impl () const |
virtual const IceModelVec2S & | liquid_water_fraction_impl () const |
void | dummy_accumulation (const IceModelVec2S &smb, IceModelVec2S &result) |
void | dummy_melt (const IceModelVec2S &smb, IceModelVec2S &result) |
void | dummy_runoff (const IceModelVec2S &smb, IceModelVec2S &result) |
![]() | |
virtual void | regrid (const std::string &module_name, IceModelVec &variable, RegriddingFlag flag=NO_REGRID_WITHOUT_REGRID_VARS) |
Additional Inherited Members | |
![]() | |
enum | RegriddingFlag { REGRID_WITHOUT_REGRID_VARS , NO_REGRID_WITHOUT_REGRID_VARS } |
This flag determines whether a variable is read from the -regrid_file file even if it is not listed among variables in -regrid_vars . More... | |
![]() | |
static IceModelVec2S::Ptr | allocate_layer_mass (IceGrid::ConstPtr grid) |
static IceModelVec2S::Ptr | allocate_layer_thickness (IceGrid::ConstPtr grid) |
static IceModelVec2S::Ptr | allocate_liquid_water_fraction (IceGrid::ConstPtr grid) |
static IceModelVec2S::Ptr | allocate_mass_flux (IceGrid::ConstPtr grid) |
static IceModelVec2S::Ptr | allocate_temperature (IceGrid::ConstPtr grid) |
static IceModelVec2S::Ptr | allocate_accumulation (IceGrid::ConstPtr grid) |
static IceModelVec2S::Ptr | allocate_melt (IceGrid::ConstPtr grid) |
static IceModelVec2S::Ptr | allocate_runoff (IceGrid::ConstPtr grid) |
A class implementing a temperature-index (positive degree-day) scheme to compute melt and runoff, and thus surface mass balance, from precipitation and air temperature.
Temperature-index schemes are far from perfect as a way of modeling surface mass balance on ice sheets which experience surface melt, but they are known to have reasonable data requirements and to do a good job when tuned appropriately [Hock05].
Definition at line 40 of file TemperatureIndex.hh.