Skip to content
Snippets Groups Projects

Tianyu

Merged Ludovic Noels requested to merge Tianyu into master
9 files
+ 2070
323
Compare changes
  • Side-by-side
  • Inline

Files

@@ -233,7 +233,7 @@ class rigidPlaneContactDomain : public contactDomain{
class rigidSphereContactDomain : public contactDomain{
protected:
MVertex *_vergc; // vertex of gravity center (center of sphere)
MVertex *_vergc; // vertex of gravity center of sphere
double _radius; // radius of sphere;
// double _thickContact; // (?) use for shell (contact with neutral axis of external fiber is !=0)
double _density; // density of sphere (? Not a material law for now ?)
@@ -245,7 +245,7 @@ class rigidSphereContactDomain : public contactDomain{
const double penalty, const double rho, elementFilter *filSlave=NULL);
rigidSphereContactDomain(const rigidSphereContactDomain& src): contactDomain(src),_vergc(src._vergc),
_radius(src._radius),_density(src._density){}; // (? 1.a necessary constructor; 2.src ?)
_radius(src._radius),_density(src._density){};
virtual ~rigidSphereContactDomain(){}
virtual MVertex* getGC() const{return _vergc;};
virtual void setDomainAndFunctionSpace(partDomain *dom)=0; // (?)
Loading