PISM, A Parallel Ice Sheet Model
stable v2.0.6 committed by Constantine Khrulev on 2023-01-23 15:14:38 -0900
|
#include <ISMIP6Climate.hh>
Public Member Functions | |
ISMIP6 (IceGrid::ConstPtr g, std::shared_ptr< atmosphere::AtmosphereModel > input) | |
virtual | ~ISMIP6 ()=default |
![]() | |
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 | |
void | init_impl (const Geometry &geometry) |
void | update_impl (const Geometry &geometry, double t, double dt) |
const IceModelVec2S & | temperature_impl () const |
const IceModelVec2S & | mass_flux_impl () const |
const IceModelVec2S & | accumulation_impl () const |
const IceModelVec2S & | melt_impl () const |
const IceModelVec2S & | runoff_impl () const |
MaxTimestep | max_timestep_impl (double t) const |
![]() | |
virtual const IceModelVec2S & | layer_mass_impl () const |
virtual const IceModelVec2S & | layer_thickness_impl () const |
virtual const IceModelVec2S & | liquid_water_fraction_impl () 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 |
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) |
Definition at line 28 of file ISMIP6Climate.hh.