From 3f97d38ec5180c4c893c014cf405abf15666e58a Mon Sep 17 00:00:00 2001 From: Alex_Mueller Date: Mon, 27 May 2024 15:46:03 +0200 Subject: [PATCH] Aktualisieren von iks006_nonlinear2DSolid.cpp --- src/iks006_nonlinear2DSolid.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/iks006_nonlinear2DSolid.cpp b/src/iks006_nonlinear2DSolid.cpp index b75d5d4..ce2a5bb 100644 --- a/src/iks006_nonlinear2DSolid.cpp +++ b/src/iks006_nonlinear2DSolid.cpp @@ -171,7 +171,7 @@ else if constexpr (gt==GridType::NURBSGrid) auto sk = skills(nonLinearElastic(reducedMat), volumeLoad<2>(vL), neumannBoundaryLoad(&neumannBoundary, neumannBl)); using FEType = decltype(makeFE(basis, sk)); - std::vector fes; + std::vector fes; for (auto&& ge : elements(gridView)) { fes.emplace_back(makeFE(basis, sk)); fes.back().bind(ge); @@ -195,8 +195,8 @@ using FEType = decltype(makeFE(basis, sk)); req.insertGlobalSolution(d) .insertParameter( lambda); - sparseAssembler.bind(req); - sparseAssembler.bind(Ikarus::AffordanceCollections::elastoStatics); + sparseAssembler->bind(req); + sparseAssembler->bind(Ikarus::AffordanceCollections::elastoStatics); auto nonlinSolver = [&](){ if constexpr (st==SolverType::NewtonRaphson)