Structure to implement a newton object for a stationary MSR problem. More...
#include <ReducedMSR.H>
Public Member Functions | |
newton_msr_fd () | |
newton_msr_fd (int Nx, int Ny, msrProblem &problem) | |
int | operator() (const Eigen::VectorXd &x, Eigen::VectorXd &fvec) const |
int | df (const Eigen::VectorXd &x, Eigen::MatrixXd &fjac) const |
Public Member Functions inherited from newton_argument< double > | |
newton_argument () | |
Constructor. | |
newton_argument (int inputs, int values) | |
Constructor. | |
int | operator() (const Eigen::VectorXd &x, Eigen::VectorXd &fvec) const |
Operator to compute the residual vector. | |
int | df (const Eigen::VectorXd &x, Eigen::VectorXd &fvec) const |
Operator to compute the jacobian matrix. | |
int | inputs () const |
Return the inputs. | |
int | values () const |
Return the values. | |
Public Attributes | |
int | Nphi_u |
int | Nphi_p |
int | N_BC |
scalar | nu |
Eigen::VectorXd | BC |
msrProblem * | problem |
Public Attributes inherited from newton_argument< double > | |
int | m_inputs |
int | m_values |
Additional Inherited Members | |
Public Types inherited from newton_argument< double > | |
enum | |
typedef double | Scalar |
typedef Eigen::Matrix< Scalar, InputsAtCompileTime, 1 > | InputType |
typedef Eigen::Matrix< Scalar, ValuesAtCompileTime, 1 > | ValueType |
typedef Eigen::Matrix< Scalar, ValuesAtCompileTime, InputsAtCompileTime > | JacobianType |
Structure to implement a newton object for a stationary MSR problem.
Definition at line 38 of file ReducedMSR.H.
|
inline |
Definition at line 41 of file ReducedMSR.H.
|
inline |
Definition at line 42 of file ReducedMSR.H.
int newton_msr_fd::df | ( | const Eigen::VectorXd & | x, |
Eigen::MatrixXd & | fjac ) const |
Definition at line 232 of file ReducedMSR.C.
int newton_msr_fd::operator() | ( | const Eigen::VectorXd & | x, |
Eigen::VectorXd & | fvec ) const |
Fluid-dynamics terms
Definition at line 185 of file ReducedMSR.C.
Eigen::VectorXd newton_msr_fd::BC |
Definition at line 58 of file ReducedMSR.H.
int newton_msr_fd::N_BC |
Definition at line 54 of file ReducedMSR.H.
int newton_msr_fd::Nphi_p |
Definition at line 53 of file ReducedMSR.H.
int newton_msr_fd::Nphi_u |
Definition at line 52 of file ReducedMSR.H.
scalar newton_msr_fd::nu |
Definition at line 56 of file ReducedMSR.H.
msrProblem* newton_msr_fd::problem |
Definition at line 59 of file ReducedMSR.H.