version 0.4.1
loadcontrol.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
13#include <dune/common/hybridutilities.hh>
14
19
20namespace Ikarus {
21
22template <typename NLS>
23class LoadControl;
24
30{
31 int loadSteps{};
32 double tbegin{};
33 double tEnd{};
34};
35
44template <typename NLS>
45auto createControlRoutine(const LoadControlConfig& config, NLS&& nonlinearSolver) {
46 return LoadControl(std::forward<NLS>(nonlinearSolver), config.loadSteps, std::array{config.tbegin, config.tEnd});
47}
48
58template <typename NLS>
59class LoadControl : public ControlRoutineBase<typename NLS::DifferentiableFunction>
60{
61public:
63 constexpr auto name() const { return std::string("Load Control Method"); }
64
72 LoadControl(const std::shared_ptr<NLS>& nonLinearSolver, int loadSteps, const std::array<double, 2>& tbeginEnd)
73 : nonLinearSolver_{nonLinearSolver},
74 loadSteps_{loadSteps},
75 parameterBegin_{tbeginEnd[0]},
76 parameterEnd_{tbeginEnd[1]},
77 stepSize_{(parameterEnd_ - parameterBegin_) / loadSteps_} {}
78
84 ControlInformation run(typename NLS::Domain& x);
85
86 /* \brief returns the nonlinear solver */
87 NLS& nonLinearSolver() { return *nonLinearSolver_; }
88
89private:
90 std::shared_ptr<NLS> nonLinearSolver_;
91 int loadSteps_;
92 double parameterBegin_;
93 double parameterEnd_;
94 double stepSize_;
95};
96
97} // namespace Ikarus
98
Implementation of the observer design pattern with broadcasters.
Defines the ControlInformation structure for storing control results.
Base for all control routines.
Implementation of the run function.
Factory for controlroutines.
Definition: assemblermanipulatorbuildingblocks.hh:22
auto createControlRoutine(const LoadControlConfig &config, NLS &&nonlinearSolver)
Function to create a load control instance.
Definition: loadcontrol.hh:45
Structure containing information about the control results.
Definition: controlinfos.hh:22
Base for all control routines. Defines the message interface that can be broadcasted to listeners.
Definition: controlroutinebase.hh:27
The LoadControl control routine increases the parameter of the fe requirements given in run function ...
Definition: loadcontrol.hh:60
LoadControl(const std::shared_ptr< NLS > &nonLinearSolver, int loadSteps, const std::array< double, 2 > &tbeginEnd)
Constructor for LoadControl.
Definition: loadcontrol.hh:72
NLS & nonLinearSolver()
Definition: loadcontrol.hh:87
constexpr auto name() const
The name of the LoadControl method.
Definition: loadcontrol.hh:63
ControlInformation run(typename NLS::Domain &x)
Executes the LoadControl routine.
Definition: loadcontrol.inl:14
Config for the Load-Control control routine.
Definition: loadcontrol.hh:30
double tEnd
Definition: loadcontrol.hh:33
int loadSteps
Definition: loadcontrol.hh:31
double tbegin
Definition: loadcontrol.hh:32