MFEM v4.8.0
Finite element discretization library
Loading...
Searching...
No Matches
mfem::TMOPNewtonSolver Class Reference

#include <tmop_tools.hpp>

Inheritance diagram for mfem::TMOPNewtonSolver:
[legend]
Collaboration diagram for mfem::TMOPNewtonSolver:
[legend]

Public Member Functions

 TMOPNewtonSolver (MPI_Comm comm, const IntegrationRule &irule, int type=0)
 
 TMOPNewtonSolver (const IntegrationRule &irule, int type=0)
 
void SetIntegrationRules (IntegrationRules &irules, int order)
 Prescribe a set of integration rules; relevant for mixed meshes.
 
void SetMinDetPtr (real_t *md_ptr)
 
void SetTempMemoryType (MemoryType mt)
 Set the memory type for temporary memory allocations.
 
real_t ComputeScalingFactor (const Vector &d, const Vector &b) const override
 
void ProcessNewState (const Vector &dx) const override
 
void SetMinimumDeterminantThreshold (real_t threshold)
 Set minimum determinant enforced during line-search.
 
void Mult (const Vector &b, Vector &x) const override
 Optimizes the mesh positions given by x.
 
void SetSolver (Solver &solver) override
 Set the linear solver for inverting the Jacobian.
 
void SetPreconditioner (Solver &pr) override
 This should be called before SetOperator.
 
Methods for adaptive surface fitting.

These methods control the behavior of the weight and the termination of the solver. (Experimental)

Adaptive fitting weight: The weight is modified after each TMOPNewtonSolver iteration as: w_{k+1} = w_{k} * surf_fit_scale_factor if the relative change in average fitting error < surf_fit_err_rel_change_limit. When converging based on the residual, we enforce the fitting weight to be at-most surf_fit_weight_limit, and increase it only if the fitting error is below user prescribed threshold (surf_fit_max_err_limit). See SetAdaptiveSurfaceFittingScalingFactor and SetAdaptiveSurfaceFittingRelativeChangeThreshold.

Note that the solver stops if the maximum surface fitting error does not sufficiently decrease for surf_fit_adapt_count_limit (default 10) consecutive increments of the fitting weight during weight adaptation. This typically occurs when the mesh cannot align with the level-set without degrading element quality. See SetMaxNumberofIncrementsForAdaptiveFitting.

Convergence criterion: There are two modes, residual- and error-based, which can be toggled using SetSurfaceFittingConvergenceBasedOnError.

(i) Residual based (default): Stop when the norm of the gradient of the TMOP objective reaches the prescribed tolerance. This method is best used with a reasonable value for surf_fit_weight_limit when the adaptive surface fitting scheme is used. See method SetSurfaceFittingWeightLimit.

(ii) Error based: Stop when the maximum fitting error reaches the user-prescribed threshold, surf_fit_max_err_limit. In this case, surf_fit_weight_limit is ignored during weight adaptation.

void SetAdaptiveSurfaceFittingScalingFactor (real_t factor)
 
void SetAdaptiveSurfaceFittingRelativeChangeThreshold (real_t threshold)
 
void SetMaxNumberofIncrementsForAdaptiveFitting (int count)
 
void SetTerminationWithMaxSurfaceFittingError (real_t max_error)
 Used for error-based surface fitting termination.
 
void SetSurfaceFittingMaxErrorLimit (real_t max_error)
 Could be used with both error-based or residual-based convergence.
 
void SetSurfaceFittingWeightLimit (real_t weight)
 Used for residual-based surface fitting termination.
 
void SetSurfaceFittingConvergenceBasedOnError (bool mode)
 Toggle convergence based on residual or error.
 
- Public Member Functions inherited from mfem::LBFGSSolver
 LBFGSSolver ()
 
 LBFGSSolver (MPI_Comm comm_)
 
void SetOperator (const Operator &op) override
 Also calls SetOperator for the preconditioner if there is one.
 
void SetHistorySize (int dim)
 
virtual ~LBFGSSolver ()
 
- Public Member Functions inherited from mfem::NewtonSolver
 NewtonSolver ()
 
 NewtonSolver (MPI_Comm comm_)
 
void SetOperator (const Operator &op) override
 Also calls SetOperator for the preconditioner if there is one.
 
void SetAdaptiveLinRtol (const int type=2, const real_t rtol0=0.5, const real_t rtol_max=0.9, const real_t alpha=0.5 *(1.0+sqrt(5.0)), const real_t gamma=1.0)
 Enable adaptive linear solver relative tolerance algorithm.
 
- Public Member Functions inherited from mfem::IterativeSolver
 IterativeSolver ()
 
 IterativeSolver (MPI_Comm comm_)
 
void SetMonitor (IterativeSolverMonitor &m)
 Set the iterative solver monitor.
 
MPI_Comm GetComm () const
 Return the associated MPI communicator, or MPI_COMM_NULL if no communicator is set.
 
void SetRelTol (real_t rtol)
 
void SetAbsTol (real_t atol)
 
void SetMaxIter (int max_it)
 
virtual void SetPrintLevel (int print_lvl)
 Legacy method to set the level of verbosity of the solver output.
 
virtual void SetPrintLevel (PrintLevel)
 Set the level of verbosity of the solver output.
 
int GetNumIterations () const
 Returns the number of iterations taken during the last call to Mult()
 
bool GetConverged () const
 Returns true if the last call to Mult() converged successfully.
 
real_t GetInitialNorm () const
 Returns the initial residual norm from the last call to Mult().
 
real_t GetFinalNorm () const
 Returns the final residual norm after termination of the solver during the last call to Mult().
 
real_t GetFinalRelNorm () const
 Returns the final residual norm after termination of the solver during the last call to Mult(), divided by the initial residual norm. Returns -1 if one of these norms is left undefined by the solver.
 
- Public Member Functions inherited from mfem::Solver
 Solver (int s=0, bool iter_mode=false)
 Initialize a square Solver with size s.
 
 Solver (int h, int w, bool iter_mode=false)
 Initialize a Solver with height h and width w.
 
- Public Member Functions inherited from mfem::Operator
void InitTVectors (const Operator *Po, const Operator *Ri, const Operator *Pi, Vector &x, Vector &b, Vector &X, Vector &B) const
 Initializes memory for true vectors of linear system.
 
 Operator (int s=0)
 Construct a square Operator with given size s (default 0).
 
 Operator (int h, int w)
 Construct an Operator with the given height (output size) and width (input size).
 
int Height () const
 Get the height (size of output) of the Operator. Synonym with NumRows().
 
int NumRows () const
 Get the number of rows (size of output) of the Operator. Synonym with Height().
 
int Width () const
 Get the width (size of input) of the Operator. Synonym with NumCols().
 
int NumCols () const
 Get the number of columns (size of input) of the Operator. Synonym with Width().
 
virtual MemoryClass GetMemoryClass () const
 Return the MemoryClass preferred by the Operator.
 
virtual void MultTranspose (const Vector &x, Vector &y) const
 Action of the transpose operator: y=A^t(x). The default behavior in class Operator is to generate an error.
 
virtual void AddMult (const Vector &x, Vector &y, const real_t a=1.0) const
 Operator application: y+=A(x) (default) or y+=a*A(x).
 
virtual void AddMultTranspose (const Vector &x, Vector &y, const real_t a=1.0) const
 Operator transpose application: y+=A^t(x) (default) or y+=a*A^t(x).
 
virtual void ArrayMult (const Array< const Vector * > &X, Array< Vector * > &Y) const
 Operator application on a matrix: Y=A(X).
 
virtual void ArrayMultTranspose (const Array< const Vector * > &X, Array< Vector * > &Y) const
 Action of the transpose operator on a matrix: Y=A^t(X).
 
virtual void ArrayAddMult (const Array< const Vector * > &X, Array< Vector * > &Y, const real_t a=1.0) const
 Operator application on a matrix: Y+=A(X) (default) or Y+=a*A(X).
 
virtual void ArrayAddMultTranspose (const Array< const Vector * > &X, Array< Vector * > &Y, const real_t a=1.0) const
 Operator transpose application on a matrix: Y+=A^t(X) (default) or Y+=a*A^t(X).
 
virtual OperatorGetGradient (const Vector &x) const
 Evaluate the gradient operator at the point x. The default behavior in class Operator is to generate an error.
 
virtual void AssembleDiagonal (Vector &diag) const
 Computes the diagonal entries into diag. Typically, this operation only makes sense for linear Operators. In some cases, only an approximation of the diagonal is computed.
 
virtual const OperatorGetProlongation () const
 Prolongation operator from linear algebra (linear system) vectors, to input vectors for the operator. NULL means identity.
 
virtual const OperatorGetRestriction () const
 Restriction operator from input vectors for the operator to linear algebra (linear system) vectors. NULL means identity.
 
virtual const OperatorGetOutputProlongation () const
 Prolongation operator from linear algebra (linear system) vectors, to output vectors for the operator. NULL means identity.
 
virtual const OperatorGetOutputRestrictionTranspose () const
 Transpose of GetOutputRestriction, directly available in this form to facilitate matrix-free RAP-type operators.
 
virtual const OperatorGetOutputRestriction () const
 Restriction operator from output vectors for the operator to linear algebra (linear system) vectors. NULL means identity.
 
void FormLinearSystem (const Array< int > &ess_tdof_list, Vector &x, Vector &b, Operator *&A, Vector &X, Vector &B, int copy_interior=0)
 Form a constrained linear system using a matrix-free approach.
 
void FormRectangularLinearSystem (const Array< int > &trial_tdof_list, const Array< int > &test_tdof_list, Vector &x, Vector &b, Operator *&A, Vector &X, Vector &B)
 Form a column-constrained linear system using a matrix-free approach.
 
virtual void RecoverFEMSolution (const Vector &X, const Vector &b, Vector &x)
 Reconstruct a solution vector x (e.g. a GridFunction) from the solution X of a constrained linear system obtained from Operator::FormLinearSystem() or Operator::FormRectangularLinearSystem().
 
void FormSystemOperator (const Array< int > &ess_tdof_list, Operator *&A)
 Return in A a parallel (on truedofs) version of this square operator.
 
void FormRectangularSystemOperator (const Array< int > &trial_tdof_list, const Array< int > &test_tdof_list, Operator *&A)
 Return in A a parallel (on truedofs) version of this rectangular operator (including constraints).
 
void FormDiscreteOperator (Operator *&A)
 Return in A a parallel (on truedofs) version of this rectangular operator.
 
void PrintMatlab (std::ostream &out, int n, int m=0) const
 Prints operator with input size n and output size m in Matlab format.
 
virtual void PrintMatlab (std::ostream &out) const
 Prints operator in Matlab format.
 
virtual ~Operator ()
 Virtual destructor.
 
Type GetType () const
 Return the type ID of the Operator class.
 

Protected Member Functions

const IntegrationRuleGetIntegrationRule (const FiniteElement &el) const
 
real_t ComputeMinDet (const Vector &d_loc, const FiniteElementSpace &fes) const
 
real_t MinDetJpr_2D (const FiniteElementSpace *, const Vector &) const
 
real_t MinDetJpr_3D (const FiniteElementSpace *, const Vector &) const
 
bool IsSurfaceFittingEnabled () const
 Check if surface fitting is enabled.
 
Methods for adaptive surface fitting weight.
virtual void GetSurfaceFittingError (const Vector &d_loc, real_t &err_avg, real_t &err_max) const
 
void UpdateSurfaceFittingWeight (real_t factor) const
 Update surface fitting weight as surf_fit_weight *= factor.
 
void GetSurfaceFittingWeight (Array< real_t > &weights) const
 Get the surface fitting weight for all the TMOP integrators.
 
- Protected Member Functions inherited from mfem::LBFGSSolver
void DeleteStorageVectors ()
 
void InitializeStorageVectors ()
 
- Protected Member Functions inherited from mfem::NewtonSolver
void AdaptiveLinRtolPreSolve (const Vector &x, const int it, const real_t fnorm) const
 Method for the adaptive linear solver rtol invoked before the linear solve.
 
void AdaptiveLinRtolPostSolve (const Vector &x, const Vector &b, const int it, const real_t fnorm) const
 Method for the adaptive linear solver rtol invoked after the linear solve.
 
- Protected Member Functions inherited from mfem::IterativeSolver
virtual real_t Dot (const Vector &x, const Vector &y) const
 Return the standard (l2, i.e., Euclidean) inner product of x and y.
 
real_t Norm (const Vector &x) const
 Return the inner product norm of x, using the inner product defined by Dot()
 
bool Monitor (int it, real_t norm, const Vector &r, const Vector &x, bool final=false) const
 Monitor both the residual r and the solution x.
 
PrintLevel FromLegacyPrintLevel (int)
 Convert a legacy print level integer to a PrintLevel object.
 
- Protected Member Functions inherited from mfem::Operator
void FormConstrainedSystemOperator (const Array< int > &ess_tdof_list, ConstrainedOperator *&Aout)
 see FormSystemOperator()
 
void FormRectangularConstrainedSystemOperator (const Array< int > &trial_tdof_list, const Array< int > &test_tdof_list, RectangularConstrainedOperator *&Aout)
 see FormRectangularSystemOperator()
 
OperatorSetupRAP (const Operator *Pi, const Operator *Po)
 Returns RAP Operator of this, using input/output Prolongation matrices Pi corresponds to "P", Po corresponds to "Rt".
 

Protected Attributes

int solver_type
 
bool parallel
 
GridFunction x_0
 
bool periodic = false
 
real_t min_detJ_limit = 0.0
 
real_t surf_fit_avg_err_prvs = 10000.0
 
real_t surf_fit_avg_err
 
real_t surf_fit_max_err
 
bool surf_fit_coeff_update = false
 
real_t surf_fit_max_err_limit = -1.0
 
real_t surf_fit_err_rel_change_limit = 0.001
 
real_t surf_fit_scale_factor = 0.0
 
int surf_fit_adapt_count = 0
 
int surf_fit_adapt_count_limit = 10
 
real_t surf_fit_weight_limit = 1e10
 
bool surf_fit_converge_error = false
 
real_tmin_det_ptr = nullptr
 
bool compute_metric_quantile_flag = true
 
const IntegrationRuleir
 
IntegrationRulesIntegRules
 
int integ_order
 
MemoryType temp_mt = MemoryType::DEFAULT
 
- Protected Attributes inherited from mfem::LBFGSSolver
int m = 10
 
Array< Vector * > skArray
 
Array< Vector * > ykArray
 
- Protected Attributes inherited from mfem::NewtonSolver
Vector r
 
Vector c
 
Operatorgrad
 
int lin_rtol_type = 0
 
real_t lin_rtol0
 
real_t lin_rtol_max
 
real_t fnorm_last = 0.0
 
real_t lnorm_last = 0.0
 
real_t eta_last = 0.0
 
real_t gamma
 
real_t alpha
 
- Protected Attributes inherited from mfem::IterativeSolver
const Operatoroper
 
Solverprec
 
IterativeSolverMonitormonitor = nullptr
 
int max_iter
 Limit for the number of iterations the solver is allowed to do.
 
real_t rel_tol
 Relative tolerance.
 
real_t abs_tol
 Absolute tolerance.
 
int final_iter = -1
 
bool converged = false
 
real_t initial_norm = -1.0
 
real_t final_norm = -1.0
 
int print_level = -1
 (DEPRECATED) Legacy print level definition, which is left for compatibility with custom iterative solvers.
 
PrintLevel print_options
 Output behavior for the iterative solver.
 
- Protected Attributes inherited from mfem::Operator
int height
 Dimension of the output / number of rows in the matrix.
 
int width
 Dimension of the input / number of columns in the matrix.
 

Additional Inherited Members

- Public Types inherited from mfem::Operator
enum  DiagonalPolicy { DIAG_ZERO , DIAG_ONE , DIAG_KEEP }
 Defines operator diagonal policy upon elimination of rows and/or columns. More...
 
enum  Type {
  ANY_TYPE , MFEM_SPARSEMAT , Hypre_ParCSR , PETSC_MATAIJ ,
  PETSC_MATIS , PETSC_MATSHELL , PETSC_MATNEST , PETSC_MATHYPRE ,
  PETSC_MATGENERIC , Complex_Operator , MFEM_ComplexSparseMat , Complex_Hypre_ParCSR ,
  Complex_DenseMat , MFEM_Block_Matrix , MFEM_Block_Operator
}
 Enumeration defining IDs for some classes derived from Operator. More...
 
- Public Attributes inherited from mfem::Solver
bool iterative_mode
 If true, use the second argument of Mult() as an initial guess.
 
- Static Protected Member Functions inherited from mfem::IterativeSolver
static int GuessLegacyPrintLevel (PrintLevel)
 Use some heuristics to guess a legacy print level corresponding to the given PrintLevel.
 

Detailed Description

Definition at line 166 of file tmop_tools.hpp.

Constructor & Destructor Documentation

◆ TMOPNewtonSolver() [1/2]

mfem::TMOPNewtonSolver::TMOPNewtonSolver ( MPI_Comm comm,
const IntegrationRule & irule,
int type = 0 )
inline

Definition at line 245 of file tmop_tools.hpp.

◆ TMOPNewtonSolver() [2/2]

mfem::TMOPNewtonSolver::TMOPNewtonSolver ( const IntegrationRule & irule,
int type = 0 )
inline

Definition at line 249 of file tmop_tools.hpp.

Member Function Documentation

◆ ComputeMinDet()

real_t mfem::TMOPNewtonSolver::ComputeMinDet ( const Vector & d_loc,
const FiniteElementSpace & fes ) const
protected

Definition at line 972 of file tmop_tools.cpp.

◆ ComputeScalingFactor()

real_t mfem::TMOPNewtonSolver::ComputeScalingFactor ( const Vector & d,
const Vector & b ) const
overridevirtual

Compute scaling factor for the node movement direction using line-search. We impose constraints on TMOP energy, gradient, minimum Jacobian of the mesh, and (optionally) on the surface fitting error.

Reimplemented from mfem::NewtonSolver.

Definition at line 424 of file tmop_tools.cpp.

◆ GetIntegrationRule()

const IntegrationRule & mfem::TMOPNewtonSolver::GetIntegrationRule ( const FiniteElement & el) const
inlineprotected

Definition at line 210 of file tmop_tools.hpp.

◆ GetSurfaceFittingError()

void mfem::TMOPNewtonSolver::GetSurfaceFittingError ( const Vector & d_loc,
real_t & err_avg,
real_t & err_max ) const
protectedvirtual

Get the average and maximum surface fitting error at the marked nodes. If there is more than 1 TMOP integrator, we get the maximum of the average and maximum error over all integrators.

Definition at line 785 of file tmop_tools.cpp.

◆ GetSurfaceFittingWeight()

void mfem::TMOPNewtonSolver::GetSurfaceFittingWeight ( Array< real_t > & weights) const
protected

Get the surface fitting weight for all the TMOP integrators.

Definition at line 752 of file tmop_tools.cpp.

◆ IsSurfaceFittingEnabled()

bool mfem::TMOPNewtonSolver::IsSurfaceFittingEnabled ( ) const
protected

Check if surface fitting is enabled.

Definition at line 826 of file tmop_tools.cpp.

◆ MinDetJpr_2D()

real_t mfem::TMOPNewtonSolver::MinDetJpr_2D ( const FiniteElementSpace * fes,
const Vector & D ) const
protected

Definition at line 75 of file tmop_pa_jp2.cpp.

◆ MinDetJpr_3D()

real_t mfem::TMOPNewtonSolver::MinDetJpr_3D ( const FiniteElementSpace * fes,
const Vector & D ) const
protected

Definition at line 77 of file tmop_pa_jp3.cpp.

◆ Mult()

void mfem::TMOPNewtonSolver::Mult ( const Vector & b,
Vector & x ) const
overridevirtual

Optimizes the mesh positions given by x.

Reimplemented from mfem::LBFGSSolver.

Definition at line 668 of file tmop_tools.cpp.

◆ ProcessNewState()

void mfem::TMOPNewtonSolver::ProcessNewState ( const Vector & dx) const
overridevirtual

Given the new displacements d (tdof Vector), update (i) discrete functions at new nodal positions, and (ii) surface fitting weight.

Reimplemented from mfem::NewtonSolver.

Definition at line 859 of file tmop_tools.cpp.

◆ SetAdaptiveSurfaceFittingRelativeChangeThreshold()

void mfem::TMOPNewtonSolver::SetAdaptiveSurfaceFittingRelativeChangeThreshold ( real_t threshold)
inline

Definition at line 319 of file tmop_tools.hpp.

◆ SetAdaptiveSurfaceFittingScalingFactor()

void mfem::TMOPNewtonSolver::SetAdaptiveSurfaceFittingScalingFactor ( real_t factor)
inline

Definition at line 314 of file tmop_tools.hpp.

◆ SetIntegrationRules()

void mfem::TMOPNewtonSolver::SetIntegrationRules ( IntegrationRules & irules,
int order )
inline

Prescribe a set of integration rules; relevant for mixed meshes.

If called, this function has priority over the IntegrationRule given to the constructor of the class.

Definition at line 256 of file tmop_tools.hpp.

◆ SetMaxNumberofIncrementsForAdaptiveFitting()

void mfem::TMOPNewtonSolver::SetMaxNumberofIncrementsForAdaptiveFitting ( int count)
inline

Used for stopping based on the number of consecutive failed weight adaptation iterations.

Definition at line 327 of file tmop_tools.hpp.

◆ SetMinDetPtr()

void mfem::TMOPNewtonSolver::SetMinDetPtr ( real_t * md_ptr)
inline

Definition at line 262 of file tmop_tools.hpp.

◆ SetMinimumDeterminantThreshold()

void mfem::TMOPNewtonSolver::SetMinimumDeterminantThreshold ( real_t threshold)
inline

Set minimum determinant enforced during line-search.

Definition at line 362 of file tmop_tools.hpp.

◆ SetPreconditioner()

void mfem::TMOPNewtonSolver::SetPreconditioner ( Solver & pr)
inlineoverridevirtual

This should be called before SetOperator.

Reimplemented from mfem::LBFGSSolver.

Definition at line 382 of file tmop_tools.hpp.

◆ SetSolver()

void mfem::TMOPNewtonSolver::SetSolver ( Solver & solver)
inlineoverridevirtual

Set the linear solver for inverting the Jacobian.

This method is equivalent to calling SetPreconditioner().

Reimplemented from mfem::LBFGSSolver.

Definition at line 370 of file tmop_tools.hpp.

◆ SetSurfaceFittingConvergenceBasedOnError()

void mfem::TMOPNewtonSolver::SetSurfaceFittingConvergenceBasedOnError ( bool mode)
inline

Toggle convergence based on residual or error.

Definition at line 348 of file tmop_tools.hpp.

◆ SetSurfaceFittingMaxErrorLimit()

void mfem::TMOPNewtonSolver::SetSurfaceFittingMaxErrorLimit ( real_t max_error)
inline

Could be used with both error-based or residual-based convergence.

Definition at line 338 of file tmop_tools.hpp.

◆ SetSurfaceFittingWeightLimit()

void mfem::TMOPNewtonSolver::SetSurfaceFittingWeightLimit ( real_t weight)
inline

Used for residual-based surface fitting termination.

Definition at line 343 of file tmop_tools.hpp.

◆ SetTempMemoryType()

void mfem::TMOPNewtonSolver::SetTempMemoryType ( MemoryType mt)
inline

Set the memory type for temporary memory allocations.

Definition at line 265 of file tmop_tools.hpp.

◆ SetTerminationWithMaxSurfaceFittingError()

void mfem::TMOPNewtonSolver::SetTerminationWithMaxSurfaceFittingError ( real_t max_error)
inline

Used for error-based surface fitting termination.

Definition at line 332 of file tmop_tools.hpp.

◆ UpdateSurfaceFittingWeight()

void mfem::TMOPNewtonSolver::UpdateSurfaceFittingWeight ( real_t factor) const
protected

Update surface fitting weight as surf_fit_weight *= factor.

Definition at line 727 of file tmop_tools.cpp.

Member Data Documentation

◆ compute_metric_quantile_flag

bool mfem::TMOPNewtonSolver::compute_metric_quantile_flag = true
mutableprotected

Definition at line 200 of file tmop_tools.hpp.

◆ integ_order

int mfem::TMOPNewtonSolver::integ_order
protected

Definition at line 206 of file tmop_tools.hpp.

◆ IntegRules

IntegrationRules* mfem::TMOPNewtonSolver::IntegRules
protected

Definition at line 205 of file tmop_tools.hpp.

◆ ir

const IntegrationRule& mfem::TMOPNewtonSolver::ir
protected

Definition at line 203 of file tmop_tools.hpp.

◆ min_det_ptr

real_t* mfem::TMOPNewtonSolver::min_det_ptr = nullptr
protected

Definition at line 197 of file tmop_tools.hpp.

◆ min_detJ_limit

real_t mfem::TMOPNewtonSolver::min_detJ_limit = 0.0
protected

Definition at line 182 of file tmop_tools.hpp.

◆ parallel

bool mfem::TMOPNewtonSolver::parallel
protected

Definition at line 171 of file tmop_tools.hpp.

◆ periodic

bool mfem::TMOPNewtonSolver::periodic = false
mutableprotected

Definition at line 179 of file tmop_tools.hpp.

◆ solver_type

int mfem::TMOPNewtonSolver::solver_type
protected

Definition at line 170 of file tmop_tools.hpp.

◆ surf_fit_adapt_count

int mfem::TMOPNewtonSolver::surf_fit_adapt_count = 0
mutableprotected

Definition at line 191 of file tmop_tools.hpp.

◆ surf_fit_adapt_count_limit

int mfem::TMOPNewtonSolver::surf_fit_adapt_count_limit = 10
mutableprotected

Definition at line 192 of file tmop_tools.hpp.

◆ surf_fit_avg_err

real_t mfem::TMOPNewtonSolver::surf_fit_avg_err
mutableprotected

Definition at line 186 of file tmop_tools.hpp.

◆ surf_fit_avg_err_prvs

real_t mfem::TMOPNewtonSolver::surf_fit_avg_err_prvs = 10000.0
mutableprotected

Definition at line 185 of file tmop_tools.hpp.

◆ surf_fit_coeff_update

bool mfem::TMOPNewtonSolver::surf_fit_coeff_update = false
mutableprotected

Definition at line 187 of file tmop_tools.hpp.

◆ surf_fit_converge_error

bool mfem::TMOPNewtonSolver::surf_fit_converge_error = false
protected

Definition at line 194 of file tmop_tools.hpp.

◆ surf_fit_err_rel_change_limit

real_t mfem::TMOPNewtonSolver::surf_fit_err_rel_change_limit = 0.001
protected

Definition at line 189 of file tmop_tools.hpp.

◆ surf_fit_max_err

real_t mfem::TMOPNewtonSolver::surf_fit_max_err
protected

Definition at line 186 of file tmop_tools.hpp.

◆ surf_fit_max_err_limit

real_t mfem::TMOPNewtonSolver::surf_fit_max_err_limit = -1.0
protected

Definition at line 188 of file tmop_tools.hpp.

◆ surf_fit_scale_factor

real_t mfem::TMOPNewtonSolver::surf_fit_scale_factor = 0.0
protected

Definition at line 190 of file tmop_tools.hpp.

◆ surf_fit_weight_limit

real_t mfem::TMOPNewtonSolver::surf_fit_weight_limit = 1e10
mutableprotected

Definition at line 193 of file tmop_tools.hpp.

◆ temp_mt

MemoryType mfem::TMOPNewtonSolver::temp_mt = MemoryType::DEFAULT
protected

Definition at line 208 of file tmop_tools.hpp.

◆ x_0

GridFunction mfem::TMOPNewtonSolver::x_0
mutableprotected

Definition at line 178 of file tmop_tools.hpp.


The documentation for this class was generated from the following files: