base class for problems using a sequential implicit-explicit strategy More...
#include <dumux/porousmediumflow/sequential/impetproblem.hh>
base class for problems using a sequential implicit-explicit strategy
TypeTag | problem TypeTag |
Implementation | problem implementation |
Public Member Functions | |
IMPETProblem (TimeManager &timeManager, Grid &grid) | |
Constructs an object of type IMPETProblemProblem. More... | |
IMPETProblem (TimeManager &timeManager, Grid &grid, const GridView &gridView) | |
void | boundaryTypes (BoundaryTypes &bcTypes, const Intersection &intersection) const |
Specifies which kind of boundary condition should be used for which equation on a given boundary segment. More... | |
void | boundaryTypesAtPos (BoundaryTypes &bcTypes, const GlobalPosition &globalPos) const |
Specifies which kind of boundary condition should be used for which equation on a given boundary segment. More... | |
void | dirichlet (PrimaryVariables &values, const Intersection &intersection) const |
Evaluate the boundary conditions for a dirichlet control volume. More... | |
void | dirichletAtPos (PrimaryVariables &values, const GlobalPosition &globalPos) const |
Evaluate the boundary conditions for a dirichlet control volume. More... | |
void | neumann (PrimaryVariables &values, const Intersection &intersection) const |
Evaluate the boundary conditions for a neumann boundary segment. More... | |
void | neumannAtPos (PrimaryVariables &values, const GlobalPosition &globalPos) const |
Evaluate the boundary conditions for a neumann boundary segment. More... | |
void | source (PrimaryVariables &values, const Element &element) const |
Evaluate the source term. More... | |
void | sourceAtPos (PrimaryVariables &values, const GlobalPosition &globalPos) const |
Evaluate the source term for all phases within a given sub-control-volume. More... | |
void | initial (PrimaryVariables &values, const Element &element) const |
Evaluate the initial value for a control volume. More... | |
void | initialAtPos (PrimaryVariables &values, const GlobalPosition &globalPos) const |
Evaluate the initial value for a control volume. More... | |
void | init () |
Called by the TimeManager in order to initialize the problem. More... | |
void | preTimeStep () |
Called by TimeManager just before the time integration. More... | |
void | timeIntegration () |
Called by TimeManager in order to do a time integration on the model. More... | |
void | postTimeStep () |
Called by TimeManager whenever a solution for a timestep has been computed and the simulation time has been updated. More... | |
void | advanceTimeLevel () |
Called by the time manager after everything which can be done about the current time step is finished and the model should be prepared to do the next time integration. More... | |
Scalar | timeStepSize () const |
Returns the current time step size [seconds]. More... | |
void | setTimeStepSize (const Scalar dt) |
Sets the current time step size [seconds]. More... | |
Scalar | nextTimeStepSize (const Scalar dt) |
Called by TimeManager whenever a solution for a timestep has been computed and the simulation time has been updated. More... | |
Scalar | maxTimeStepSize () const |
Returns the maximum allowed time step size [s]. More... | |
bool | shouldWriteRestartFile () const |
Returns true if a restart file should be written to disk. More... | |
void | setOutputTimeInterval (const Scalar timeInterval) |
Sets a time interval for Output. More... | |
void | setOutputInterval (const int interval) |
Sets the interval for Output. More... | |
bool | shouldWriteOutput () const |
Returns true if the current solution should be written to disk (i.e. as a VTK file) More... | |
void | episodeEnd () |
Called when the end of an simulation episode is reached. More... | |
const std::string & | name () const |
The problem name. More... | |
void | setName (std::string newName) |
Set the problem name. More... | |
const GridView & | gridView () const |
The GridView which used by the problem. More... | |
Grid & | grid () |
Returns the current grid which used by the problem. More... | |
void | setGrid (Grid &grid) |
Specifies the grid from outside the problem. More... | |
GridAdaptModel & | gridAdapt () |
Returns adaptivity model used for the problem. More... | |
void | preAdapt () |
Capability to introduce problem-specific routines at the beginning of the grid adaptation. More... | |
void | postAdapt () |
Capability to introduce problem-specific routines after grid adaptation. More... | |
const VertexMapper & | vertexMapper () const |
Returns the mapper for vertices to indices. More... | |
const ElementMapper & | elementMapper () const |
Returns the mapper for elements to indices. More... | |
const GlobalPosition & | bBoxMin () const |
The coordinate of the corner of the GridView's bounding box with the smallest values. More... | |
const GlobalPosition & | bBoxMax () const |
The coordinate of the corner of the GridView's bounding box with the largest values. More... | |
Access functions | |
TimeManager & | timeManager () |
Returns TimeManager object used by the simulation. More... | |
const TimeManager & | timeManager () const |
Returns TimeManager object used by the simulation. More... | |
Variables & | variables () |
Returns variables container. More... | |
const Variables & | variables () const |
Returns variables container. () More... | |
IMPETModel & | model () |
Returns numerical model used for the problem. More... | |
const IMPETModel & | model () const |
Returns numerical model used for the problem. More... | |
PressureModel & | pressureModel () |
Returns the pressure model used for the problem. More... | |
const PressureModel & | pressureModel () const |
Returns the pressure model used for the problem. More... | |
TransportModel & | transportModel () |
Returns transport model used for the problem. More... | |
const TransportModel & | transportModel () const |
Returns transport model used for the problem. More... | |
Restart mechanism | |
void | serialize () |
This method writes the complete state of the problem to the harddisk. More... | |
void | restart (const double tRestart) |
This method restores the complete state of the problem from disk. More... | |
void | addOutputVtkFields () |
int | vtkOutputLevel () const |
Returns the vtk output verbosity level. More... | |
void | writeOutput (bool verbose=true) |
Write the fields current solution into an VTK output file. More... | |
VtkMultiWriter & | resultWriter () |
Returns the applied VTK-writer for the output. More... | |
VtkMultiWriter & | resultWriter () const |
Returns the applied VTK-writer for the output. More... | |
|
inline |
Constructs an object of type IMPETProblemProblem.
timeManager | The time manager |
grid | The grid |
|
inline |
|
inline |
|
inline |
Called by the time manager after everything which can be done about the current time step is finished and the model should be prepared to do the next time integration.
|
inline |
The coordinate of the corner of the GridView's bounding box with the largest values.
|
inline |
The coordinate of the corner of the GridView's bounding box with the smallest values.
|
inline |
Specifies which kind of boundary condition should be used for which equation on a given boundary segment.
bcTypes | The boundary types for the conservation equations |
intersection | The intersection for which the boundary type is set |
|
inline |
Specifies which kind of boundary condition should be used for which equation on a given boundary segment.
bcTypes | The boundary types for the conservation equations |
globalPos | The position of the center of the boundary intersection |
|
inline |
Evaluate the boundary conditions for a dirichlet control volume.
values | The dirichlet values for the primary variables |
intersection | The boundary intersection |
For this method, the values parameter stores primary variables.
|
inline |
Evaluate the boundary conditions for a dirichlet control volume.
values | The dirichlet values for the primary variables |
globalPos | The position of the center of the boundary intersection |
For this method, the values parameter stores primary variables.
|
inline |
Returns the mapper for elements to indices.
|
inline |
Called when the end of an simulation episode is reached.
|
inline |
Returns the current grid which used by the problem.
|
inline |
Returns adaptivity model used for the problem.
|
inline |
The GridView which used by the problem.
|
inline |
Called by the TimeManager in order to initialize the problem.
|
inline |
Evaluate the initial value for a control volume.
values | The initial values for the primary variables |
element | The element |
For this method, the values parameter stores primary variables.
|
inline |
Evaluate the initial value for a control volume.
values | The dirichlet values for the primary variables |
globalPos | The position of the center of the finite volume for which the initial values ought to be set (in global coordinates) |
For this method, the values parameter stores primary variables.
|
inline |
Returns the maximum allowed time step size [s].
By default this the time step size is unrestricted.
|
inline |
Returns numerical model used for the problem.
|
inline |
Returns numerical model used for the problem.
|
inline |
The problem name.
This is used as a prefix for files generated by the simulation. It could be either overwritten by the problem files, or simply declared over the setName() function in the application file.
|
inline |
Evaluate the boundary conditions for a neumann boundary segment.
values | The neumann values for the conservation equations [kg / (m^2 *s )] |
intersection | The boundary intersection |
For this method, the values parameter stores the mass flux in normal direction of each phase. Negative values mean influx.
|
inline |
Evaluate the boundary conditions for a neumann boundary segment.
values | The neumann values for the conservation equations [kg / (m^2 *s )] |
globalPos | The position of the center of the boundary intersection |
For this method, the values parameter stores the mass flux in normal direction of each phase. Negative values mean influx.
|
inline |
Called by TimeManager whenever a solution for a timestep has been computed and the simulation time has been updated.
|
inline |
Capability to introduce problem-specific routines after grid adaptation.
Function is called at the end of the standard grid modification routine, GridAdapt::adaptGrid() , to allow for problem-specific output etc.
|
inline |
Called by TimeManager whenever a solution for a timestep has been computed and the simulation time has been updated.
This is used to do some janitorial tasks like writing the current solution to disk.
|
inline |
Capability to introduce problem-specific routines at the beginning of the grid adaptation.
Function is called at the beginning of the standard grid modification routine, GridAdapt::adaptGrid() .
|
inline |
Returns the pressure model used for the problem.
|
inline |
Returns the pressure model used for the problem.
|
inline |
Called by TimeManager just before the time integration.
|
inline |
This method restores the complete state of the problem from disk.
It is the inverse of the serialize() method.
tRestart | Restart time |
|
inlineprotected |
Returns the applied VTK-writer for the output.
|
inlineprotected |
Returns the applied VTK-writer for the output.
|
inline |
|
inline |
Specifies the grid from outside the problem.
grid | The grid used by the problem. |
|
inline |
Set the problem name.
This function sets the simulation name, which should be called before the application porblem is declared! If not, the default name "sim" will be used.
newName | The problem's name |
|
inline |
Sets the interval for Output.
The default is 1 -> Output every time step
|
inline |
Sets a time interval for Output.
The default is 0.0 -> Output determined by output number interval (setOutputInterval(int)
)
|
inline |
Sets the current time step size [seconds].
|
inline |
Returns true if the current solution should be written to disk (i.e. as a VTK file)
The default behaviour is to write out every the solution for very time step. This file is intented to be overwritten by the implementation.
|
inline |
Returns true if a restart file should be written to disk.
The default behaviour is to write one restart file every 5 time steps. This file is intented to be overwritten by the implementation.
|
inline |
Evaluate the source term.
values | The source and sink values for the conservation equations |
element | The element |
For this method, the values parameter stores the rate mass generated or annihilate per volume unit. Positive values mean that mass is created, negative ones mean that it vanishes.
|
inline |
Evaluate the source term for all phases within a given sub-control-volume.
values | The source and sink values for the conservation equations |
globalPos | The position of the center of the finite volume for which the source term ought to be specified in global coordinates |
For this method, the values parameter stores the rate mass generated or annihilate per volume unit. Positive values mean that mass is created, negative ones mean that it vanishes.
|
inline |
Called by TimeManager in order to do a time integration on the model.
|
inline |
Returns TimeManager object used by the simulation.
|
inline |
Returns TimeManager object used by the simulation.
|
inline |
Returns the current time step size [seconds].
|
inline |
Returns transport model used for the problem.
|
inline |
Returns transport model used for the problem.
|
inline |
Returns variables container.
This provides access to the important variables that are used in the simulation process, such as pressure, saturation etc.
|
inline |
Returns variables container. ()
This provides access to the important variables that are used in the simulation process, such as pressure, saturation etc. ()
|
inline |
Returns the mapper for vertices to indices.
|
inline |
Returns the vtk output verbosity level.
Level is set by property or input file.
|
inline |
Write the fields current solution into an VTK output file.