#include <PitchforkProblemInterface.H>
Inheritance diagram for PitchforkProblemInterface:
Public Member Functions | |
| PitchforkProblemInterface (int N, double a, double b, double l) | |
| Constructor. Also generates an initial guess. | |
| ~PitchforkProblemInterface () | |
| Destructor. | |
| const NOX::LAPACK::Vector & | getInitialGuess () |
| Returns initial guess. | |
| bool | computeF (NOX::LAPACK::Vector &f, const NOX::LAPACK::Vector &x) |
| Evaluates residual. | |
| bool | computeJacobian (NOX::LAPACK::Matrix &J, const NOX::LAPACK::Vector &x) |
| Evalues jacobian. | |
| void | setParams (const LOCA::ParameterVector &p) |
| Sets parameters. | |
| void | printSolution (const NOX::LAPACK::Vector &x, const double conParam) |
| Prints solution after successful step. | |
PitchforkProblemInterface implements the LOCA::LAPACK::Interface for a 1D finite-difference discretization of the PDE:
subject to the boundar conditions
. The parameters are
,
,
, and
, the size of the discretization.
1.3.9.1