Loading [MathJax]/extensions/MathZoom.js
OGS
ConvergenceCriterionPerComponentResidual.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <vector>
14
17
18namespace NumLib
19{
20class LocalToGlobalIndexMap;
21
30{
31public:
33 std::vector<double>&& absolute_tolerances,
34 std::vector<double>&& relative_tolerances,
35 std::vector<double>&& damping_alpha,
36 bool daming_alpha_switch,
37 const MathLib::VecNormType norm_type);
38
39 bool hasDeltaXCheck() const override { return true; }
40 bool hasResidualCheck() const override { return true; }
41 bool hasNonNegativeDamping() const override
42 {
44 }
45
48 void checkDeltaX(const GlobalVector& minus_delta_x,
49 GlobalVector const& x) override;
50 void checkResidual(const GlobalVector& residual) override;
51 double getDampingFactor(GlobalVector const& minus_delta_x,
52 GlobalVector const& x,
53 double damping_orig) override;
54
55 void setDOFTable(const LocalToGlobalIndexMap& dof_table,
56 MeshLib::Mesh const& mesh) override;
57
58private:
59 const std::vector<double> _abstols;
60 const std::vector<double> _reltols;
62 MeshLib::Mesh const* _mesh = nullptr;
63 std::vector<double> _residual_norms_0;
64 const std::vector<double> _damping_alpha;
66};
67
68std::unique_ptr<ConvergenceCriterionPerComponentResidual>
70 BaseLib::ConfigTree const& config);
71
72} // namespace NumLib
Global vector based on Eigen vector.
Definition EigenVector.h:25
ConvergenceCriterionPerComponentResidual(std::vector< double > &&absolute_tolerances, std::vector< double > &&relative_tolerances, std::vector< double > &&damping_alpha, bool daming_alpha_switch, const MathLib::VecNormType norm_type)
double getDampingFactor(GlobalVector const &minus_delta_x, GlobalVector const &x, double damping_orig) override
void setDOFTable(const LocalToGlobalIndexMap &dof_table, MeshLib::Mesh const &mesh) override
Sets the d.o.f. table used to extract data for a specific component.
void checkResidual(const GlobalVector &residual) override
Check if the residual satisfies the convergence criterion.
void checkDeltaX(const GlobalVector &minus_delta_x, GlobalVector const &x) override
std::unique_ptr< ConvergenceCriterionPerComponentResidual > createConvergenceCriterionPerComponentResidual(const BaseLib::ConfigTree &config)