24template <
typename F,
typename LS = utils::SolverDefault,
typename UF = utils::UpdateDefault>
37template <
typename LS = utils::SolverDefault,
typename UF = utils::UpdateDefault>
46 template <
typename UF2>
69template <
typename LS,
typename UF>
85template <
typename F,
typename NRConfig>
86requires traits::isSpecialization<NewtonRaphsonWithSubsidiaryFunctionConfig, std::remove_cvref_t<NRConfig>>::value
89 using UF = std::remove_cvref_t<NRConfig>::UpdateFunction;
90 auto solverFactory = []<
class F2, class LS2, class UF2>(F2&& f2, LS2&& ls, UF2&& uf) {
91 return std::make_shared<NewtonRaphsonWithSubsidiaryFunction<std::remove_cvref_t<F2>, std::remove_cvref_t<LS2>,
92 std::remove_cvref_t<UF2>>>(f2, std::forward<LS2>(ls),
93 std::forward<UF2>(uf));
96 if constexpr (std::remove_cvref_t<F>::nDerivatives == 2) {
97 auto solver = solverFactory(derivative(f), std::forward<NRConfig>(config).linearSolver,
98 std::forward<NRConfig>(config).updateFunction);
99 solver->setup(config.parameters);
102 static_assert(std::remove_cvref_t<F>::nDerivatives >= 1,
103 "The number of derivatives in the differentiable function have to be more than 0");
105 solverFactory(f, std::forward<NRConfig>(config).linearSolver, std::forward<NRConfig>(config).updateFunction);
108 solver->setup(std::forward<NRConfig>(config).parameters);
123template <
typename F,
typename LS,
typename UF>
130 using Domain =
typename SignatureTraits::Domain;
146 template <
typename LS2 = LS,
typename UF2 = UF>
148 UF2&& updateFunction = {})
150 jacobianFunction_{derivative(residualFunction_)},
151 linearSolver_{std::forward<LS2>(linearSolver)},
152 updateFunction_{std::forward<UF2>(updateFunction)} {}
171 template <
typename Subs
idiaryType>
173 "The solve method returns information of the solution process. You should store this information and check if "
181 solverInformation.
success =
true;
183 auto& lambda = req.parameter();
184 auto& x = req.globalSolution();
190 auto lambdaDummy = lambda;
194 decltype(
auto) rx = residualFunction_(req);
195 const auto Fext0 = (-rx).eval();
196 lambda = lambdaDummy;
199 rx = residualFunction_(req);
200 decltype(
auto) Ax = jacobianFunction_(req);
202 Eigen::VectorXd deltaD;
203 deltaD.resizeLike(rx);
206 subsidiaryArgs.
dfdDD.resizeLike(Fext0);
208 subsidiaryFunction(subsidiaryArgs);
209 auto rNorm = sqrt(rx.dot(rx));
210 decltype(rNorm) dNorm;
213 linearSolver_.analyzePattern(Ax);
217 Eigen::MatrixX2<double> residual2d, sol2d;
220 while (rNorm > settings_.
tol && iter < settings_.
maxIter) {
224 residual2d.resize(rx.rows(), 2);
225 residual2d << -rx, Fext0;
226 sol2d.resize(rx.rows(), 2);
229 linearSolver_.factorize(Ax);
230 linearSolver_.solve(sol2d, residual2d);
232 sol2d = linearSolver_(residual2d, Ax);
235 subsidiaryFunction(subsidiaryArgs);
237 const double deltalambda = (-subsidiaryArgs.
f - subsidiaryArgs.
dfdDD.dot(sol2d.col(0))) /
239 deltaD = sol2d.col(0) + deltalambda * sol2d.col(1);
241 solverState.dNorm =
static_cast<double>(dNorm);
242 solverState.rNorm =
static_cast<double>(rNorm);
243 solverState.iteration = iter;
246 updateFunction_(x, deltaD);
247 updateFunction_(subsidiaryArgs.
DD, deltaD);
249 lambda += deltalambda;
250 subsidiaryArgs.
Dlambda += deltalambda;
252 dNorm = sqrt(deltaD.dot(deltaD) + deltalambda * deltalambda);
253 rx = residualFunction_(req);
254 Ax = jacobianFunction_(req);
255 rNorm = sqrt(rx.dot(rx) + subsidiaryArgs.
f * subsidiaryArgs.
f);
266 solverInformation.
success =
false;
273 return solverInformation;
284 typename DifferentiableFunction::Derivative jacobianFunction_;
285 std::remove_cvref_t<CorrectionType> correction_;
300template <
typename F,
typename LS = utils::SolverDefault,
typename UF = utils::UpdateDefault>
302 return std::make_shared<NewtonRaphsonWithSubsidiaryFunction<F, LS, UF>>(f, std::forward<LS>(linearSolver),
303 std::move(updateFunction));
306template <
typename F,
typename LS = utils::SolverDefault,
typename UF = utils::UpdateDefault>
Base for all nonlinear solvers.
State for all nonlinear solvers.
Implementation of the solver information returned by the nonlinear solvers.
Enums for observer messages.
Implementation of the observer design pattern with broadcasters.
Defines structures and methods related to subsidiary functions for control routines.
NonLinearSolverMessages
Enum class defining non-linear solver-related messages.
Definition: broadcastermessages.hh:22
Definition: assemblermanipulatorbuildingblocks.hh:22
NewtonRaphsonWithSubsidiaryFunction(const F &f, LS &&linearSolver={}, UF &&updateFunction={}) -> NewtonRaphsonWithSubsidiaryFunction< F, std::remove_cvref_t< LS >, std::remove_cvref_t< UF > >
LinearSolverTemplate< double > LinearSolver
Definition: linearsolver.hh:235
::value auto createNonlinearSolver(NRConfig &&config, F &&f)
Function to create a NewtonRaphson solver instance.
Definition: newtonraphson.hh:82
auto makeNewtonRaphsonWithSubsidiaryFunction(const F &f, LS &&linearSolver={}, UF &&updateFunction={})
Function to create a NewtonRaphson with subsidiary function solver instance.
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:301
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
double f
The value of the subsidiary function.
Definition: pathfollowingfunctions.hh:43
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
Newton-Raphson solver with subsidiary function.
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:125
NewtonRaphsonWithSubsidiaryFunctionSettings Settings
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:127
auto & residual()
Access the residual function.
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:280
void setup(const Settings &settings)
Setup the Newton-Raphson solver with subsidiary function.
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:159
typename F::Traits SignatureTraits
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:128
NonLinearSolverInformation solve(Domain &req, SubsidiaryType &&subsidiaryFunction, SubsidiaryArgs &subsidiaryArgs)
Solve the nonlinear system using the Newton-Raphson method with subsidiary function.
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:175
static constexpr bool isLinearSolver
Type representing the update function.
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:134
typename SignatureTraits::template Range< 0 > CorrectionType
Type of the correction of x += deltaX.
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:131
UF UpdateFunctionType
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:137
typename SignatureTraits::template Range< 1 > JacobianType
Compile-time boolean indicating if the linear solver satisfies the non-linear solver concept.
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:133
typename SignatureTraits::Domain Domain
Type representing the parameter vector of the Function.
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:130
NewtonRaphsonWithSubsidiaryFunction(const DifferentiableFunction &residual, LS2 &&linearSolver={}, UF2 &&updateFunction={})
Constructor for NewtonRaphsonWithSubsidiaryFunction.
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:147
F DifferentiableFunction
Type of the non-linear operator.
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:138
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:28
double tol
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:29
int maxIter
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:30
Settings for the Newton-Raphson solver with subsidiary function.
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:39
LS linearSolver
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:43
UF updateFunction
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:44
LS LinearSolver
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:40
NewtonRaphsonWithSubsidiaryFunctionSettings parameters
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:42
auto rebindUpdateFunction(UF2 &&updateFunction) const
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:47
UF UpdateFunction
Definition: newtonraphsonwithscalarsubsidiaryfunction.hh:41
Base for all nonlinear solvers. Defines the message interface that can be broadcasted to listeners.
Definition: nonlinearsolverbase.hh:27
State for nonlinear solvers.
Definition: nonlinearsolverstate.hh:23
const Domain & domain
Definition: nonlinearsolverstate.hh:27
Information about the result of a non-linear solver.
Definition: solverinfos.hh:21
double correctionNorm
Definition: solverinfos.hh:30
int iterations
Definition: solverinfos.hh:31
double residualNorm
Definition: solverinfos.hh:29
bool success
Definition: solverinfos.hh:28
Default functor for solving operations.
Definition: defaultfunctions.hh:26
Concept to check if a linear solver implements all the needed functions for given vector and matrix t...
Definition: utils/concepts.hh:223