|
| Diff_both_BC () |
|
void | residual_fn (const DenseVector< double > &z, DenseVector< double > &b) const |
|
| Residual_with_coords (const unsigned &order, const unsigned &ncoords) |
| Constructor for a 'square' residual object that is, N residuals for N unknowns. More...
|
|
| Residual_with_coords (const unsigned &order, const unsigned &nvars, const unsigned &ncoords) |
| Constructor for a 'non-square' residual object that is, there are less residual constraints than unknowns. More...
|
|
virtual | ~Residual_with_coords () |
| An empty destructor. More...
|
|
double & | coord (const unsigned &i) |
| General handle access to the coordinates. More...
|
|
const double & | coord (const unsigned &i) const |
| General handle access to the coordinates. More...
|
|
| Residual (const unsigned &order) |
| Constructor for a 'square' residual object that is, N residuals for N unknowns. More...
|
|
| Residual (const unsigned &order, const unsigned &nvars) |
| Constructor for a 'non-square' residual object that is, there are less residual constraints than unknowns. More...
|
|
virtual | ~Residual () |
| An empty destructor, virtual since we have virtual methods. More...
|
|
void | update (const DenseVector< _Type > &state) |
| Update the Residual object for the current set of state variables. More...
|
|
const DenseVector< _Type > & | residual () const |
| Return a handle to the residuals corresponding to the last update state. More...
|
|
const DenseMatrix< _Type > & | jacobian () const |
| Retrun a handle to the Jacobian of the residual corresponding to the last update state. More...
|
|
_Type & | delta () |
|
const _Type & | delta () const |
|
unsigned | get_order () const |
| Get the order of the residual vector. More...
|
|
unsigned | get_number_of_vars () const |
| Get the number of variables that this residual condition is defined for. More...
|
|
virtual void | residual_fn (const DenseVector< _Type > &state, DenseVector< _Type > &f) const |
| A blank virtual residual function method. More...
|
|
Definition at line 66 of file IBVPDiffusion.cpp.