#include <Operators_fwd.hpp>
Represents a second derivative wrt. var1
and var2
.
Definition at line 24 of file Monomials_fwd.hpp.
Public Member Functions | |
Der2 () | |
Default constructor for array preallocation purposes. More... | |
Der2 (int var1, int var2) | |
Initialization of specific 2nd derivative operator. More... | |
Der2 (int var) | |
Initialization of specific 2nd derivative operator. More... | |
std::string | name () const |
Human readable name. More... | |
Static Public Member Functions | |
static std::string | type_name () |
Human readable type name. More... | |
Public Attributes | |
int | var1 |
Lower index representing derived variable (x = 0, y = 1, z = 2, ...) More... | |
int | var2 |
Higher index representing derived variable (x = 0, y = 1, z = 2, ...) More... | |
Public Types | |
enum | { dim = dimension } |
Store dimension of the domain. More... | |
anonymous enum |
Store dimension of the domain.
Enumerator | |
---|---|
dim | Dimensionality of the domain. |
Definition at line 166 of file Operators_fwd.hpp.
Default constructor for array preallocation purposes.
Definition at line 171 of file Operators_fwd.hpp.
Initialization of specific 2nd derivative operator.
var1 | First variable with respect to which the derivative is taken. variable (x = 0, y = 1, z = 2, ...). |
var2 | Second variable with respect to which the derivative is taken. (Should have higher index and the first variable.) variable (x = 0, y = 1, z = 2, ...). |
Definition at line 76 of file Operators.hpp.
Initialization of specific 2nd derivative operator.
var | Index representing two times derived variable (x = 0, y = 1, z = 2, ...). |
Definition at line 187 of file Operators_fwd.hpp.
std::string mm::Der2< dimension >::name |
Human readable name.
Definition at line 84 of file Operators.hpp.
|
inlinestatic |
Human readable type name.
Definition at line 192 of file Operators_fwd.hpp.
int mm::Der2< dimension >::var1 |
Lower index representing derived variable (x = 0, y = 1, z = 2, ...)
Definition at line 167 of file Operators_fwd.hpp.
int mm::Der2< dimension >::var2 |
Higher index representing derived variable (x = 0, y = 1, z = 2, ...)
Definition at line 168 of file Operators_fwd.hpp.