21#include <dune/common/exceptions.hh>
41 Eigen::VectorX<double>
DD;
50 DD.resizeLike(firstParameter);
54 dfdDD.resizeLike(firstParameter);
90 const auto root = sqrt(args.
DD.squaredNorm() + psi.value() * psi.value() * args.
Dlambda * args.
Dlambda);
95 DUNE_THROW(Dune::InvalidStateException,
"You have to call initialPrediction first. Otherwise psi is not defined");
111 template <
typename F>
113 typename F::Domain::SolutionVectorType>)
116 using JacobianType = std::remove_cvref_t<typename F::Traits::template Range<1>>;
117 static_assert((traits::isSpecializationTypeAndNonTypes<Eigen::Matrix, JacobianType>::value) or
118 (traits::isSpecializationTypeNonTypeAndType<Eigen::SparseMatrix, JacobianType>::value),
119 "Linear solver not implemented for the chosen derivative type of the non-linear operator");
121 if constexpr (traits::isSpecializationTypeAndNonTypes<Eigen::Matrix, JacobianType>::value)
126 req.parameter() = 1.0;
127 decltype(
auto) R = residual(req);
128 decltype(
auto) K = derivative(residual)(req);
131 linearSolver.analyzePattern(K);
132 linearSolver.factorize(K);
133 linearSolver.solve(args.
DD, -R);
135 const auto DD2 = args.
DD.squaredNorm();
138 auto s = sqrt(psi.value() * psi.value() + DD2);
143 req.globalSolution() = args.
DD;
144 req.parameter() = args.
Dlambda;
157 template <
typename F>
159 req.globalSolution() += args.
DD;
160 req.parameter() += args.
Dlambda;
164 constexpr auto name()
const {
return std::string(
"Arc length"); }
167 std::optional<double> psi;
193 args.
dfdDD.setZero();
207 template <
typename F>
210 req.parameter() = args.
Dlambda;
223 template <
typename F>
225 req.parameter() += args.
Dlambda;
229 constexpr auto name()
const {
return std::string(
"Load Control"); }
252 : controlledIndices{std::move(p_controlledIndices)} {}
262 const auto controlledDOFsNorm = args.
DD(controlledIndices).norm();
263 args.
f = controlledDOFsNorm - args.
stepSize;
265 args.
dfdDD.setZero();
266 args.
dfdDD(controlledIndices) = args.
DD(controlledIndices) / controlledDOFsNorm;
279 template <
typename F>
281 args.
DD(controlledIndices).array() = args.
stepSize;
282 req.globalSolution() = args.
DD;
295 template <
typename F>
297 req.globalSolution() += args.
DD;
301 constexpr auto name()
const {
return std::string(
"Displacement Control"); }
304 std::vector<int> controlledIndices;
Contains stl-like type traits.
Collection of fallback default functions.
Type-erased linear solver with templated scalar type.
void initialPrediction(typename F::Domain &req, F &residual, SubsidiaryArgs &args)
Performs the initial prediction for the standard arc-length method.
Definition: pathfollowingfunctions.hh:114
Definition: assemblermanipulatorbuildingblocks.hh:22
LinearSolverTemplate< double > LinearSolver
Definition: linearsolver.hh:235
SolverTypeTag
Enumeration representing different solver types.
Definition: linearsolver.hh:31
Structure containing arguments for subsidiary functions.
Definition: pathfollowingfunctions.hh:39
double Dlambda
The increment in the load factor.
Definition: pathfollowingfunctions.hh:42
double dfdDlambda
The derivative of the subsidiary function with respect to Dlambda.
Definition: pathfollowingfunctions.hh:45
int currentStep
The current step index in the control routine.
Definition: pathfollowingfunctions.hh:46
void setZero(const Concepts::EigenType auto &firstParameter)
Definition: pathfollowingfunctions.hh:48
double f
The value of the subsidiary function.
Definition: pathfollowingfunctions.hh:43
double stepSize
The step size in the control routine.
Definition: pathfollowingfunctions.hh:40
Eigen::VectorX< double > dfdDD
The derivative of the subsidiary function with respect to DD.
Definition: pathfollowingfunctions.hh:44
Eigen::VectorX< double > DD
The vector representing the solution increment.
Definition: pathfollowingfunctions.hh:41
Structure representing the subsidiary function for the standard arc-length method.
Definition: pathfollowingfunctions.hh:79
void operator()(SubsidiaryArgs &args) const
Evaluates the subsidiary function for the standard arc-length method.
Definition: pathfollowingfunctions.hh:88
void intermediatePrediction(typename F::Domain &req, F &residual, SubsidiaryArgs &args)
Performs intermediate prediction for the standard arc-length method.
Definition: pathfollowingfunctions.hh:158
constexpr auto name() const
The name of the PathFollowing method.
Definition: pathfollowingfunctions.hh:164
Structure representing the subsidiary function for the load control method.
Definition: pathfollowingfunctions.hh:183
constexpr auto name() const
The name of the PathFollowing method.
Definition: pathfollowingfunctions.hh:229
void initialPrediction(typename F::Domain &req, F &residual, SubsidiaryArgs &args)
Performs initial prediction for the load control method.
Definition: pathfollowingfunctions.hh:208
void intermediatePrediction(typename F::Domain &req, F &residual, SubsidiaryArgs &args)
Performs intermediate prediction for the load control method.
Definition: pathfollowingfunctions.hh:224
void operator()(SubsidiaryArgs &args) const
Evaluates the subsidiary function for the load control method.
Definition: pathfollowingfunctions.hh:191
Structure representing the subsidiary function for the displacement control method.
Definition: pathfollowingfunctions.hh:245
constexpr auto name() const
The name of the PathFollowing method.
Definition: pathfollowingfunctions.hh:301
void intermediatePrediction(typename F::Domain &req, F &residual, SubsidiaryArgs &args)
Performs intermediate prediction for the displacement control method.
Definition: pathfollowingfunctions.hh:296
void initialPrediction(typename F::Domain &req, F &residual, SubsidiaryArgs &args)
Performs initial prediction for the displacement control method.
Definition: pathfollowingfunctions.hh:280
void operator()(SubsidiaryArgs &args) const
Evaluates the subsidiary function for the displacement control method.
Definition: pathfollowingfunctions.hh:261
DisplacementControl(std::vector< int > p_controlledIndices)
Constructor for DisplacementControl.
Definition: pathfollowingfunctions.hh:251
Concept to check if a type is derived from Eigen::MatrixBase.
Definition: utils/concepts.hh:46
Concept to check if a linear solver implements all the needed functions for given vector and matrix t...
Definition: utils/concepts.hh:223