mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
remove extra semicolons
This commit is contained in:
@ -229,7 +229,7 @@ public:
|
|||||||
|
|
||||||
void setPos(double **&);
|
void setPos(double **&);
|
||||||
|
|
||||||
word modelType(){ return modelType_; };
|
word modelType(){ return modelType_; }
|
||||||
|
|
||||||
label particleCell(int);
|
label particleCell(int);
|
||||||
|
|
||||||
@ -311,18 +311,18 @@ public:
|
|||||||
virtual inline int maxType() {return -1;}
|
virtual inline int maxType() {return -1;}
|
||||||
virtual inline bool multipleTypesDMax() {return false;}
|
virtual inline bool multipleTypesDMax() {return false;}
|
||||||
virtual inline bool multipleTypesDMin() {return false;}
|
virtual inline bool multipleTypesDMin() {return false;}
|
||||||
virtual inline double ** particleDensity() const {return NULL;};
|
virtual inline double ** particleDensity() const {return NULL;}
|
||||||
virtual inline int ** particleTypes() const {return NULL;};
|
virtual inline int ** particleTypes() const {return NULL;}
|
||||||
virtual label particleType(label index) const {return -1;};
|
virtual label particleType(label index) const {return -1;}
|
||||||
|
|
||||||
//access to the particle's rotation and torque data
|
//access to the particle's rotation and torque data
|
||||||
virtual inline double ** DEMTorques() const {return NULL;};
|
virtual inline double ** DEMTorques() const {return NULL;}
|
||||||
virtual inline double ** omegaArray() const {return NULL;};
|
virtual inline double ** omegaArray() const {return NULL;}
|
||||||
virtual vector omega(int) const {return Foam::vector(0,0,0);};
|
virtual vector omega(int) const {return Foam::vector(0,0,0);}
|
||||||
|
|
||||||
//access to the particles' orientation information
|
//access to the particles' orientation information
|
||||||
virtual inline double ** exArray() const {return NULL;};
|
virtual inline double ** exArray() const {return NULL;}
|
||||||
virtual vector ex(int) const {return Foam::vector(0,0,0);};
|
virtual vector ex(int) const {return Foam::vector(0,0,0);}
|
||||||
|
|
||||||
//Detector if SRF module is enable or not
|
//Detector if SRF module is enable or not
|
||||||
virtual inline bool SRFOn(){return false;}
|
virtual inline bool SRFOn(){return false;}
|
||||||
|
|||||||
Reference in New Issue
Block a user