version 0.4.1
controlroutinefactory.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
12
13namespace Ikarus {
14
25{
38 template <typename CRConfig, typename NLS, typename Assembler>
40 static auto create(const CRConfig& config, NLS&& nonlinearSolver, Assembler&& assembler) {
41 auto cr = createControlRoutine(std::move(config), std::forward<NLS>(nonlinearSolver));
42
43 for (auto& fe : assembler->finiteElements()) {
44 fe.template subscribeTo<NonLinearSolverMessages>(nonlinearSolver);
45 fe.template subscribeTo<ControlMessages>(cr);
46 }
47 return cr;
48 }
49};
50
51} // namespace Ikarus
Enums for observer messages.
Definition: assemblermanipulatorbuildingblocks.hh:22
auto createControlRoutine(const LoadControlConfig &config, NLS &&nonlinearSolver)
Function to create a load control instance.
Definition: loadcontrol.hh:45
A factory class for creating control routines.
Definition: controlroutinefactory.hh:25
static auto create(const CRConfig &config, NLS &&nonlinearSolver, Assembler &&assembler)
Creates the control routine and registering the elements to the broadcaster messages from the solver ...
Definition: controlroutinefactory.hh:40
Concept representing the requirements for a FlatAssembler.A type T satisfies FlatAssembler if it prov...
Definition: utils/concepts.hh:507
Several concepts.