version 0.4.1
differentiablefunctionfactory.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 <utility>
12
13#include <dune/functions/common/differentiablefunctionfromcallables.hh>
14
19
20namespace Ikarus {
21
23{
24 template <typename Assembler, typename... Affordances>
25 static auto op(Assembler&& as, AffordanceCollection<Affordances...> affordances,
26 DBCOption dbcOption = DBCOption::Full) {
27 auto assemblerPtr = [as]() {
28 if constexpr (std::is_pointer_v<std::remove_cvref_t<Assembler>> or
30 return as;
31 else
32 return std::make_shared<std::remove_cvref_t<Assembler>>(std::forward<Assembler>(as));
33 }();
34
35 using FERequirement = typename traits::remove_pointer_t<std::remove_cvref_t<Assembler>>::FERequirement;
36
37 [[maybe_unused]] auto KFunction = [dbcOption, assembler = assemblerPtr,
38 affordances](const FERequirement& p) -> auto& {
39 return assembler->matrix(p, affordances.matrixAffordance(), dbcOption);
40 };
41
42 [[maybe_unused]] auto residualFunction = [dbcOption, assembler = assemblerPtr,
43 affordances](const FERequirement& p) -> auto& {
44 return assembler->vector(p, affordances.vectorAffordance(), dbcOption);
45 };
46
47 auto reqArg = FERequirement(); // This is only created to help makeDifferentiableFunction deduce the argument type
48 // of the functions. therefore, no valid values needed
49
50 if constexpr (affordances.hasScalarAffordance) {
51 [[maybe_unused]] auto energyFunction = [assembler = assemblerPtr, affordances](const FERequirement& p) -> auto& {
52 return assembler->scalar(p, affordances.scalarAffordance());
53 };
54
55 return makeDifferentiableFunction(functions(energyFunction, residualFunction, KFunction), reqArg);
56 } else
57 return makeDifferentiableFunction(functions(residualFunction, KFunction), reqArg);
58 }
59
60 template <typename Assembler>
61 static auto op(Assembler&& as, DBCOption dbcOption) {
62 auto ex = []() {
63 DUNE_THROW(Dune::InvalidStateException,
64 "Assembler has to be bound to an affordance collection before you can call "
65 "this method");
66 };
67 if constexpr (std::is_pointer_v<std::remove_cvref_t<Assembler>> or
69 if (as->boundToAffordanceCollection()) {
70 return op(std::forward<Assembler>(as), as->affordanceCollection(), dbcOption);
71 } else {
72 ex();
73 }
74 } else {
75 if (as->boundToAffordanceCollection()) {
76 return op(std::forward<Assembler>(as), as.affordanceCollection(), dbcOption);
77 } else {
78 ex();
79 }
80 }
81 __builtin_unreachable();
82 }
83
84 template <typename Assembler>
85 static auto op(Assembler&& as) {
86 auto ex = []() {
87 DUNE_THROW(Dune::InvalidStateException,
88 "Assembler has to be bound to an affordance collection and to an "
89 "DBCOption before you can call "
90 "this method");
91 };
92 if constexpr (std::is_pointer_v<std::remove_cvref_t<Assembler>> or
94 if (not(as->boundToAffordanceCollection() and as->boundToDBCOption()))
95 ex();
96 return op(std::forward<Assembler>(as), as->affordanceCollection(), as->dBCOption());
97 } else {
98 if (not(as->boundToAffordanceCollection() and as->boundToDBCOption()))
99 ex();
100 return op(std::forward<Assembler>(as), as.affordanceCollection(), as.dBCOption());
101 }
102 }
103};
104
105} // namespace Ikarus
Provides a DifferentiableFunction class for handling differentiable Functions.
Contains derivative traits for common vbalue and derivative relations used for makeDifferentiableFunc...
Definition of the LinearElastic class for finite element mechanics computations.
Definition: assemblermanipulatorbuildingblocks.hh:22
auto makeDifferentiableFunction(const Impl::Functions< F... > &derivativesFunctions, const Arg &parameter)
Factory method for DifferentiableFunction It is a function taking several callables and the argument ...
Definition: differentiablefunction.hh:99
DBCOption
Definition: dirichletbcenforcement.hh:8
auto functions(Args &&... args)
Creates a Functions object.
Definition: differentiablefunction.hh:44
typename remove_pointer< T >::type remove_pointer_t
Definition: traits.hh:176
Struct representing a collection of affordances.
Definition: ferequirements.hh:106
auto vectorAffordance() const
Definition: ferequirements.hh:158
static constexpr bool hasScalarAffordance
Definition: ferequirements.hh:113
auto scalarAffordance() const
Definition: ferequirements.hh:153
auto matrixAffordance() const
Definition: ferequirements.hh:163
Definition: differentiablefunctionfactory.hh:23
static auto op(Assembler &&as)
Definition: differentiablefunctionfactory.hh:85
static auto op(Assembler &&as, AffordanceCollection< Affordances... > affordances, DBCOption dbcOption=DBCOption::Full)
Definition: differentiablefunctionfactory.hh:25
static auto op(Assembler &&as, DBCOption dbcOption)
Definition: differentiablefunctionfactory.hh:61
Type trait to check if a type is a isSharedPtr.
Definition: traits.hh:136