version 0.4.1
Ikarus::FERequirements< sol, para, SV, PM > Class Template Reference

Class representing the requirements for finite element calculations. More...

#include <ikarus/finiteelements/ferequirements.hh>

Public Types

using SolutionVectorType = SV
 Type of the solution vector. More...
 
using ParameterType = PM
 Type of the parameter. More...
 

Public Member Functions

 FERequirements ()=default
 Default constructor. More...
 
template<typename SV2 = SV, typename PM2 = PM>
 FERequirements (SV2 &&solVec, PM2 &&parameter)
 Constructor initializing the solution vector and parameter. More...
 
template<typename PB >
 FERequirements (const Ikarus::BasisHandler< PB > &basis)
 Constructor from a basis. More...
 
 FERequirements (const FERequirements &other)
 Copy constructor. More...
 
FERequirementsoperator= (const FERequirements &other)
 Copy assignment operator. More...
 
FERequirementsinsertParameter (const PM &val)
 Insert a parameter into the requirements. More...
 
template<typename SV2 = SolutionVectorType>
FERequirementsinsertGlobalSolution (SV2 &&solVec)
 Insert a global solution vector into the requirements. More...
 
const SolutionVectorTypeglobalSolution () const
 Get the global solution vector. More...
 
SV & globalSolution ()
 Get the global solution vector. More...
 
const PM & parameter () const
 Get the parameter value. More...
 
PM & parameter ()
 Get the parameter value. More...
 
bool populated () const
 Tells if the class contains all needed values. More...
 
template<typename T >
SV & operator+= (const T &rhs)
 Enables the usage of the class as a solution vector. More...
 

Detailed Description

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
class Ikarus::FERequirements< sol, para, SV, PM >

This class defines the requirements for finite element calculations, including the types of solution vectors and parameters needed.

Template Parameters
solThe finite element solution tag.
paraThe finite element parameter tag.
SVType of the solution vector, defaulting to Eigen::VectorXd.
PMType of the parameter, defaulting to double.

Member Typedef Documentation

◆ ParameterType

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
using Ikarus::FERequirements< sol, para, SV, PM >::ParameterType = PM

◆ SolutionVectorType

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
using Ikarus::FERequirements< sol, para, SV, PM >::SolutionVectorType = SV

Constructor & Destructor Documentation

◆ FERequirements() [1/4]

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
Ikarus::FERequirements< sol, para, SV, PM >::FERequirements ( )
default

◆ FERequirements() [2/4]

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
template<typename SV2 = SV, typename PM2 = PM>
Ikarus::FERequirements< sol, para, SV, PM >::FERequirements ( SV2 &&  solVec,
PM2 &&  parameter 
)
inline
Parameters
solVecSolution vector.
parameterParameter value.

◆ FERequirements() [3/4]

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
template<typename PB >
Ikarus::FERequirements< sol, para, SV, PM >::FERequirements ( const Ikarus::BasisHandler< PB > &  basis)
inline
Template Parameters
PBThe type of the basis.
Parameters
basisthe basis

◆ FERequirements() [4/4]

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
Ikarus::FERequirements< sol, para, SV, PM >::FERequirements ( const FERequirements< sol, para, SV, PM > &  other)
inline

Performs a deep copy of the solution vector and parameter.

Parameters
otherThe object to copy from.

Member Function Documentation

◆ globalSolution() [1/2]

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
SV & Ikarus::FERequirements< sol, para, SV, PM >::globalSolution ( )
inline
Returns
Reference to the raw global solution vector.

◆ globalSolution() [2/2]

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
const SolutionVectorType & Ikarus::FERequirements< sol, para, SV, PM >::globalSolution ( ) const
inline
Returns
Reference to the raw global solution vector.
Here is the caller graph for this function:

◆ insertGlobalSolution()

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
template<typename SV2 = SolutionVectorType>
FERequirements & Ikarus::FERequirements< sol, para, SV, PM >::insertGlobalSolution ( SV2 &&  solVec)
inline

This function inserts the specified global solution vector into the requirements and deletes the old one.

Parameters
solVecReference to the raw global solution vector.
Returns
Reference to the updated FERequirements instance.
Here is the caller graph for this function:

◆ insertParameter()

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
FERequirements & Ikarus::FERequirements< sol, para, SV, PM >::insertParameter ( const PM &  val)
inline

This function inserts the specified parameter into the requirements.

Parameters
valReference to the raw parameter value.
Returns
Reference to the updated FERequirements instance.
Here is the caller graph for this function:

◆ operator+=()

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
template<typename T >
SV & Ikarus::FERequirements< sol, para, SV, PM >::operator+= ( const T &  rhs)
inline
Template Parameters
TThe type of the value to add to the solution vector.
Parameters
rhsThe value to add to the solution vector.
Returns
Reference to the updated solution vector.

◆ operator=()

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
FERequirements & Ikarus::FERequirements< sol, para, SV, PM >::operator= ( const FERequirements< sol, para, SV, PM > &  other)
inline

Performs a deep copy of the solution vector and parameter.

Parameters
otherThe object to assign from.
Returns
Reference to the updated FERequirements instance.

◆ parameter() [1/2]

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
PM & Ikarus::FERequirements< sol, para, SV, PM >::parameter ( )
inline
Returns
Reference to the parameter value.

◆ parameter() [2/2]

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
const PM & Ikarus::FERequirements< sol, para, SV, PM >::parameter ( ) const
inline
Returns
Reference to the parameter value.
Here is the caller graph for this function:

◆ populated()

template<FESolutions sol, FEParameter para, typename SV = Eigen::VectorXd, typename PM = double>
bool Ikarus::FERequirements< sol, para, SV, PM >::populated ( ) const
inline
Returns
Bool indicating if all values are assigned.

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