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,