This class implements a damper that limits the change in the Jacobian of elements. More...
#include <ElementJacobianDamper.h>
Public Types | |
typedef DataFileName | DataFileParameterType |
Public Member Functions | |
ElementJacobianDamper (const InputParameters ¶meters) | |
virtual void | initialSetup () override |
virtual Real | computeDamping (const NumericVector< Number > &, const NumericVector< Number > &update) override |
Computes this Damper's damping. More... | |
void | checkMinDamping (const Real cur_damping) const |
virtual bool | enabled () const |
std::shared_ptr< MooseObject > | getSharedPtr () |
std::shared_ptr< const MooseObject > | getSharedPtr () const |
MooseApp & | getMooseApp () const |
const std::string & | type () const |
virtual const std::string & | name () const |
std::string | typeAndName () const |
std::string | errorPrefix (const std::string &error_type) const |
void | callMooseError (std::string msg, const bool with_prefix) const |
MooseObjectParameterName | uniqueParameterName (const std::string ¶meter_name) const |
const InputParameters & | parameters () const |
MooseObjectName | uniqueName () const |
const T & | getParam (const std::string &name) const |
std::vector< std::pair< T1, T2 > > | getParam (const std::string ¶m1, const std::string ¶m2) const |
const T * | queryParam (const std::string &name) const |
const T & | getRenamedParam (const std::string &old_name, const std::string &new_name) const |
T | getCheckedPointerParam (const std::string &name, const std::string &error_string="") const |
bool | isParamValid (const std::string &name) const |
bool | isParamSetByUser (const std::string &nm) const |
void | paramError (const std::string ¶m, Args... args) const |
void | paramWarning (const std::string ¶m, Args... args) const |
void | paramInfo (const std::string ¶m, Args... args) const |
void | connectControllableParams (const std::string ¶meter, const std::string &object_type, const std::string &object_name, const std::string &object_parameter) const |
void | mooseError (Args &&... args) const |
void | mooseErrorNonPrefixed (Args &&... args) const |
void | mooseDocumentedError (const std::string &repo_name, const unsigned int issue_num, Args &&... args) const |
void | mooseWarning (Args &&... args) const |
void | mooseWarningNonPrefixed (Args &&... args) const |
void | mooseDeprecated (Args &&... args) const |
void | mooseInfo (Args &&... args) const |
std::string | getDataFileName (const std::string ¶m) const |
std::string | getDataFileNameByName (const std::string &relative_path) const |
std::string | getDataFilePath (const std::string &relative_path) const |
virtual void | timestepSetup () |
virtual void | jacobianSetup () |
virtual void | residualSetup () |
virtual void | subdomainSetup () |
virtual void | customSetup (const ExecFlagType &) |
const ExecFlagEnum & | getExecuteOnEnum () const |
virtual void | meshChanged () |
const Parallel::Communicator & | comm () const |
processor_id_type | n_processors () const |
processor_id_type | processor_id () const |
Static Public Member Functions | |
static InputParameters | validParams () |
Public Attributes | |
const ConsoleStream | _console |
Protected Member Functions | |
T & | declareRestartableData (const std::string &data_name, Args &&... args) |
ManagedValue< T > | declareManagedRestartableDataWithContext (const std::string &data_name, void *context, Args &&... args) |
const T & | getRestartableData (const std::string &data_name) const |
T & | declareRestartableDataWithContext (const std::string &data_name, void *context, Args &&... args) |
T & | declareRecoverableData (const std::string &data_name, Args &&... args) |
T & | declareRestartableDataWithObjectName (const std::string &data_name, const std::string &object_name, Args &&... args) |
T & | declareRestartableDataWithObjectNameWithContext (const std::string &data_name, const std::string &object_name, void *context, Args &&... args) |
std::string | restartableName (const std::string &data_name) const |
Protected Attributes | |
THREAD_ID | _tid |
Thread ID. More... | |
Assembly & | _assembly |
const QBase *const & | _qrule |
Quadrature rule. More... | |
const MooseArray< Real > & | _JxW |
Transformed Jacobian weights. More... | |
FEProblemBase & | _fe_problem |
The FE problem. More... | |
MooseSharedPointer< DisplacedProblem > | _displaced_problem |
The displaced problem. More... | |
MooseMesh * | _mesh |
The displaced mesh. More... | |
std::vector< MooseVariable * > | _disp_var |
The displacement variables. More... | |
unsigned int | _ndisp |
The number of displacement variables. More... | |
std::vector< VariableValue > | _disp_incr |
The current Newton increment in the displacement variables. More... | |
const Real | _max_jacobian_diff |
Maximum allowed relative increment in Jacobian. More... | |
SubProblem & | _subproblem |
SystemBase & | _sys |
const Real & | _min_damping |
const bool & | _enabled |
MooseApp & | _app |
const std::string | _type |
const std::string | _name |
const InputParameters & | _pars |
Factory & | _factory |
ActionFactory & | _action_factory |
const ExecFlagEnum & | _execute_enum |
const ExecFlagType & | _current_execute_flag |
MooseApp & | _restartable_app |
const std::string | _restartable_system_name |
const THREAD_ID | _restartable_tid |
const bool | _restartable_read_only |
FEProblemBase & | _mci_feproblem |
const Parallel::Communicator & | _communicator |
This class implements a damper that limits the change in the Jacobian of elements.
Definition at line 24 of file ElementJacobianDamper.h.
ElementJacobianDamper::ElementJacobianDamper | ( | const InputParameters & | parameters | ) |
Definition at line 35 of file ElementJacobianDamper.C.
|
overridevirtual |
Computes this Damper's damping.
Implements GeneralDamper.
Definition at line 66 of file ElementJacobianDamper.C.
|
overridevirtual |
|
static |
Definition at line 21 of file ElementJacobianDamper.C.
|
protected |
Definition at line 42 of file ElementJacobianDamper.h.
Referenced by computeDamping().
|
protected |
The current Newton increment in the displacement variables.
Definition at line 66 of file ElementJacobianDamper.h.
Referenced by ElementJacobianDamper().
|
protected |
The displacement variables.
Definition at line 60 of file ElementJacobianDamper.h.
Referenced by computeDamping(), and ElementJacobianDamper().
|
protected |
The displaced problem.
Definition at line 54 of file ElementJacobianDamper.h.
Referenced by ElementJacobianDamper().
|
protected |
The FE problem.
Definition at line 51 of file ElementJacobianDamper.h.
|
protected |
Transformed Jacobian weights.
Definition at line 48 of file ElementJacobianDamper.h.
Referenced by computeDamping().
|
protected |
Maximum allowed relative increment in Jacobian.
Definition at line 69 of file ElementJacobianDamper.h.
Referenced by computeDamping().
|
protected |
The displaced mesh.
Definition at line 57 of file ElementJacobianDamper.h.
Referenced by computeDamping(), and ElementJacobianDamper().
|
protected |
The number of displacement variables.
Definition at line 63 of file ElementJacobianDamper.h.
Referenced by computeDamping(), and ElementJacobianDamper().
|
protected |
Quadrature rule.
Definition at line 45 of file ElementJacobianDamper.h.
Referenced by computeDamping().
|
protected |
Thread ID.
Definition at line 41 of file ElementJacobianDamper.h.
Referenced by ElementJacobianDamper().