From 1c5f6061865cc11b539403f4d304a3c8124cb9e4 Mon Sep 17 00:00:00 2001 From: Knut Morten Okstad Date: Tue, 9 Jun 2026 10:31:09 +0200 Subject: [PATCH] Changed: Signature of overridden extractPatchSolution() method --- SIMAndesShell.C | 4 ++-- SIMAndesShell.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SIMAndesShell.C b/SIMAndesShell.C index 71689a0..76bdf79 100644 --- a/SIMAndesShell.C +++ b/SIMAndesShell.C @@ -409,12 +409,12 @@ bool SIMAndesShell::renumberNodes (const std::map& nodeMap) bool SIMAndesShell::extractPatchSolution (IntegrandBase* itg, const Vectors& sol, - size_t pindx) const + size_t pindx, double time) const { if (itg == myProblem && dynamic_cast(this->getPatch(pindx+1))) if (shellp) itg = shellp->hasBeamProblem(); - return this->Parent::extractPatchSolution(itg,sol,pindx); + return this->Parent::extractPatchSolution(itg,sol,pindx,time); } diff --git a/SIMAndesShell.h b/SIMAndesShell.h index bba731f..aa81988 100644 --- a/SIMAndesShell.h +++ b/SIMAndesShell.h @@ -138,8 +138,8 @@ class SIMAndesShell : public SIMElasticity virtual bool renumberNodes(const std::map& nodeMap); //! \brief Extracts all local solution vector(s) for a specified patch. - virtual bool extractPatchSolution(IntegrandBase* itg, - const Vectors& sol, size_t pindx) const; + virtual bool extractPatchSolution(IntegrandBase* itg, const Vectors& sol, + size_t pindx, double time) const; //! \brief Assembles the DOF springs and nodal point loads, if any. virtual bool assembleDiscreteItems(const IntegrandBase* itg,