|
libMesh
|
Public Member Functions | |
| BdyFunction (unsigned int u_var, unsigned int v_var, int sign) | |
| virtual Number | operator() (const Point &, const Real=0) |
| virtual void | operator() (const Point &p, const Real, DenseVector< Number > &output) |
| virtual std::unique_ptr< FunctionBase< Number > > | clone () const |
| BdyFunction (unsigned int T_var) | |
| virtual Number | operator() (const Point &, const Real=0) |
| virtual void | operator() (const Point &p, const Real, DenseVector< Number > &output) |
| virtual std::unique_ptr< FunctionBase< Number > > | clone () const |
| BdyFunction (unsigned int u_var, unsigned int v_var, unsigned int w_var, Real Reynolds) | |
| virtual Number | operator() (const Point &, const Real=0) |
| virtual void | operator() (const Point &p, const Real, DenseVector< Number > &output) |
| virtual std::unique_ptr< FunctionBase< Number > > | clone () const |
| virtual void | init () |
| The actual initialization process. More... | |
| virtual void | clear () |
| Clears the function. More... | |
| void | operator() (const Point &p, DenseVector< Number > &output) |
| Evaluation function for time-independent vector-valued functions. More... | |
| virtual void | operator() (const Point &p, const Real time, DenseVector< Number > &output)=0 |
| Evaluation function for time-dependent vector-valued functions. More... | |
| virtual Number | component (unsigned int i, const Point &p, Real time=0.) |
| bool | initialized () const |
| void | set_is_time_dependent (bool is_time_dependent) |
| Function to set whether this is a time-dependent function or not. More... | |
| bool | is_time_dependent () const |
Protected Attributes | |
| const FunctionBase * | _master |
Const pointer to our master, initialized to nullptr. More... | |
| bool | _initialized |
When init() was called so that everything is ready for calls to operator() (...), then this bool is true. More... | |
| bool | _is_time_dependent |
| Cache whether or not this function is actually time-dependent. More... | |
Private Attributes | |
| const unsigned int | _u_var |
| const unsigned int | _v_var |
| const Real | _sign |
| const unsigned int | _T_var |
| const unsigned int | _w_var |
| const Real | _Re |
Definition at line 38 of file coupled_system.C.
Definition at line 41 of file coupled_system.C.
|
inline |
Definition at line 42 of file naviersystem.C.
|
inlinevirtualinherited |
Clears the function.
Reimplemented in libMesh::MeshFunction, libMesh::MeshlessInterpolationFunction, libMesh::MeshlessInterpolationFunction, and ExampleOneFunction.
Definition at line 91 of file function_base.h.
|
inlinevirtual |
The new copy should be as "deep" as necessary to allow independent destruction and simultaneous evaluations of the copies in different threads.
Implements libMesh::FunctionBase< Number >.
Definition at line 49 of file poisson.C.
|
inlinevirtual |
The new copy should be as "deep" as necessary to allow independent destruction and simultaneous evaluations of the copies in different threads.
Implements libMesh::FunctionBase< Number >.
Definition at line 63 of file naviersystem.C.
|
inlinevirtual |
The new copy should be as "deep" as necessary to allow independent destruction and simultaneous evaluations of the copies in different threads.
Implements libMesh::FunctionBase< Number >.
Definition at line 65 of file coupled_system.C.
|
inlinevirtualinherited |
i at coordinate p and time time.Reimplemented in TripleFunction, SolutionFunction, SolutionFunction, and SolutionFunction.
Definition at line 227 of file function_base.h.
|
inlinevirtualinherited |
The actual initialization process.
Reimplemented in libMesh::MeshFunction, libMesh::MeshlessInterpolationFunction, libMesh::MeshlessInterpolationFunction, and ExampleOneFunction.
Definition at line 86 of file function_base.h.
|
inlineinherited |
true when this object is properly initialized and ready for use, false otherwise. Definition at line 205 of file function_base.h.
|
inlineinherited |
true when the function this object represents is actually time-dependent, false otherwise. Definition at line 219 of file function_base.h.
|
inlinevirtual |
p and time time, which defaults to zero.Pure virtual, so you have to override it.
Implements libMesh::FunctionBase< Number >.
|
inlinevirtual |
p and time time, which defaults to zero.Pure virtual, so you have to override it.
Implements libMesh::FunctionBase< Number >.
Definition at line 49 of file coupled_system.C.
|
inlinevirtual |
p and time time, which defaults to zero.Pure virtual, so you have to override it.
Implements libMesh::FunctionBase< Number >.
Definition at line 49 of file naviersystem.C.
|
pure virtualinherited |
Evaluation function for time-dependent vector-valued functions.
Sets output values in the passed-in output DenseVector.
Pure virtual, so you have to override it.
Implemented in libMesh::MeshFunction, libMesh::MeshlessInterpolationFunction, and libMesh::MeshlessInterpolationFunction.
|
inlinevirtual |
Definition at line 38 of file poisson.C.
References libMesh::Real, libMesh::DenseVector< T >::resize(), and libMesh::DenseVector< T >::zero().
|
inlinevirtual |
Definition at line 52 of file naviersystem.C.
References libMesh::Real, and libMesh::DenseVector< T >::zero().
|
inlinevirtual |
Definition at line 53 of file coupled_system.C.
References libMesh::Real, libMesh::DenseVector< T >::resize(), and libMesh::DenseVector< T >::zero().
|
inlineinherited |
Evaluation function for time-independent vector-valued functions.
Sets output values in the passed-in output DenseVector.
Definition at line 240 of file function_base.h.
|
inlineinherited |
Function to set whether this is a time-dependent function or not.
This is intended to be only used by subclasses who cannot natively determine time-dependence. In such a case, this function should be used immediately following construction.
Definition at line 212 of file function_base.h.
|
protectedinherited |
When init() was called so that everything is ready for calls to operator() (...), then this bool is true.
Definition at line 179 of file function_base.h.
|
protectedinherited |
Cache whether or not this function is actually time-dependent.
Definition at line 184 of file function_base.h.
|
protectedinherited |
Const pointer to our master, initialized to nullptr.
There may be cases where multiple functions are required, but to save memory, one master handles some centralized data.
Definition at line 173 of file function_base.h.
|
private |
Definition at line 68 of file naviersystem.C.
|
private |
Definition at line 70 of file coupled_system.C.
|
private |
Definition at line 69 of file coupled_system.C.
|
private |
Definition at line 69 of file coupled_system.C.
|
private |
Definition at line 67 of file naviersystem.C.
1.8.16