version 0.4.1
pathfollowing.hh
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2021-2025 The Ikarus Developers mueller@ibb.uni-stuttgart.de
2// SPDX-License-Identifier: LGPL-3.0-or-later
3
9#pragma once
10
11#include <memory>
12
22
23namespace Ikarus {
24
30template <typename D>
32{
33 using Domain = D;
34
35 const Domain& domain;
37 int loadStep{};
38 double stepSize{};
39};
40
41namespace Impl {
54 template <typename NLS, typename PF = ArcLength, typename ASS>
55 consteval bool checkPathFollowingTemplates() {
56 return Concepts::PathFollowingStrategy<PF, std::remove_cvref_t<typename NLS::DifferentiableFunction>,
57 SubsidiaryArgs> and
58 Concepts::AdaptiveStepSizingStrategy<ASS, NonLinearSolverInformation, SubsidiaryArgs,
59 std::remove_cvref_t<typename NLS::DifferentiableFunction>> and
60 Concepts::NonLinearSolverCheckForPathFollowing<NLS>;
61 }
62
63 template <typename F>
64 struct PathFollowingStateFactory
65 {
66 private:
67 using SignatureTraits = typename F::Traits;
68 using Domain = typename SignatureTraits::Domain;
69
70 public:
71 using type = PathFollowingState<Domain>;
72 };
73
74} // namespace Impl
75
81template <typename F>
83
84template <typename NLS, typename PF, typename ASS>
85requires(Impl::checkPathFollowingTemplates<NLS, PF, ASS>())
86class PathFollowing;
87
95template <typename PF_ = ArcLength, typename ASS_ = AdaptiveStepSizing::NoOp>
97{
98 using PF = PF_;
99 using ASS = ASS_;
100
101 int steps{};
102 double stepSize{};
105};
106
107#ifndef DOXYGEN
108PathFollowingConfig(int, double) -> PathFollowingConfig<>;
109
110template <typename PF>
111PathFollowingConfig(int, double, PF) -> PathFollowingConfig<PF>;
112
113template <typename PF, typename ASS>
114PathFollowingConfig(int, double, PF, ASS) -> PathFollowingConfig<PF, ASS>;
115
116template <typename ASS>
117PathFollowingConfig(int, double, ArcLength, ASS) -> PathFollowingConfig<ArcLength, ASS>;
118#endif
119
129template <typename NLS, typename PFConfig>
130requires traits::isSpecialization<PathFollowingConfig, std::remove_cvref_t<PFConfig>>::value
131auto createControlRoutine(PFConfig&& config, NLS&& nonlinearSolver) {
132 return PathFollowing<typename std::remove_cvref_t<NLS>::element_type, typename PFConfig::PF, typename PFConfig::ASS>(
133 std::forward<NLS>(nonlinearSolver), config.steps, config.stepSize, config.pathFollowingFunction,
134 config.adaptiveStepSizingFunction);
135}
136
166template <typename NLS, typename PF = ArcLength, typename ASS = AdaptiveStepSizing::NoOp>
167requires(Impl::checkPathFollowingTemplates<NLS, PF, ASS>())
168class PathFollowing : public ControlRoutineBase<typename NLS::DifferentiableFunction,
170
171{
172public:
174 constexpr auto name() const { return std::string("Path following with " + pathFollowingType_.name()); }
175
184 PathFollowing(const std::shared_ptr<NLS>& nls, int steps, double stepSize, PF pathFollowingType = ArcLength{},
185 ASS adaptiveStepSizing = {})
186 : nonLinearSolver_{nls},
187 steps_{steps},
188 stepSize_{stepSize},
189 pathFollowingType_{pathFollowingType},
190 adaptiveStepSizing_{adaptiveStepSizing} {}
191
199 [[nodiscard]] ControlInformation run(typename NLS::Domain& d);
200
201 /* \brief returns the nonlinear solver */
202 NLS& nonLinearSolver() { return *nonLinearSolver_; }
203
204private:
205 std::shared_ptr<NLS> nonLinearSolver_;
206
207 int steps_;
208 double stepSize_;
209 PF pathFollowingType_;
210 ASS adaptiveStepSizing_;
211 SubsidiaryArgs subsidiaryArgs_;
212};
213
214} // namespace Ikarus
215
Contains the generic DifferentiableFunctionFactory class.
Contains the generic NonlinearSolverFactory class.
Enums for observer messages.
Implementation of the run function.
Defines the ControlInformation structure for storing control results.
Base for all control routines.
Contains the AdaptiveStepSizing namespace with strategies for adaptive step sizing.
Factory for controlroutines.
Defines structures and methods related to subsidiary functions for control routines.
Definition: assemblermanipulatorbuildingblocks.hh:22
auto createControlRoutine(const LoadControlConfig &config, NLS &&nonlinearSolver)
Function to create a load control instance.
Definition: loadcontrol.hh:45
Base for all control routines. Defines the message interface that can be broadcasted to listeners.
Definition: controlroutinebase.hh:27
State for path following control routine.
Definition: pathfollowing.hh:32
double stepSize
Definition: pathfollowing.hh:38
const Domain & domain
Definition: pathfollowing.hh:35
int loadStep
Definition: pathfollowing.hh:37
D Domain
Definition: pathfollowing.hh:33
const SubsidiaryArgs & subsidiaryArgs
Definition: pathfollowing.hh:36
The PathFollowing control routine for path-following analysis.
Definition: pathfollowing.hh:171
constexpr auto name() const
The name of the PathFollowing method.
Definition: pathfollowing.hh:174
NLS & nonLinearSolver()
Definition: pathfollowing.hh:202
PathFollowing(const std::shared_ptr< NLS > &nls, int steps, double stepSize, PF pathFollowingType=ArcLength{}, ASS adaptiveStepSizing={})
Constructor for PathFollowing.
Definition: pathfollowing.hh:184
Config for the Path-Following control routine.
Definition: pathfollowing.hh:97
ASS adaptiveStepSizingFunction
Definition: pathfollowing.hh:104
double stepSize
Definition: pathfollowing.hh:102
PF pathFollowingFunction
Definition: pathfollowing.hh:103
ASS_ ASS
Definition: pathfollowing.hh:99
PF_ PF
Definition: pathfollowing.hh:98
int steps
Definition: pathfollowing.hh:101
Structure containing arguments for subsidiary functions.
Definition: pathfollowingfunctions.hh:39
Structure representing the subsidiary function for the standard arc-length method.
Definition: pathfollowingfunctions.hh:79