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>,
58 Concepts::AdaptiveStepSizingStrategy<ASS, NonLinearSolverInformation, SubsidiaryArgs,
59 std::remove_cvref_t<typename NLS::DifferentiableFunction>> and
60 Concepts::NonLinearSolverCheckForPathFollowing<NLS>;
64 struct PathFollowingStateFactory
67 using SignatureTraits =
typename F::Traits;
68 using Domain =
typename SignatureTraits::Domain;
71 using type = PathFollowingState<Domain>;
84template <
typename NLS,
typename PF,
typename ASS>
85requires(Impl::checkPathFollowingTemplates<NLS, PF, ASS>())
95template <
typename PF_ = ArcLength,
typename ASS_ = AdaptiveStepSizing::NoOp>
108PathFollowingConfig(
int,
double) -> PathFollowingConfig<>;
110template <
typename PF>
111PathFollowingConfig(
int,
double, PF) -> PathFollowingConfig<PF>;
113template <
typename PF,
typename ASS>
114PathFollowingConfig(
int,
double, PF, ASS) -> PathFollowingConfig<PF, ASS>;
116template <
typename ASS>
117PathFollowingConfig(
int,
double, ArcLength, ASS) -> PathFollowingConfig<ArcLength, ASS>;
129template <
typename NLS,
typename PFConfig>
130requires traits::isSpecialization<PathFollowingConfig, std::remove_cvref_t<PFConfig>>::value
133 std::forward<NLS>(nonlinearSolver), config.steps, config.stepSize, config.pathFollowingFunction,
134 config.adaptiveStepSizingFunction);
166template <
typename NLS,
typename PF = ArcLength,
typename ASS = AdaptiveStepSizing::NoOp>
167requires(Impl::checkPathFollowingTemplates<NLS, PF, ASS>())
174 constexpr auto name()
const {
return std::string(
"Path following with " + pathFollowingType_.name()); }
185 ASS adaptiveStepSizing = {})
186 : nonLinearSolver_{nls},
189 pathFollowingType_{pathFollowingType},
190 adaptiveStepSizing_{adaptiveStepSizing} {}
199 [[nodiscard]] ControlInformation run(
typename NLS::Domain& d);
205 std::shared_ptr<NLS> nonLinearSolver_;
209 PF pathFollowingType_;
210 ASS adaptiveStepSizing_;
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