13#include <dune/common/hybridutilities.hh>
22template <
typename NLS>
44template <
typename NLS>
46 return LoadControl(std::forward<NLS>(nonlinearSolver), config.
loadSteps, std::array{config.tbegin, config.tEnd});
58template <
typename NLS>
63 constexpr auto name()
const {
return std::string(
"Load Control Method"); }
74 loadSteps_{loadSteps},
75 parameterBegin_{tbeginEnd[0]},
76 parameterEnd_{tbeginEnd[1]},
77 stepSize_{(parameterEnd_ - parameterBegin_) / loadSteps_} {}
90 std::shared_ptr<NLS> nonLinearSolver_;
92 double parameterBegin_;
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