#include <LOCA_Hopf_MinimallyAugmented_Constraint.H>
Public Member Functions | |
Constraint (const Teuchos::RCP< LOCA::GlobalData > &global_data, const Teuchos::RCP< LOCA::Parameter::SublistParser > &topParams, const Teuchos::RCP< Teuchos::ParameterList > &hpfParams, const Teuchos::RCP< LOCA::Hopf::MinimallyAugmented::AbstractGroup > &g, bool is_symmetric, const NOX::Abstract::Vector &a_real, const NOX::Abstract::Vector &a_imag, const NOX::Abstract::Vector *b_real, const NOX::Abstract::Vector *b_imag, int bif_param, double freq) | |
Constructor. | |
Constraint (const Constraint &source, NOX::CopyType type=NOX::DeepCopy) | |
Copy constructor. | |
virtual | ~Constraint () |
Destructor. | |
virtual void | setGroup (const Teuchos::RCP< LOCA::Hopf::MinimallyAugmented::AbstractGroup > &g) |
Set the group pointer. | |
virtual void | setFrequency (double freq) |
Set Hopf frequency. | |
virtual Teuchos::RCP< const NOX::Abstract::Vector > | getLeftNullVecReal () const |
Returns real component of left null vector w. | |
virtual Teuchos::RCP< const NOX::Abstract::Vector > | getLeftNullVecImag () const |
Returns imaginary component of left null vector w. | |
virtual Teuchos::RCP< const NOX::Abstract::Vector > | getRightNullVecReal () const |
Returns real component of right null vector v. | |
virtual Teuchos::RCP< const NOX::Abstract::Vector > | getRightNullVecImag () const |
Returns imaginary component of right null vector v. | |
virtual double | getSigmaReal () const |
Returns real component of sigma. | |
virtual double | getSigmaImag () const |
Returns imaginary component of sigma. | |
virtual NOX::Abstract::Group::ReturnType | computeDOmega (NOX::Abstract::MultiVector::DenseMatrix &domega) |
Compute derivative of sigma w.r.t. frequency omega. | |
Implementation of LOCA::MultiContinuation::ConstraintInterface | |
virtual methods | |
virtual void | copy (const LOCA::MultiContinuation::ConstraintInterface &source) |
Copy. | |
virtual Teuchos::RCP < LOCA::MultiContinuation::ConstraintInterface > | clone (NOX::CopyType type=NOX::DeepCopy) const |
Cloning function. | |
virtual int | numConstraints () const |
Return number of constraints. | |
virtual void | setX (const NOX::Abstract::Vector &y) |
Set the solution vector to y. | |
virtual void | setParam (int paramID, double val) |
Sets parameter indexed by paramID. | |
virtual void | setParams (const vector< int > ¶mIDs, const NOX::Abstract::MultiVector::DenseMatrix &vals) |
Sets parameters indexed by paramIDs. | |
virtual NOX::Abstract::Group::ReturnType | computeConstraints () |
Compute continuation constraint equations. | |
virtual NOX::Abstract::Group::ReturnType | computeDX () |
Compute derivative of constraints w.r.t. solution vector x. | |
virtual NOX::Abstract::Group::ReturnType | computeDP (const vector< int > ¶mIDs, NOX::Abstract::MultiVector::DenseMatrix &dgdp, bool isValidG) |
Compute derivative of constraints w.r.t. supplied parameters. | |
virtual bool | isConstraints () const |
Return true if constraint residuals are valid. | |
virtual bool | isDX () const |
Return true if derivatives of constraints w.r.t. x are valid. | |
virtual const NOX::Abstract::MultiVector::DenseMatrix & | getConstraints () const |
Return constraint residuals. | |
virtual const NOX::Abstract::MultiVector * | getDX () const |
Return solution component of constraint derivatives. | |
virtual bool | isDXZero () const |
Return true if solution component of constraint derivatives is zero. | |
virtual void | postProcessContinuationStep (LOCA::Abstract::Iterator::StepStatus stepStatus) |
Perform any postprocessing after a continuation step finishes. | |
Protected Attributes | |
Teuchos::RCP< LOCA::GlobalData > | globalData |
Pointer LOCA global data object. | |
Teuchos::RCP < LOCA::Parameter::SublistParser > | parsedParams |
Parsed top-level parameters. | |
Teuchos::RCP < Teuchos::ParameterList > | hopfParams |
Bifurcation parameter list. | |
Teuchos::RCP < LOCA::Hopf::MinimallyAugmented::AbstractGroup > | grpPtr |
Pointer to base group that defines ![]() | |
Teuchos::RCP < NOX::Abstract::MultiVector > | a_vector |
Vector for ![]() | |
Teuchos::RCP < NOX::Abstract::MultiVector > | b_vector |
Vector for ![]() | |
Teuchos::RCP < NOX::Abstract::MultiVector > | w_vector |
Stores left null vector. | |
Teuchos::RCP < NOX::Abstract::MultiVector > | v_vector |
Stores right null vector. | |
Teuchos::RCP < NOX::Abstract::MultiVector > | Cv_vector |
Stores C*v. | |
Teuchos::RCP < NOX::Abstract::MultiVector > | sigma_x |
Stores sigma_x. | |
NOX::Abstract::MultiVector::DenseMatrix | constraints |
Constraint values. | |
Teuchos::RCP < LOCA::BorderedSolver::AbstractStrategy > | borderedSolver |
Stores bordered solver strategy. | |
double | dn |
Stores vector length as a double. | |
double | sigma_scale |
Stores scale factor on sigma. | |
bool | isSymmetric |
Flag indicating whether Jacobian is symmetric. | |
bool | isValidConstraints |
Flag indicating whether constraints are valid. | |
bool | isValidDX |
Flag indicating whether sigma_x is valid. | |
vector< int > | bifParamID |
Stores the bifurcation parameter index. | |
double | omega |
Stores Hopf frequency. | |
bool | updateVectorsEveryContinuationStep |
Flag indicating whether to update ![]() ![]() | |
bool | updateVectorsEveryIteration |
Flag indicating whether to update ![]() ![]() | |
Private Member Functions | |
Constraint & | operator= (const Constraint &source) |
Prohibit generation and use of operator=(). |
This class implements the turning point constraint equation for the minimally augmented Hopf formulation where
is defined via
for any vectors and
in
. Using these relationships, it is easy to show
The class is intialized via the hpfParams
parameter list argument to the constructor. The parameters this class recognizes are:
Definition at line 132 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
LOCA::Hopf::MinimallyAugmented::Constraint::Constraint | ( | const Teuchos::RCP< LOCA::GlobalData > & | global_data, | |
const Teuchos::RCP< LOCA::Parameter::SublistParser > & | topParams, | |||
const Teuchos::RCP< Teuchos::ParameterList > & | hpfParams, | |||
const Teuchos::RCP< LOCA::Hopf::MinimallyAugmented::AbstractGroup > & | g, | |||
bool | is_symmetric, | |||
const NOX::Abstract::Vector & | a_real, | |||
const NOX::Abstract::Vector & | a_imag, | |||
const NOX::Abstract::Vector * | b_real, | |||
const NOX::Abstract::Vector * | b_imag, | |||
int | bif_param, | |||
double | freq | |||
) |
Constructor.
Definition at line 55 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References a_vector, b_vector, borderedSolver, NOX::Abstract::Vector::createMultiVector(), NOX::DeepCopy, globalData, hopfParams, isSymmetric, parsedParams, NOX::ShapeCopy, updateVectorsEveryContinuationStep, and updateVectorsEveryIteration.
Referenced by clone().
LOCA::Hopf::MinimallyAugmented::Constraint::Constraint | ( | const Constraint & | source, | |
NOX::CopyType | type = NOX::DeepCopy | |||
) |
Copy constructor.
Definition at line 115 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References borderedSolver, NOX::DeepCopy, globalData, hopfParams, isValidConstraints, isValidDX, and parsedParams.
LOCA::Hopf::MinimallyAugmented::Constraint::~Constraint | ( | ) | [virtual] |
void LOCA::Hopf::MinimallyAugmented::Constraint::setGroup | ( | const Teuchos::RCP< LOCA::Hopf::MinimallyAugmented::AbstractGroup > & | g | ) | [virtual] |
Set the group pointer.
This method should be called when ever the constrained group is copied, since we don't explicitly copy the underlying group here.
Definition at line 160 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References grpPtr.
void LOCA::Hopf::MinimallyAugmented::Constraint::setFrequency | ( | double | freq | ) | [virtual] |
Set Hopf frequency.
Definition at line 167 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References isValidConstraints, isValidDX, and omega.
Teuchos::RCP< const NOX::Abstract::Vector > LOCA::Hopf::MinimallyAugmented::Constraint::getLeftNullVecReal | ( | ) | const [virtual] |
Returns real component of left null vector w.
Definition at line 176 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References w_vector.
Teuchos::RCP< const NOX::Abstract::Vector > LOCA::Hopf::MinimallyAugmented::Constraint::getLeftNullVecImag | ( | ) | const [virtual] |
Returns imaginary component of left null vector w.
Definition at line 183 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References w_vector.
Teuchos::RCP< const NOX::Abstract::Vector > LOCA::Hopf::MinimallyAugmented::Constraint::getRightNullVecReal | ( | ) | const [virtual] |
Returns real component of right null vector v.
Definition at line 190 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References v_vector.
Teuchos::RCP< const NOX::Abstract::Vector > LOCA::Hopf::MinimallyAugmented::Constraint::getRightNullVecImag | ( | ) | const [virtual] |
Returns imaginary component of right null vector v.
Definition at line 197 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References v_vector.
double LOCA::Hopf::MinimallyAugmented::Constraint::getSigmaReal | ( | ) | const [virtual] |
Returns real component of sigma.
Definition at line 204 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References constraints.
double LOCA::Hopf::MinimallyAugmented::Constraint::getSigmaImag | ( | ) | const [virtual] |
Returns imaginary component of sigma.
Definition at line 211 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References constraints.
void LOCA::Hopf::MinimallyAugmented::Constraint::copy | ( | const LOCA::MultiContinuation::ConstraintInterface & | source | ) | [virtual] |
Copy.
Implements LOCA::MultiContinuation::ConstraintInterface.
Definition at line 218 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References a_vector, b_vector, bifParamID, borderedSolver, constraints, Cv_vector, dn, globalData, hopfParams, isSymmetric, isValidConstraints, isValidDX, omega, parsedParams, sigma_scale, sigma_x, updateVectorsEveryContinuationStep, updateVectorsEveryIteration, v_vector, and w_vector.
Teuchos::RCP< LOCA::MultiContinuation::ConstraintInterface > LOCA::Hopf::MinimallyAugmented::Constraint::clone | ( | NOX::CopyType | type = NOX::DeepCopy |
) | const [virtual] |
Cloning function.
Implements LOCA::MultiContinuation::ConstraintInterface.
Definition at line 258 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References Constraint().
int LOCA::Hopf::MinimallyAugmented::Constraint::numConstraints | ( | ) | const [virtual] |
Return number of constraints.
Implements LOCA::MultiContinuation::ConstraintInterface.
Definition at line 265 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
void LOCA::Hopf::MinimallyAugmented::Constraint::setX | ( | const NOX::Abstract::Vector & | y | ) | [virtual] |
Set the solution vector to y.
Implements LOCA::MultiContinuation::ConstraintInterface.
Definition at line 272 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References grpPtr, isValidConstraints, and isValidDX.
void LOCA::Hopf::MinimallyAugmented::Constraint::setParam | ( | int | paramID, | |
double | val | |||
) | [virtual] |
Sets parameter indexed by paramID.
Implements LOCA::MultiContinuation::ConstraintInterface.
Definition at line 281 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References grpPtr, isValidConstraints, and isValidDX.
void LOCA::Hopf::MinimallyAugmented::Constraint::setParams | ( | const vector< int > & | paramIDs, | |
const NOX::Abstract::MultiVector::DenseMatrix & | vals | |||
) | [virtual] |
Sets parameters indexed by paramIDs.
Implements LOCA::MultiContinuation::ConstraintInterface.
Definition at line 290 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References grpPtr, isValidConstraints, and isValidDX.
NOX::Abstract::Group::ReturnType LOCA::Hopf::MinimallyAugmented::Constraint::computeConstraints | ( | ) | [virtual] |
Compute continuation constraint equations.
Implements LOCA::MultiContinuation::ConstraintInterface.
Definition at line 300 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References a_vector, b_vector, borderedSolver, constraints, Cv_vector, dn, globalData, grpPtr, isSymmetric, isValidConstraints, NOX::Abstract::Group::Ok, omega, NOX::Utils::OuterIteration, parsedParams, sigma_scale, updateVectorsEveryIteration, v_vector, and w_vector.
Referenced by computeDOmega(), computeDP(), and computeDX().
NOX::Abstract::Group::ReturnType LOCA::Hopf::MinimallyAugmented::Constraint::computeDX | ( | ) | [virtual] |
Compute derivative of constraints w.r.t. solution vector x.
Implements LOCA::MultiContinuation::ConstraintInterface.
Definition at line 540 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References computeConstraints(), globalData, grpPtr, isValidConstraints, isValidDX, NOX::Abstract::Group::Ok, omega, sigma_scale, sigma_x, v_vector, and w_vector.
NOX::Abstract::Group::ReturnType LOCA::Hopf::MinimallyAugmented::Constraint::computeDP | ( | const vector< int > & | paramIDs, | |
NOX::Abstract::MultiVector::DenseMatrix & | dgdp, | |||
bool | isValidG | |||
) | [virtual] |
Compute derivative of constraints w.r.t. supplied parameters.
The first column of dgdp
should be filled with the constraint residuals if
isValidG
is false
. If isValidG
is true
, then the dgdp
contains on input.
Implements LOCA::MultiContinuation::ConstraintInterface.
Definition at line 577 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References computeConstraints(), constraints, globalData, grpPtr, isValidConstraints, NOX::Abstract::Group::Ok, omega, sigma_scale, v_vector, and w_vector.
bool LOCA::Hopf::MinimallyAugmented::Constraint::isConstraints | ( | ) | const [virtual] |
Return true
if constraint residuals are valid.
Implements LOCA::MultiContinuation::ConstraintInterface.
Definition at line 622 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References isValidConstraints.
bool LOCA::Hopf::MinimallyAugmented::Constraint::isDX | ( | ) | const [virtual] |
Return true
if derivatives of constraints w.r.t. x are valid.
Implements LOCA::MultiContinuation::ConstraintInterface.
Definition at line 629 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References isValidDX.
const NOX::Abstract::MultiVector::DenseMatrix & LOCA::Hopf::MinimallyAugmented::Constraint::getConstraints | ( | ) | const [virtual] |
Return constraint residuals.
Implements LOCA::MultiContinuation::ConstraintInterface.
Definition at line 636 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References constraints.
const NOX::Abstract::MultiVector * LOCA::Hopf::MinimallyAugmented::Constraint::getDX | ( | ) | const [virtual] |
Return solution component of constraint derivatives.
Implements LOCA::MultiContinuation::ConstraintInterfaceMVDX.
Definition at line 643 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References sigma_x.
bool LOCA::Hopf::MinimallyAugmented::Constraint::isDXZero | ( | ) | const [virtual] |
Return true
if solution component of constraint derivatives is zero.
Implements LOCA::MultiContinuation::ConstraintInterface.
Definition at line 650 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
void LOCA::Hopf::MinimallyAugmented::Constraint::postProcessContinuationStep | ( | LOCA::Abstract::Iterator::StepStatus | stepStatus | ) | [virtual] |
Perform any postprocessing after a continuation step finishes.
The stepStatus
argument indicates whether the step was successful. Here we update the and
vectors to
and
respectively if requested.
Reimplemented from LOCA::MultiContinuation::ConstraintInterface.
Definition at line 657 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References a_vector, b_vector, dn, globalData, NOX::Utils::StepperDetails, LOCA::Abstract::Iterator::Successful, updateVectorsEveryContinuationStep, v_vector, and w_vector.
NOX::Abstract::Group::ReturnType LOCA::Hopf::MinimallyAugmented::Constraint::computeDOmega | ( | NOX::Abstract::MultiVector::DenseMatrix & | domega | ) | [virtual] |
Compute derivative of sigma w.r.t. frequency omega.
Definition at line 679 of file LOCA_Hopf_MinimallyAugmented_Constraint.C.
References computeConstraints(), globalData, grpPtr, isValidConstraints, NOX::Abstract::Group::Ok, NOX::ShapeCopy, sigma_scale, v_vector, and w_vector.
Constraint& LOCA::Hopf::MinimallyAugmented::Constraint::operator= | ( | const Constraint & | source | ) | [private] |
Prohibit generation and use of operator=().
Teuchos::RCP<LOCA::GlobalData> LOCA::Hopf::MinimallyAugmented::Constraint::globalData [protected] |
Pointer LOCA global data object.
Definition at line 283 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), computeDOmega(), computeDP(), computeDX(), Constraint(), copy(), and postProcessContinuationStep().
Teuchos::RCP<LOCA::Parameter::SublistParser> LOCA::Hopf::MinimallyAugmented::Constraint::parsedParams [protected] |
Parsed top-level parameters.
Definition at line 286 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), Constraint(), and copy().
Teuchos::RCP<Teuchos::ParameterList> LOCA::Hopf::MinimallyAugmented::Constraint::hopfParams [protected] |
Bifurcation parameter list.
Definition at line 289 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by Constraint(), and copy().
Teuchos::RCP<LOCA::Hopf::MinimallyAugmented::AbstractGroup> LOCA::Hopf::MinimallyAugmented::Constraint::grpPtr [protected] |
Pointer to base group that defines .
Definition at line 292 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), computeDOmega(), computeDP(), computeDX(), setGroup(), setParam(), setParams(), and setX().
Teuchos::RCP<NOX::Abstract::MultiVector> LOCA::Hopf::MinimallyAugmented::Constraint::a_vector [protected] |
Vector for .
Definition at line 295 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), Constraint(), copy(), and postProcessContinuationStep().
Teuchos::RCP<NOX::Abstract::MultiVector> LOCA::Hopf::MinimallyAugmented::Constraint::b_vector [protected] |
Vector for .
Definition at line 298 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), Constraint(), copy(), and postProcessContinuationStep().
Teuchos::RCP<NOX::Abstract::MultiVector> LOCA::Hopf::MinimallyAugmented::Constraint::w_vector [protected] |
Stores left null vector.
Definition at line 301 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), computeDOmega(), computeDP(), computeDX(), copy(), getLeftNullVecImag(), getLeftNullVecReal(), and postProcessContinuationStep().
Teuchos::RCP<NOX::Abstract::MultiVector> LOCA::Hopf::MinimallyAugmented::Constraint::v_vector [protected] |
Stores right null vector.
Definition at line 304 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), computeDOmega(), computeDP(), computeDX(), copy(), getRightNullVecImag(), getRightNullVecReal(), and postProcessContinuationStep().
Teuchos::RCP<NOX::Abstract::MultiVector> LOCA::Hopf::MinimallyAugmented::Constraint::Cv_vector [protected] |
Stores C*v.
Definition at line 307 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), and copy().
Teuchos::RCP<NOX::Abstract::MultiVector> LOCA::Hopf::MinimallyAugmented::Constraint::sigma_x [protected] |
Stores sigma_x.
Definition at line 310 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeDX(), copy(), and getDX().
NOX::Abstract::MultiVector::DenseMatrix LOCA::Hopf::MinimallyAugmented::Constraint::constraints [protected] |
Constraint values.
Definition at line 313 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), computeDP(), copy(), getConstraints(), getSigmaImag(), and getSigmaReal().
Teuchos::RCP<LOCA::BorderedSolver::AbstractStrategy> LOCA::Hopf::MinimallyAugmented::Constraint::borderedSolver [protected] |
Stores bordered solver strategy.
Definition at line 316 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), Constraint(), and copy().
double LOCA::Hopf::MinimallyAugmented::Constraint::dn [protected] |
Stores vector length as a double.
Definition at line 319 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), copy(), and postProcessContinuationStep().
double LOCA::Hopf::MinimallyAugmented::Constraint::sigma_scale [protected] |
Stores scale factor on sigma.
Definition at line 322 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), computeDOmega(), computeDP(), computeDX(), and copy().
bool LOCA::Hopf::MinimallyAugmented::Constraint::isSymmetric [protected] |
Flag indicating whether Jacobian is symmetric.
Definition at line 327 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), Constraint(), and copy().
bool LOCA::Hopf::MinimallyAugmented::Constraint::isValidConstraints [protected] |
Flag indicating whether constraints are valid.
Definition at line 330 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), computeDOmega(), computeDP(), computeDX(), Constraint(), copy(), isConstraints(), setFrequency(), setParam(), setParams(), and setX().
bool LOCA::Hopf::MinimallyAugmented::Constraint::isValidDX [protected] |
Flag indicating whether sigma_x is valid.
Definition at line 333 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeDX(), Constraint(), copy(), isDX(), setFrequency(), setParam(), setParams(), and setX().
vector<int> LOCA::Hopf::MinimallyAugmented::Constraint::bifParamID [protected] |
Stores the bifurcation parameter index.
Definition at line 336 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by copy().
double LOCA::Hopf::MinimallyAugmented::Constraint::omega [protected] |
Stores Hopf frequency.
Definition at line 339 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), computeDP(), computeDX(), copy(), and setFrequency().
Flag indicating whether to update and
every continuation step.
Definition at line 345 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by Constraint(), copy(), and postProcessContinuationStep().
Flag indicating whether to update and
every nonlinear iteration.
Definition at line 351 of file LOCA_Hopf_MinimallyAugmented_Constraint.H.
Referenced by computeConstraints(), Constraint(), and copy().