PISM, A Parallel Ice Sheet Model
|
#include <EmptyingProblem.hh>
Public Member Functions | |
EmptyingProblem (IceGrid::ConstPtr g) | |
virtual | ~EmptyingProblem ()=default |
void | update (const Geometry &geometry, const IceModelVec2Int *no_model_mask, const IceModelVec2S &water_input_rate, bool recompute_potential=true) |
const IceModelVec2V & | flux () const |
const IceModelVec2S & | remaining_water_thickness () const |
const IceModelVec2V & | effective_water_velocity () const |
const IceModelVec2S & | potential () const |
const IceModelVec2S & | adjustment () const |
const IceModelVec2Int & | sinks () const |
DiagnosticList | diagnostics () 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 | compute_raw_potential (const IceModelVec2S &ice_thickness, const IceModelVec2S &ice_bottom_surface, IceModelVec2S &result) const |
void | compute_potential (const IceModelVec2S &ice_thickness, const IceModelVec2S &ice_bottom_surface, const IceModelVec2Int &domain_mask, IceModelVec2S &result) |
void | compute_velocity (const IceModelVec2S &hydraulic_potential, const IceModelVec2Int &mask, IceModelVec2Stag &result) const |
void | compute_mask (const IceModelVec2CellType &cell_type, const IceModelVec2Int *no_model_mask, IceModelVec2Int &result) const |
![]() | |
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 void | regrid (const std::string &module_name, IceModelVec &variable, RegriddingFlag flag=NO_REGRID_WITHOUT_REGRID_VARS) |
Protected Attributes | |
IceModelVec2S | m_potential |
IceModelVec2S | m_tmp |
IceModelVec2S | m_bottom_surface |
IceModelVec2S | m_W |
IceModelVec2Stag | m_Vstag |
IceModelVec2Stag | m_Qsum |
IceModelVec2Int | m_domain_mask |
IceModelVec2V | m_Q |
IceModelVec2V | m_q_sg |
IceModelVec2S | m_adjustment |
IceModelVec2Int | m_sinks |
double | m_dx |
double | m_dy |
double | m_eps_gradient |
double | m_speed |
double | m_tau |
![]() | |
const IceGrid::ConstPtr | m_grid |
grid used by this component More... | |
const Config::ConstPtr | m_config |
configuration database used by this component More... | |
const units::System::Ptr | m_sys |
unit system used by this component More... | |
const Logger::ConstPtr | m_log |
logger (for easy access) More... | |
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... | |
Definition at line 32 of file EmptyingProblem.hh.