CEPS  24.01
Cardiac ElectroPhysiology Simulator
AbstractStaticPdeProblem Class Reference

Detailed Description

Astract Problem which does not depend on time.

Definition at line 36 of file AbstractStaticPdeProblem.hpp.

#include <AbstractStaticPdeProblem.hpp>

Inheritance diagram for AbstractStaticPdeProblem:
[legend]

Public Member Functions

 AbstractStaticPdeProblem (Geometry *geom, InputParameters *params=nullptr)
 Constructor with geometry and optional parameters. More...
 
void getInitialGuess (DHVecPtr v)
 Returns a zero vector. Can be overriden ! More...
 
CepsArray2< CepsArray3< CepsReal > > getErrors () const
 Get the errors. More...
 
virtual void defineInitialGuess ()
 Sets the pointer on function for initial guess. Here it is set to nullptr, so it will be 0. More...
 
void initializeEquation () override
 Initializes equations (unknowns, bc, source term) and creates the spatial discretization This method should be called at the start of run() methods. More...
 
- Public Member Functions inherited from AbstractPdeProblem
 AbstractPdeProblem (Geometry *geom, InputParameters *params=nullptr)
 Constructor with geometry and optional parameters. More...
 
virtual ~AbstractPdeProblem ()
 destructor More...
 
 AbstractPdeProblem (const AbstractPdeProblem &that)=delete
 No copy constructor. More...
 
AbstractPdeProblemoperator= (const AbstractPdeProblem &that)=delete
 No assignment operator. More...
 
InputParametersgetParameters () const
 Text parameters. More...
 
virtual void setupWithParameters (InputParameters *params)
 Set attributes from input file. Parameters are passed as arguments in case one wants to use other parameters. More...
 
virtual void run ()
 Computes the solution to the problem. Default does nothing, override it ! More...
 
void setProblemName (const CepsString &name)
 Set the name of the problem. More...
 
CepsString getProblemName () const
 Get the name of the problem. More...
 
GeometrygetGeometry () const
 Link to geometry on which the pb is defined. More...
 
AbstractDiscretizationgetSpatialDiscretization () const
 Link to the spatial discretization (FE, FV, etc) More...
 
void setSpatialDiscretization (AbstractDiscretization *discr)
 Link to the spatial discretization (FE, FV, etc) More...
 
void createSpatialDiscretization ()
 Compute the discretization structure. More...
 
virtual void defineUnknowns ()=0
 Define all the unknowns of the problem here. Must be overriden, and call all necessary addUnknown, addZeroDUnknown, addUnknownInteraction. More...
 
const CepsVector< Unknown * > & getUnknowns () const
 List of unknowns of the pb. More...
 
UnknowngetUnknown (const CepsString &label) const
 Get an unknown by its name. More...
 
UnknowngetUnknown (CepsUnknownIndex uid) const
 Get an unknown by its id. More...
 
CepsVector< Unknown * > getSpatialUnknowns () const
 A vector of all unknowns of pb defined on cells or points. More...
 
CepsVector< Unknown * > getZeroDUnknowns () const
 A vector of all zeroD unknowns of the pb. More...
 
const CepsVector< UnknownInteraction * > & getUnknownsInteractions () const
 All the interactions between unknowns. More...
 
CepsBool unknownsInteract (Unknown *u1, Unknown *u2, const CepsSet< CepsAttribute > &attrs={CepsUniversal}) const
 Tells if unknowns interact on an entity with attributes. More...
 
CepsBool ignoreZeroDUnknownsForError () const
 Tells if 0D must not be taken into account in error computation. More...
 
CepsBool hasAnalyticSolution () const
 Tells if there is an analytic or reference solution. More...
 
ScalarFunctiongetAnalyticSolution () const
 Pointer on analytic or refScalarFunction solution. More...
 
virtual void defineAnalyticSolution ()
 Set directly the analytic function, default sets no solution, unless there is a collection of reference solution files, provided at init or from parameters. More...
 
void setReferenceSolution (const CepsString &baseFiles, CepsReal snapDt)
 Externally define the referece solution from files. Can be used for convergence tests. More...
 
CepsBool usesReferenceSolution () const
 Tells if analytic solution and if it is loaded from files. More...
 
CepsReal getReferenceSolutionOutputPeriod () const
 Output dt of reference. More...
 
FunctionDictionarygetFunctionDictionary () const
 Get functions manager. More...
 
void setFunctionDictionary (FunctionDictionary *)
 Set functions manager. More...
 
virtual void defineBoundaryConditions ()
 Define the boundary conditions. Should be defined in derived classes. Default is no BC. More...
 
BoundaryConditionManagergetBoundaryConditionManager () const
 Get boundary condition manager. More...
 
void setBoundaryConditionManager (BoundaryConditionManager *bcm)
 Set boundary condition manager. More...
 
virtual void defineSourceTerms ()
 Define the source terms. Should be defined in derived classes. Default is no src term. More...
 
SourceTermManagergetSourceTermManager () const
 Get boundary condition manager. More...
 
void setSourceTermManager (SourceTermManager *stm)
 Set boundary condition manager. More...
 
CepsString getOutputFileBase () const
 Output file name includes the directory. More...
 
void setOutputFileBase (CepsString fileName)
 Output file name includes the directory. More...
 
CepsOutputFormat getOutputFormat () const
 Tells if output is binary or ascii. More...
 
void setOutputFormat (CepsOutputFormat opt)
 Enable/disable binary output. More...
 
CepsBool writesGlobalIndices () const
 Tells if global indices are written on top of solution. More...
 
void writeGlobalIndices (CepsBool opt)
 Activate/deactivate global indices writing. More...
 
CepsVector< CepsReal3DgetProbePoints () const
 Returns points where single data output should be written. More...
 
virtual CepsReal getStartTime () const
 Returns 0. Here for compatibility. More...
 
virtual CepsReal getEndTime () const
 Returns 0. Here for compatibility. More...
 
virtual CepsReal getSnapshotTime () const
 Returns 0. Here for compatibility. More...
 
- Public Member Functions inherited from CepsObject
 CepsObject ()=default
 default constructor More...
 
 CepsObject (const CepsObject &)=default
 Copy constructor. More...
 
virtual ~CepsObject ()=default
 Destructor. More...
 
CepsObjectoperator= (const CepsObject &)=default
 Assignment operator. More...
 
CepsObjecttoBaseObject ()
 Returns a pointer to CepsObject class. More...
 
const CepsObjecttoBaseObject () const
 Returns a pointer to CepsObject class, const version. More...
 
ProfilergetProfiler () const
 Access to profiler. More...
 

Static Public Attributes

static constexpr CepsBool isStatic = true
 Flag for static/timed. More...
 

Protected Attributes

CepsArray2< CepsArray3< CepsReal > > m_errors
 Will store Linf, L1 and L2 relative errors. More...
 
ScalarFunctionm_initialGuess
 Function defining the initial condition, which is 0 if pointer is null. More...
 
- Protected Attributes inherited from AbstractPdeProblem
CepsString m_name
 Name of the problem. More...
 
Geometrym_geom
 Link to geometry on which the pb is defined. More...
 
InputParametersm_parameters
 Input file data. More...
 
AbstractDiscretizationm_discr
 Discretization method (eg FE for now) More...
 
CepsBool m_ownedDiscr
 True if instance used new to create discretization. More...
 
CepsVector< Unknown * > m_unknowns
 All maths unknowns of the problem. More...
 
CepsVector< UnknownInteraction * > m_unknownsInteractions
 Describes how unknowns interact. More...
 
ScalarFunctionm_analyticSolution
 analytic or reference solution More...
 
CepsBool m_ownedRefSol
 Flag for reference ownership. More...
 
CepsString m_refSolFiles
 base name of reference solution file, if any More...
 
CepsReal m_refSolSnapDt
 reference solution output period More...
 
FunctionDictionarym_functions
 Collection of custom functions. More...
 
BoundaryConditionManagerm_boundaryConditions
 All BCs should be there. More...
 
SourceTermManagerm_sourceTerms
 All source terms. More...
 
CepsBool m_ownedFunctions
 True if instance used new to create dictionary. More...
 
CepsBool m_ownedBCs
 True if instance used new to create BC manager. More...
 
CepsBool m_ownedSrcs
 True if instance used new to create src term manager. More...
 
CepsString m_outputFileBase
 File names prefix. More...
 
CepsOutputFormat m_outputFormat
 Output format selector. More...
 
CepsBool m_writeGlobalIDs
 Writes CEPS indices as well. More...
 
CepsVector< CepsReal3Dm_probePoints
 Single point data outputs. More...
 
CepsBool m_ignoreZeroDError
 Ignore 0D unknowns when computing errors. More...
 

Additional Inherited Members

- Public Types inherited from AbstractPdeProblem
using ScalarFunction = ceps::Function< CepsReal(CepsStandardArgs)>
 Typedef for analytic solution. More...
 
- Protected Member Functions inherited from AbstractPdeProblem
void addUnknown (const CepsString &label, CepsSet< CepsAttribute > attrs={}, CepsLocationFlag flag=CepsLocationFlag::Point, const CepsString &unit="")
 Register a new unknown. More...
 
void addZeroDUnknown (CepsString label, const CepsString &unit="")
 Register a new unknown, defined outside of geometry. More...
 
void addUnknownInteraction (CepsString label1, CepsString label2, CepsSet< CepsAttribute > attrs={})
 Register interaction between unknowns. Also sets the interaction within Unknown instances label1 and label2. More...
 
- Static Protected Attributes inherited from CepsObject
static Profiler m_profiler
 The same profiler for each big object. More...
 

Constructor & Destructor Documentation

◆ AbstractStaticPdeProblem()

AbstractStaticPdeProblem::AbstractStaticPdeProblem ( Geometry geom,
InputParameters params = nullptr 
)
explicit

Constructor with geometry and optional parameters.

Parameters
geomGeometry, required, otherwise it's not a pde
paramsSimulation parameters (nullptr = defaults)

Definition at line 33 of file AbstractStaticPdeProblem.cpp.

Member Function Documentation

◆ defineInitialGuess()

void AbstractStaticPdeProblem::defineInitialGuess ( )
virtual

Sets the pointer on function for initial guess. Here it is set to nullptr, so it will be 0.

Definition at line 58 of file AbstractStaticPdeProblem.cpp.

◆ getErrors()

CepsArray2< CepsArray3< CepsReal > > AbstractStaticPdeProblem::getErrors ( ) const

Get the errors.

Definition at line 52 of file AbstractStaticPdeProblem.cpp.

◆ getInitialGuess()

void AbstractStaticPdeProblem::getInitialGuess ( DHVecPtr  v)

Returns a zero vector. Can be overriden !

Definition at line 43 of file AbstractStaticPdeProblem.cpp.

◆ initializeEquation()

void AbstractStaticPdeProblem::initializeEquation ( )
overridevirtual

Initializes equations (unknowns, bc, source term) and creates the spatial discretization This method should be called at the start of run() methods.

Reimplemented from AbstractPdeProblem.

Definition at line 64 of file AbstractStaticPdeProblem.cpp.

Field Documentation

◆ isStatic

constexpr CepsBool AbstractStaticPdeProblem::isStatic = true
staticconstexpr

Flag for static/timed.

Definition at line 71 of file AbstractStaticPdeProblem.hpp.

◆ m_errors

CepsArray2<CepsArray3<CepsReal> > AbstractStaticPdeProblem::m_errors
protected

Will store Linf, L1 and L2 relative errors.

Definition at line 75 of file AbstractStaticPdeProblem.hpp.

◆ m_initialGuess

ScalarFunction* AbstractStaticPdeProblem::m_initialGuess
protected

Function defining the initial condition, which is 0 if pointer is null.

Definition at line 78 of file AbstractStaticPdeProblem.hpp.


The documentation for this class was generated from the following files: