Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions SIMAndesShell.C
Original file line number Diff line number Diff line change
Expand Up @@ -409,12 +409,12 @@ bool SIMAndesShell::renumberNodes (const std::map<int,int>& nodeMap)

bool SIMAndesShell::extractPatchSolution (IntegrandBase* itg,
const Vectors& sol,
size_t pindx) const
size_t pindx, double time) const
{
if (itg == myProblem && dynamic_cast<ASMuBeam*>(this->getPatch(pindx+1)))
if (shellp) itg = shellp->hasBeamProblem();

return this->Parent::extractPatchSolution(itg,sol,pindx);
return this->Parent::extractPatchSolution(itg,sol,pindx,time);
}


Expand Down
4 changes: 2 additions & 2 deletions SIMAndesShell.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ class SIMAndesShell : public SIMElasticity<SIM2D>
virtual bool renumberNodes(const std::map<int,int>& 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,
Expand Down