Skip to content
Snippets Groups Projects
Commit e22da5ed authored by Ludovic Noels's avatar Ludovic Noels
Browse files

missing virtual fucntion

parent 794b2b14
No related branches found
No related tags found
No related merge requests found
...@@ -49,6 +49,8 @@ class dgLinearShellDomain : public dgPartDomain{ ...@@ -49,6 +49,8 @@ class dgLinearShellDomain : public dgPartDomain{
virtual int getDim() const {return 2;} virtual int getDim() const {return 2;}
virtual void setDeformationGradientGradient(AllIPState *aips, const STensor33 &GM,const IPStateBase::whichState ws){}; virtual void setDeformationGradientGradient(AllIPState *aips, const STensor33 &GM,const IPStateBase::whichState ws){};
virtual void setdFmdFM(AllIPState *aips, std::map<Dof, STensor3> &dUdF,const IPStateBase::whichState ws){}; virtual void setdFmdFM(AllIPState *aips, std::map<Dof, STensor3> &dUdF,const IPStateBase::whichState ws){};
virtual void setdFmdGM(AllIPState *aips, std::map<Dof, STensor33> &dUdG,const IPStateBase::whichState ws){};
virtual void setValuesForBodyForce(AllIPState *aips, const IPStateBase::whichState ws){}; virtual void setValuesForBodyForce(AllIPState *aips, const IPStateBase::whichState ws){};
virtual void computeIpv(AllIPState *aips,MElement *e, IPStateBase::whichState ws, virtual void computeIpv(AllIPState *aips,MElement *e, IPStateBase::whichState ws,
materialLaw *mlaw,fullVector<double> &disp, bool stiff); materialLaw *mlaw,fullVector<double> &disp, bool stiff);
...@@ -121,6 +123,8 @@ class dgNonLinearShellDomain : public dgLinearShellDomain{ ...@@ -121,6 +123,8 @@ class dgNonLinearShellDomain : public dgLinearShellDomain{
virtual void computeIPVariable(AllIPState *aips,const unknownField *ufield,const IPStateBase::whichState ws, bool stiff); virtual void computeIPVariable(AllIPState *aips,const unknownField *ufield,const IPStateBase::whichState ws, bool stiff);
virtual void setDeformationGradientGradient(AllIPState *aips, const STensor33 &GM,const IPStateBase::whichState ws){}; virtual void setDeformationGradientGradient(AllIPState *aips, const STensor33 &GM,const IPStateBase::whichState ws){};
virtual void setdFmdFM(AllIPState *aips, std::map<Dof, STensor3> &dUdF,const IPStateBase::whichState ws){}; virtual void setdFmdFM(AllIPState *aips, std::map<Dof, STensor3> &dUdF,const IPStateBase::whichState ws){};
virtual void setdFmdGM(AllIPState *aips, std::map<Dof, STensor33> &dUdG,const IPStateBase::whichState ws){};
virtual void computeIpv(AllIPState *aips,MElement *e, IPStateBase::whichState ws, virtual void computeIpv(AllIPState *aips,MElement *e, IPStateBase::whichState ws,
materialLaw *mlaw,fullVector<double> &disp, bool stiff); materialLaw *mlaw,fullVector<double> &disp, bool stiff);
virtual void computeIpv(AllIPState *aips,MInterfaceElement *ie, IntPt *GP,const IPStateBase::whichState ws, virtual void computeIpv(AllIPState *aips,MInterfaceElement *ie, IntPt *GP,const IPStateBase::whichState ws,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment