|
Creates chutes with different bottoms. Inherits from Mercury3D (-> MercuryBase -> DPMBase). More...
#include <Chute.h>
Public Member Functions | |
Chute () | |
This is the default constructor. All it does is set sensible defaults. More... | |
Chute (const DPMBase &other) | |
Copy constructor, converts an existing DPMBase problem into a Chute problem. More... | |
Chute (const MercuryBase &other) | |
Copy constructor, converts an existing MercuryBase problem into a Chute problem. More... | |
Chute (const Mercury3D &other) | |
Copy constructor, converts an existing Mercury3D problem into a Chute problem. More... | |
Chute (const Chute &other) | |
Default copy constructor. More... | |
void | constructor () |
This is the actual constructor METHOD; it is called by all constructors above (except the default copy constructor). More... | |
bool | readNextArgument (int &i, int argc, char *argv[]) override |
This method can be used for reading object properties from a string. More... | |
void | setupSideWalls () |
Creates chute side walls (either solid or periodic) More... | |
void | makeChutePeriodic () |
This makes the chute periodic in Y. More... | |
bool | getIsPeriodic () const |
Returns whether the chute is periodic in Y. More... | |
void | setupInitialConditions () override |
Creates bottom, side walls and a particle insertion boundary. More... | |
void | read (std::istream &is, ReadOptions opt=ReadOptions::ReadAll) override |
Reads all chute properties from an istream. More... | |
void | write (std::ostream &os, bool writeAllParticles=true) const override |
This function writes the Chute properties to an ostream, and adds the properties of ALL chute particles as well. More... | |
void | setFixedParticleRadius (Mdouble fixedParticleRadius) |
Sets the particle radius of the fixed particles which constitute the (rough) chute bottom. More... | |
Mdouble | getFixedParticleRadius () const |
Returns the particle radius of the fixed particles which constitute the (rough) chute bottom. More... | |
void | setFixedParticleSpacing (Mdouble fixedParticleSpacing) |
Sets the spacing of the fixed particles which constitute the (rough) chute bottom; used in triangular packing only. More... | |
Mdouble | getFixedParticleSpacing () const |
Returns the particle radius of the fixed particles which constitute the (rough) chute bottom; used in triangular packing only. More... | |
void | setRoughBottomType (RoughBottomType roughBottomType) |
Sets the type of rough bottom of the chute. More... | |
void | setRoughBottomType (std::string roughBottomTypeString) |
Sets the type of rough bottom of the chute, using a string with the EXACT enum type as input. More... | |
RoughBottomType | getRoughBottomType () const |
Returns the type of (rough) bottom of the chute. More... | |
void | setChuteAngle (Mdouble chuteAngle) |
Sets gravity vector according to chute angle (in degrees) More... | |
void | setChuteAngleAndMagnitudeOfGravity (Mdouble chuteAngle, Mdouble gravity) |
Sets gravity vector according to chute angle (in degrees) More... | |
Mdouble | getChuteAngle () const |
Returns the chute angle (in radians) More... | |
Mdouble | getChuteAngleDegrees () const |
Returns the chute angle (in degrees) More... | |
void | setMaxFailed (unsigned int maxFailed) |
Sets the number of times a particle will be tried to be added to the insertion boundary. More... | |
unsigned int | getMaxFailed () const |
Returns the number of times a particle will be tried to be added to the insertion boundary. More... | |
void | setInflowParticleRadius (Mdouble inflowParticleRadius) |
Sets the radius of the inflow particles to a single one (i.e. ensures a monodisperse inflow). More... | |
void | setInflowParticleRadius (Mdouble minInflowParticleRadius, Mdouble maxInflowParticleRadius) |
Sets the minimum and maximum radius of the inflow particles. More... | |
void | setMinInflowParticleRadius (Mdouble minInflowParticleRadius) |
sets the minimum radius of inflow particles More... | |
void | setMaxInflowParticleRadius (Mdouble maxInflowParticleRadius) |
Sets the maximum radius of inflow particles. More... | |
Mdouble | getInflowParticleRadius () const |
Returns the average radius of inflow particles. More... | |
Mdouble | getMinInflowParticleRadius () const |
returns the minimum radius of inflow particles More... | |
Mdouble | getMaxInflowParticleRadius () const |
Returns the maximum radius of inflow particles. More... | |
void | setInflowHeight (Mdouble inflowHeight) |
Sets maximum inflow height (Z-direction) More... | |
Mdouble | getInflowHeight () const |
Returns the maximum inflow height (Z-direction) More... | |
void | setInflowVelocity (Mdouble inflowVelocity) |
Sets the average inflow velocity. More... | |
Mdouble | getInflowVelocity () const |
Returns the average inflow velocity. More... | |
void | setInflowVelocityVariance (Mdouble inflowVelocityVariance) |
Sets the inflow velocity variance. More... | |
Mdouble | getInflowVelocityVariance () const |
Returns the inflow velocity variance. More... | |
void | setChuteWidth (Mdouble chuteWidth) |
Sets the chute width (Y-direction) More... | |
Mdouble | getChuteWidth () const |
Returns the chute width (Y-direction) More... | |
virtual void | setChuteLength (Mdouble chuteLength) |
Sets the chute length (X-direction) More... | |
Mdouble | getChuteLength () const |
Returns the chute length (X-direction) More... | |
void | setInsertionBoundary (InsertionBoundary *insertionBoundary) |
Sets the chute insertion boundary. More... | |
Public Member Functions inherited from Mercury3D | |
Mercury3D () | |
This is the default constructor. All it does is set sensible defaults. More... | |
Mercury3D (const DPMBase &other) | |
Copy-constructor for creates an Mercury3D problem from an existing MD problem. More... | |
Mercury3D (const Mercury3D &other) | |
Copy-constructor. More... | |
void | constructor () |
Function that sets the SystemDimension and ParticleDimension to 3. More... | |
std::vector< BaseParticle * > | hGridFindParticleContacts (const BaseParticle *obj) override |
Returns all particles that have a contact with a given particle. More... | |
Public Member Functions inherited from MercuryBase | |
MercuryBase () | |
This is the default constructor. It sets sensible defaults. More... | |
~MercuryBase () override | |
This is the default destructor. More... | |
MercuryBase (const MercuryBase &mercuryBase) | |
Copy-constructor. More... | |
void | constructor () |
This is the actual constructor, it is called do both constructors above. More... | |
void | hGridActionsBeforeTimeLoop () override |
This sets up the broad phase information, has to be done at this stage because it requires the particle size. More... | |
void | hGridActionsBeforeTimeStep () override |
Performs all necessary actions before a time-step, like updating the particles and resetting all the bucket information, etc. More... | |
void | read (std::istream &is, ReadOptions opt=ReadOptions::ReadAll) override |
Reads the MercuryBase from an input stream, for example a restart file. More... | |
void | write (std::ostream &os, bool writeAllParticles=true) const override |
Writes all data into a restart file. More... | |
Mdouble | getHGridCurrentMaxRelativeDisplacement () const |
Returns hGridCurrentMaxRelativeDisplacement_. More... | |
Mdouble | getHGridTotalCurrentMaxRelativeDisplacement () const |
Returns hGridTotalCurrentMaxRelativeDisplacement_. More... | |
void | setHGridUpdateEachTimeStep (bool updateEachTimeStep) |
Sets whether or not the HGrid must be updated every time step. More... | |
bool | getHGridUpdateEachTimeStep () const final |
Gets whether or not the HGrid is updated every time step. More... | |
void | setHGridMaxLevels (unsigned int HGridMaxLevels) |
Sets the maximum number of levels of the HGrid in this MercuryBase. More... | |
unsigned int | getHGridMaxLevels () const |
Gets the maximum number of levels of the HGrid in this MercuryBase. More... | |
HGridMethod | getHGridMethod () const |
Gets whether the HGrid in this MercuryBase is BOTTOMUP or TOPDOWN. More... | |
void | setHGridMethod (HGridMethod hGridMethod) |
Sets the HGridMethod to either BOTTOMUP or TOPDOWN. More... | |
HGridDistribution | getHGridDistribution () const |
Gets how the sizes of the cells of different levels are distributed. More... | |
void | setHGridDistribution (HGridDistribution hGridDistribution) |
Sets how the sizes of the cells of different levels are distributed. More... | |
Mdouble | getHGridCellOverSizeRatio () const |
Gets the ratio of the smallest cell over the smallest particle. More... | |
void | setHGridCellOverSizeRatio (Mdouble cellOverSizeRatio) |
Sets the ratio of the smallest cell over the smallest particle. More... | |
bool | hGridNeedsRebuilding () |
Gets if the HGrid needs rebuilding before anything else happens. More... | |
virtual unsigned int | getHGridTargetNumberOfBuckets () const |
Gets the desired number of buckets, which is the maximum of the number of particles and 10. More... | |
virtual Mdouble | getHGridTargetMinInteractionRadius () const |
Gets the desired size of the smallest cells of the HGrid. More... | |
virtual Mdouble | getHGridTargetMaxInteractionRadius () const |
Gets the desired size of the largest cells of the HGrid. More... | |
bool | checkParticleForInteraction (const BaseParticle &P) final |
Checks if given BaseParticle has an interaction with a BaseWall or other BaseParticle. More... | |
bool | checkParticleForInteractionLocal (const BaseParticle &P) final |
Checks if the given BaseParticle has an interaction with a BaseWall or other BaseParticles in a local domain. More... | |
virtual Mdouble | userHGridCellSize (unsigned int level) |
Virtual function that enables inheriting classes to implement a function to let the user set the cell size of the HGrid. More... | |
void | hGridInfo (std::ostream &os=std::cout) const |
Writes the info of the HGrid to the screen in a nice format. More... | |
Public Member Functions inherited from DPMBase | |
void | constructor () |
A function which initialises the member variables to default values, so that the problem can be solved off the shelf; sets up a basic two dimensional problem which can be solved off the shelf. It is called in the constructor DPMBase(). More... | |
DPMBase () | |
Constructor that calls the "void constructor()". More... | |
DPMBase (const DPMBase &other) | |
Copy constructor type-2. More... | |
virtual | ~DPMBase () |
virtual destructor More... | |
void | autoNumber () |
The autoNumber() function calls three functions: setRunNumber(), readRunNumberFromFile() and incrementRunNumberInFile(). More... | |
std::vector< int > | get1DParametersFromRunNumber (int size_x) const |
This turns a counter into 1 index, which is a useful feature for performing 1D parameter study. The index run from 1:size_x, while the study number starts at 0 (initially the counter=1 in COUNTER_DONOTDEL) More... | |
std::vector< int > | get2DParametersFromRunNumber (int size_x, int size_y) const |
This turns a counter into 2 indices which is a very useful feature for performing a 2D study. The indices run from 1:size_x and 1:size_y, while the study number starts at 0 ( initially the counter=1 in COUNTER_DONOTDEL) More... | |
std::vector< int > | get3DParametersFromRunNumber (int size_x, int size_y, int size_z) const |
This turns a counter into 3 indices, which is a useful feature for performing a 3D parameter study. The indices run from 1:size_x, 1:size_y and 1:size_z, while the study number starts at 0 ( initially the counter=1 in COUNTER_DONOTDEL) More... | |
int | launchNewRun (const char *name, bool quick=false) |
This launches a code from within this code. Please pass the name of the code to run. More... | |
void | setRunNumber (int runNumber) |
This sets the counter/Run number, overriding the defaults. More... | |
int | getRunNumber () const |
This returns the current value of the counter (runNumber_) More... | |
virtual void | decompose () |
Sends particles from processorId to the root processor. More... | |
void | solve () |
The work horse of the code. More... | |
void | initialiseSolve () |
Beginning of the solve routine, before time stepping. More... | |
void | finaliseSolve () |
End of the solve routine, after time stepping. More... | |
virtual void | computeOneTimeStep () |
Performs everything needed for one time step, used in the time-loop of solve(). More... | |
void | checkSettings () |
Checks if the essentials are set properly to go ahead with solving the problem. More... | |
void | forceWriteOutputFiles () |
Writes output files immediately, even if the current time step was not meant to be written. Also resets the last saved time step. More... | |
virtual void | writeOutputFiles () |
Writes simulation data to all the main Mercury files: .data, .ene, .fstat, .xballs and .restart (see the Mercury website for more details regarding these files). More... | |
void | solve (int argc, char *argv[]) |
The work horse of the code. Can handle flags from the command line. More... | |
virtual void | writeXBallsScript () const |
This writes a script which can be used to load the xballs problem to display the data just generated. More... | |
virtual Mdouble | getInfo (const BaseParticle &P) const |
A virtual function that returns some user-specified information about a particle. More... | |
ParticleVtkWriter * | getVtkWriter () const |
virtual void | writeRestartFile () |
Stores all the particle data for current save time step to a "restart" file, which is a file simply intended to store all the information necessary to "restart" a simulation from a given time step (see also MercuryDPM.org for more information on restart files). More... | |
void | writeDataFile () |
void | writeEneFile () |
void | writeFStatFile () |
void | fillDomainWithParticles (unsigned N=50) |
bool | readRestartFile (ReadOptions opt=ReadOptions::ReadAll) |
Reads all the particle data corresponding to a given, existing . restart file (for more details regarding restart files, refer to the training materials on the MercuryDPM website).Returns true if it is successful, false otherwise. More... | |
int | readRestartFile (std::string fileName, ReadOptions opt=ReadOptions::ReadAll) |
The same as readRestartFile(bool), but also reads all the particle data corresponding to the current saved time step. More... | |
virtual BaseWall * | readUserDefinedWall (const std::string &type) const |
Allows you to read in a wall defined in a Driver directory; see USER/Luca/ScrewFiller. More... | |
virtual void | readOld (std::istream &is) |
Reads all data from a restart file, e.g. domain data and particle data; old version. More... | |
bool | readDataFile (std::string fileName="", unsigned int format=0) |
This allows particle data to be reloaded from data files. More... | |
bool | readParAndIniFiles (std::string fileName) |
Allows the user to read par.ini files (useful to read files produced by the MDCLR simulation code - external to MercuryDPM) More... | |
bool | readNextDataFile (unsigned int format=0) |
Reads the next data file with default format=0. However, one can modify the format based on whether the particle data corresponds to 3D or 2D data- see Visualising data in xballs. More... | |
void | readNextFStatFile () |
Reads the next fstat file. More... | |
bool | findNextExistingDataFile (Mdouble tMin, bool verbose=true) |
Finds and opens the next data file, if such a file exists. More... | |
bool | readArguments (int argc, char *argv[]) |
Can interpret main function input arguments that are passed by the driver codes. More... | |
bool | checkParticleForInteractionLocalPeriodic (const BaseParticle &P) |
void | readSpeciesFromDataFile (bool read=true) |
void | importParticlesAs (ParticleHandler &particleHandler, InteractionHandler &interactionHandler, const ParticleSpecies *species) |
Copies particles, interactions assigning species from a local simulation to a global one. Useful for the creation of a cluster. More... | |
MERCURYDPM_DEPRECATED File & | getDataFile () |
The non const version. Allows one to edit the File::dataFile. More... | |
MERCURYDPM_DEPRECATED File & | getEneFile () |
The non const version. Allows to edit the File::eneFile. More... | |
MERCURYDPM_DEPRECATED File & | getFStatFile () |
The non const version. Allows to edit the File::fStatFile. More... | |
MERCURYDPM_DEPRECATED File & | getRestartFile () |
The non const version. Allows to edit the File::restartFile. More... | |
MERCURYDPM_DEPRECATED File & | getStatFile () |
The non const version. Allows to edit the File::statFile. More... | |
File & | getInteractionFile () |
Return a reference to the file InteractionsFile. More... | |
MERCURYDPM_DEPRECATED const File & | getDataFile () const |
The const version. Does not allow for any editing of the File::dataFile. More... | |
MERCURYDPM_DEPRECATED const File & | getEneFile () const |
The const version. Does not allow for any editing of the File::eneFile. More... | |
MERCURYDPM_DEPRECATED const File & | getFStatFile () const |
The const version. Does not allow for any editing of the File::fStatFile. More... | |
MERCURYDPM_DEPRECATED const File & | getRestartFile () const |
The const version. Does not allow for any editing of the File::restartFile. More... | |
MERCURYDPM_DEPRECATED const File & | getStatFile () const |
The const version. Does not allow for any editing of the File::statFile. More... | |
const File & | getInteractionFile () const |
const std::string & | getName () const |
Returns the name of the file. Does not allow to change it though. More... | |
void | setName (const std::string &name) |
Allows to set the name of all the files (ene, data, fstat, restart, stat) More... | |
void | setName (const char *name) |
Calls setName(std::string) More... | |
void | setSaveCount (unsigned int saveCount) |
Sets File::saveCount_ for all files (ene, data, fstat, restart, stat) More... | |
void | setFileType (FileType fileType) |
Sets File::fileType_ for all files (ene, data, fstat, restart, stat) More... | |
void | setOpenMode (std::fstream::openmode openMode) |
Sets File::openMode_ for all files (ene, data, fstat, restart, stat) More... | |
void | resetFileCounter () |
Resets the file counter for each file i.e. for ene, data, fstat, restart, stat) More... | |
void | closeFiles () |
Closes all files (ene, data, fstat, restart, stat) that were opened to read or write. More... | |
void | setLastSavedTimeStep (unsigned int nextSavedTimeStep) |
Sets the next time step for all the files (ene, data, fstat, restart, stat) at which the data is to be written or saved. More... | |
Mdouble | getTime () const |
Returns the current simulation time. More... | |
Mdouble | getNextTime () const |
Returns the current simulation time. More... | |
unsigned int | getNumberOfTimeSteps () const |
Returns the current counter of time-steps, i.e. the number of time-steps that the simulation has undergone so far. More... | |
void | setTime (Mdouble time) |
Sets a new value for the current simulation time. More... | |
void | setTimeMax (Mdouble newTMax) |
Sets a new value for the maximum simulation duration. More... | |
Mdouble | getTimeMax () const |
Returns the maximum simulation duration. More... | |
void | setLogarithmicSaveCount (Mdouble logarithmicSaveCountBase) |
Sets File::logarithmicSaveCount_ for all files (ene, data, fstat, restart, stat) More... | |
void | setNToWrite (int nToWrite) |
set the number of elements to write to the screen More... | |
int | getNToWrite () const |
get the number of elements to write to the More... | |
void | setRotation (bool rotation) |
Sets whether particle rotation is enabled or disabled. More... | |
bool | getRotation () const |
Indicates whether particle rotation is enabled or disabled. More... | |
MERCURYDPM_DEPRECATED void | setWallsWriteVTK (FileType writeWallsVTK) |
Sets whether walls are written into a VTK file. More... | |
MERCURYDPM_DEPRECATED void | setWallsWriteVTK (bool) |
Sets whether walls are written into a VTK file. More... | |
MERCURYDPM_DEPRECATED void | setInteractionsWriteVTK (bool) |
Sets whether interactions are written into a VTK file. More... | |
void | setParticlesWriteVTK (bool writeParticlesVTK) |
Sets whether particles are written in a VTK file. More... | |
void | setSuperquadricParticlesWriteVTK (bool writeSuperquadricParticlesVTK) |
MERCURYDPM_DEPRECATED FileType | getWallsWriteVTK () const |
Returns whether walls are written in a VTK file. More... | |
bool | getParticlesWriteVTK () const |
Returns whether particles are written in a VTK file. More... | |
bool | getSuperquadricParticlesWriteVTK () const |
Mdouble | getXMin () const |
If the length of the problem domain in x-direction is XMax - XMin, then getXMin() returns XMin. More... | |
Mdouble | getXMax () const |
If the length of the problem domain in x-direction is XMax - XMin, then getXMax() returns XMax. More... | |
Mdouble | getYMin () const |
If the length of the problem domain in y-direction is YMax - YMin, then getYMin() returns YMin. More... | |
Mdouble | getYMax () const |
If the length of the problem domain in y-direction is YMax - YMin, then getYMax() returns XMax. More... | |
Mdouble | getZMin () const |
If the length of the problem domain in z-direction is ZMax - ZMin, then getZMin() returns ZMin. More... | |
Mdouble | getZMax () const |
If the length of the problem domain in z-direction is ZMax - ZMin, then getZMax() returns ZMax. More... | |
Mdouble | getXCenter () const |
Mdouble | getYCenter () const |
Mdouble | getZCenter () const |
Vec3D | getMin () const |
Vec3D | getMax () const |
void | setXMin (Mdouble newXMin) |
Sets the value of XMin, the lower bound of the problem domain in the x-direction. More... | |
void | setYMin (Mdouble newYMin) |
Sets the value of YMin, the lower bound of the problem domain in the y-direction. More... | |
void | setZMin (Mdouble newZMin) |
Sets the value of ZMin, the lower bound of the problem domain in the z-direction. More... | |
void | setXMax (Mdouble newXMax) |
Sets the value of XMax, the upper bound of the problem domain in the x-direction. More... | |
void | setYMax (Mdouble newYMax) |
Sets the value of YMax, the upper bound of the problem domain in the y-direction. More... | |
void | setZMax (Mdouble newZMax) |
Sets the value of ZMax, the upper bound of the problem domain in the z-direction. More... | |
void | setMax (const Vec3D &max) |
Sets the maximum coordinates of the problem domain. More... | |
void | setMax (Mdouble, Mdouble, Mdouble) |
Sets the maximum coordinates of the problem domain. More... | |
void | setDomain (const Vec3D &min, const Vec3D &max) |
Sets the minimum coordinates of the problem domain. More... | |
void | setMin (const Vec3D &min) |
Sets the minimum coordinates of the problem domain. More... | |
void | setMin (Mdouble, Mdouble, Mdouble) |
Sets the minimum coordinates of the problem domain. More... | |
void | setTimeStep (Mdouble newDt) |
Sets a new value for the simulation time step. More... | |
Mdouble | getTimeStep () const |
Returns the simulation time step. More... | |
void | setNumberOfOMPThreads (int numberOfOMPThreads) |
int | getNumberOfOMPThreads () const |
void | setXBallsColourMode (int newCMode) |
Set the xballs output mode. More... | |
int | getXBallsColourMode () const |
Get the xballs colour mode (CMode). More... | |
void | setXBallsVectorScale (double newVScale) |
Set the scale of vectors in xballs. More... | |
double | getXBallsVectorScale () const |
Returns the scale of vectors used in xballs. More... | |
void | setXBallsAdditionalArguments (std::string newXBArgs) |
Set the additional arguments for xballs. More... | |
std::string | getXBallsAdditionalArguments () const |
Returns the additional arguments for xballs. More... | |
void | setXBallsScale (Mdouble newScale) |
Sets the scale of the view (either normal, zoom in or zoom out) to display in xballs. The default is fit to screen. More... | |
double | getXBallsScale () const |
Returns the scale of the view in xballs. More... | |
void | setGravity (Vec3D newGravity) |
Sets a new value for the gravitational acceleration. More... | |
Vec3D | getGravity () const |
Returns the gravitational acceleration. More... | |
void | setBackgroundDrag (Mdouble backgroundDrag) |
Simple access function to turn on a background drag. The force of particleVelocity*drag is applied (note, it allowd to be negaitve i.e. create energy) More... | |
const Mdouble | getBackgroundDrag () const |
Return the background drag. More... | |
void | setDimension (unsigned int newDim) |
Sets both the system dimensions and the particle dimensionality. More... | |
void | setSystemDimensions (unsigned int newDim) |
Sets the system dimensionality. More... | |
unsigned int | getSystemDimensions () const |
Returns the system dimensionality. More... | |
void | setParticleDimensions (unsigned int particleDimensions) |
Sets the particle dimensionality. More... | |
unsigned int | getParticleDimensions () const |
Returns the particle dimensionality. More... | |
std::string | getRestartVersion () const |
This is to take into account for different Mercury versions. Returns the version of the restart file. More... | |
void | setRestartVersion (std::string newRV) |
Sets restart_version. More... | |
bool | getRestarted () const |
Returns the flag denoting if the simulation was restarted or not. More... | |
void | setRestarted (bool newRestartedFlag) |
Allows to set the flag stating if the simulation is to be restarted or not. More... | |
bool | getAppend () const |
Returns whether the "append" option is on or off. More... | |
void | setAppend (bool newAppendFlag) |
Sets whether the "append" option is on or off. More... | |
Mdouble | getElasticEnergy () const |
Returns the global elastic energy within the system. More... | |
Mdouble | getKineticEnergy () const |
Returns the global kinetic energy stored in the system. More... | |
Mdouble | getGravitationalEnergy () const |
Returns the global gravitational potential energy stored in the system. More... | |
Mdouble | getRotationalEnergy () const |
JMFT Returns the global rotational energy stored in the system. More... | |
Mdouble | getTotalEnergy () const |
Mdouble | getTotalMass () const |
JMFT: Return the total mass of the system, excluding fixed particles. More... | |
Vec3D | getCentreOfMass () const |
JMFT: Return the centre of mass of the system, excluding fixed particles. More... | |
Vec3D | getTotalMomentum () const |
JMFT: Return the total momentum of the system, excluding fixed particles. More... | |
double | getCPUTime () |
double | getWallTime () |
virtual void | hGridInsertParticle (BaseParticle *obj UNUSED) |
virtual void | hGridUpdateParticle (BaseParticle *obj UNUSED) |
virtual void | hGridRemoveParticle (BaseParticle *obj UNUSED) |
bool | mpiIsInCommunicationZone (BaseParticle *particle) |
Checks if the position of the particle is in an mpi communication zone or not. More... | |
bool | mpiInsertParticleCheck (BaseParticle *P) |
Function that checks if the mpi particle should really be inserted by the current domain. More... | |
void | insertGhostParticle (BaseParticle *P) |
This function inserts a particle in the mpi communication boundaries. More... | |
void | updateGhostGrid (BaseParticle *P) |
Checks if the Domain/periodic interaction distance needs to be updated and updates it accordingly. More... | |
virtual void | gatherContactStatistics (unsigned int index1, int index2, Vec3D Contact, Mdouble delta, Mdouble ctheta, Mdouble fdotn, Mdouble fdott, Vec3D P1_P2_normal_, Vec3D P1_P2_tangential) |
//Not unsigned index because of possible wall collisions. More... | |
void | setNumberOfDomains (std::vector< unsigned > direction) |
Sets the number of domains in x-,y- and z-direction. Required for parallel computations. More... | |
void | splitDomain (DomainSplit domainSplit) |
std::vector< unsigned > | getNumberOfDomains () |
returns the number of domains More... | |
Domain * | getCurrentDomain () |
Function that returns a pointer to the domain corresponding to the processor. More... | |
void | removeOldFiles () const |
void | setMeanVelocity (Vec3D V_mean_goal) |
This function will help you set a fixed kinetic energy and mean velocity in your system. More... | |
void | setMeanVelocityAndKineticEnergy (Vec3D V_mean_goal, Mdouble Ek_goal) |
This function will help you set a fixed kinetic energy and mean velocity in your system. More... | |
Mdouble | getTotalVolume () const |
Get the total volume of the cuboid system. More... | |
Matrix3D | getKineticStress () const |
Calculate the kinetic stress tensor in the system averaged over the whole volume. More... | |
Matrix3D | getStaticStress () const |
Calculate the static stress tensor in the system averaged over the whole volume. More... | |
Matrix3D | getTotalStress () const |
Calculate the total stress tensor in the system averaged over the whole volume. More... | |
virtual void | handleParticleRemoval (unsigned int id) |
Handles the removal of particles from the particleHandler. More... | |
virtual void | handleParticleAddition (unsigned int id, BaseParticle *p) |
void | writePythonFileForVTKVisualisation () const |
void | setWritePythonFileForVTKVisualisation (bool forceWritePythonFileForVTKVisualisation) |
bool | getWritePythonFileForVTKVisualisation () const |
WallVTKWriter & | getWallVTKWriter () |
Protected Member Functions | |
void | actionsBeforeTimeStep () override |
Calls Chute::cleanChute(). More... | |
void | cleanChute () |
Deletes all outflow particles once every 100 time steps. More... | |
virtual void | createBottom () |
Creates the chute bottom, which can be either flat or one of three flavours of rough. More... | |
virtual void | addFlowParticlesCompactly () |
Add initial flow particles in a dense packing. More... | |
virtual SphericalParticle | createFlowParticle () |
void | printTime () const override |
prints time, max time and number of particles More... | |
Protected Member Functions inherited from Mercury3D | |
void | hGridFindContactsWithinTargetCell (int x, int y, int z, unsigned int l) |
Finds contacts between particles in the target cell. More... | |
void | hGridFindContactsWithTargetCell (int x, int y, int z, unsigned int l, BaseParticle *obj) |
Finds contacts between the BaseParticle and the target cell. More... | |
void | computeWallForces (BaseWall *w) override |
Compute contacts with a wall. More... | |
void | hGridFindParticlesWithTargetCell (int x, int y, int z, unsigned int l, BaseParticle *obj, std::vector< BaseParticle * > &list) |
Finds particles within target cell and stores them in a list. More... | |
void | hGridGetInteractingParticleList (BaseParticle *obj, std::vector< BaseParticle * > &list) override |
Obtains all neighbour particles of a given object, obtained from the hgrid. More... | |
void | computeInternalForces (BaseParticle *obj) override |
Finds contacts with the BaseParticle; avoids multiple checks. More... | |
bool | hGridHasContactsInTargetCell (int x, int y, int z, unsigned int l, const BaseParticle *obj) const |
Tests if the BaseParticle has contacts with other Particles in the target cell. More... | |
bool | hGridHasParticleContacts (const BaseParticle *obj) override |
Tests if a BaseParticle has any contacts in the HGrid. More... | |
void | hGridRemoveParticle (BaseParticle *obj) override |
Removes a BaseParticle from the HGrid. More... | |
void | hGridUpdateParticle (BaseParticle *obj) override |
Updates the cell (not the level) of a BaseParticle. More... | |
Protected Member Functions inherited from MercuryBase | |
void | hGridRebuild () |
This sets up the parameters required for the contact model. More... | |
void | hGridInsertParticle (BaseParticle *obj) final |
Inserts a single Particle to current grid. More... | |
void | hGridUpdateMove (BaseParticle *iP, Mdouble move) final |
Computes the relative displacement of the given BaseParticle and updates the currentMaxRelativeDisplacement_ accordingly. More... | |
void | hGridActionsBeforeIntegration () override |
Resets the currentMaxRelativeDisplacement_ to 0. More... | |
void | hGridActionsAfterIntegration () override |
This function has to be called before integrateBeforeForceComputation. More... | |
HGrid * | getHGrid () |
Gets the HGrid used by this problem. More... | |
const HGrid * | getHGrid () const |
Gets the HGrid used by this problem, const version. More... | |
bool | readNextArgument (int &i, int argc, char *argv[]) override |
Reads the next command line argument. More... | |
Protected Member Functions inherited from DPMBase | |
virtual void | computeAllForces () |
Computes all the forces acting on the particles using the BaseInteractable::setForce() and BaseInteractable::setTorque() More... | |
virtual void | computeInternalForce (BaseParticle *, BaseParticle *) |
Computes the forces between two particles (internal in the sense that the sum over all these forces is zero i.e. fully modelled forces) More... | |
virtual void | computeExternalForces (BaseParticle *) |
Computes the external forces, such as gravity, acting on particles. More... | |
virtual void | computeForcesDueToWalls (BaseParticle *, BaseWall *) |
Computes the forces on the particles due to the walls (normals are outward normals) More... | |
virtual void | actionsOnRestart () |
A virtual function where the users can add extra code which is executed only when the code is restarted. More... | |
virtual void | actionsBeforeTimeLoop () |
A virtual function. Allows one to carry out any operations before the start of the time loop. More... | |
virtual void | computeAdditionalForces () |
A virtual function which allows to define operations to be executed prior to the OMP force collect. More... | |
virtual void | actionsAfterSolve () |
A virtual function which allows to define operations to be executed after the solve(). More... | |
virtual void | actionsAfterTimeStep () |
A virtual function which allows to define operations to be executed after time step. More... | |
void | writeVTKFiles () const |
virtual void | outputXBallsData (std::ostream &os) const |
This function writes the location of the walls and particles in a format the XBalls program can read. For more information on the XBalls program, see Visualising data in xballs. More... | |
virtual void | outputXBallsDataParticle (unsigned int i, unsigned int format, std::ostream &os) const |
This function writes out the particle locations into an output stream in a format the XBalls program can read. For more information on the XBalls program, see Visualising data in xballs. More... | |
virtual void | writeEneHeader (std::ostream &os) const |
Writes a header with a certain format for ENE file. More... | |
virtual void | writeFstatHeader (std::ostream &os) const |
Writes a header with a certain format for FStat file. More... | |
virtual void | writeEneTimeStep (std::ostream &os) const |
Write the global kinetic, potential energy, etc. in the system. More... | |
virtual void | initialiseStatistics () |
virtual void | outputStatistics () |
void | gatherContactStatistics () |
virtual void | processStatistics (bool) |
virtual void | finishStatistics () |
virtual void | integrateBeforeForceComputation () |
Update particles' and walls' positions and velocities before force computation. More... | |
virtual void | integrateAfterForceComputation () |
Update particles' and walls' positions and velocities after force computation. More... | |
virtual void | checkInteractionWithBoundaries () |
There are a range of boundaries one could implement depending on ones' problem. This methods checks for interactions between particles and such range of boundaries. See BaseBoundary.h and all the boundaries in the Boundaries folder. More... | |
void | setFixedParticles (unsigned int n) |
Sets a number, n , of particles in the particleHandler as "fixed particles". More... | |
virtual bool | continueSolve () const |
A virtual function for deciding whether to continue the simulation, based on a user-specified criterion. More... | |
void | outputInteractionDetails () const |
Displays the interaction details corresponding to the pointer objects in the interaction handler. More... | |
bool | isTimeEqualTo (Mdouble time) const |
Checks whether the input variable "time" is the current time in the simulation. More... | |
void | removeDuplicatePeriodicParticles () |
Removes periodic duplicate Particles. More... | |
void | checkAndDuplicatePeriodicParticles () |
For simulations using periodic boundaries, checks and adds particles when necessary into the particle handler. See DPMBase.cc and PeriodicBoundary.cc for more details. More... | |
void | performGhostParticleUpdate () |
When the Verlet scheme updates the positions and velocities of particles, ghost particles will need an update as wel. Their status will also be updated accordingly. More... | |
void | deleteGhostParticles (std::set< BaseParticle * > &particlesToBeDeleted) |
void | synchroniseParticle (BaseParticle *, unsigned fromProcessor=0) |
void | performGhostVelocityUpdate () |
updates the final time-step velocity of the ghost particles More... | |
void | setSoftStop () |
function for setting sigaction constructor. More... | |
Private Attributes | |
Mdouble | chuteAngle_ |
chute angle in degrees More... | |
Mdouble | fixedParticleRadius_ |
radius of the fixed particles at the bottom More... | |
Mdouble | fixedParticleSpacing_ |
spacing of the fixed particles at the bottom (center distance / diameter - 1) More... | |
Mdouble | minInflowParticleRadius_ |
minimal radius of inflowing particles More... | |
Mdouble | maxInflowParticleRadius_ |
maximal radius of inflowing particles More... | |
Mdouble | inflowVelocity_ |
Average inflow velocity in x-direction. More... | |
Mdouble | inflowVelocityVariance_ |
Inflow velocity variance in x-direction (in ratio of inflowVelocity_) More... | |
Mdouble | inflowHeight_ |
Height of inflow. More... | |
RoughBottomType | roughBottomType_ |
Determines the type of rough bottom created (if any). See also the enum RoughBottomType at the beginning of this header file. More... | |
unsigned int | maxFailed_ |
indicates how many attempts are made to insert a new particle into the insertion boundary before the boundary is considered filled. More... | |
InsertionBoundary * | insertionBoundary_ |
(Pointer to) the Chute's insertion boundary More... | |
bool | isChutePeriodic_ |
Determines whether the chute has periodic (TRUE) or solid (FALSE) walls in the Y-direction. More... | |
Additional Inherited Members | |
Public Types inherited from DPMBase | |
enum class | ReadOptions : int { ReadAll , ReadNoInteractions , ReadNoParticlesAndInteractions } |
enum class | DomainSplit { X , Y , Z , XY , XZ , YZ , XYZ } |
Static Public Member Functions inherited from DPMBase | |
static void | incrementRunNumberInFile () |
Increment the run Number (counter value) stored in the file_counter (COUNTER_DONOTDEL) by 1 and store the new value in the counter file. More... | |
static int | readRunNumberFromFile () |
Read the run number or the counter from the counter file (COUNTER_DONOTDEL) More... | |
static bool | areInContact (const BaseParticle *pI, const BaseParticle *pJ) |
Checks if two particle are in contact or is there any positive overlap. More... | |
Public Attributes inherited from DPMBase | |
SpeciesHandler | speciesHandler |
A handler to that stores the species type i.e. LinearViscoelasticSpecies, etc. More... | |
RNG | random |
This is a random generator, often used for setting up the initial conditions etc... More... | |
ParticleHandler | particleHandler |
An object of the class ParticleHandler, contains the pointers to all the particles created. More... | |
ParticleHandler | paoloParticleHandler |
Fake particleHandler created by Paolo needed temporary by just Paolo. More... | |
WallHandler | wallHandler |
An object of the class WallHandler. Contains pointers to all the walls created. More... | |
BoundaryHandler | boundaryHandler |
An object of the class BoundaryHandler which concerns insertion and deletion of particles into or from regions. More... | |
PeriodicBoundaryHandler | periodicBoundaryHandler |
Internal handler that deals with periodic boundaries, especially in a parallel build. More... | |
DomainHandler | domainHandler |
An object of the class DomainHandler which deals with parallel code. More... | |
InteractionHandler | interactionHandler |
An object of the class InteractionHandler. More... | |
CGHandler | cgHandler |
Object of the class cgHandler. More... | |
File | dataFile |
An instance of class File to handle in- and output into a .data file. More... | |
File | fStatFile |
An instance of class File to handle in- and output into a .fstat file. More... | |
File | eneFile |
An instance of class File to handle in- and output into a .ene file. More... | |
File | restartFile |
An instance of class File to handle in- and output into a .restart file. More... | |
File | statFile |
An instance of class File to handle in- and output into a .stat file. More... | |
File | interactionFile |
File class to handle in- and output into .interactions file. This file hold information about interactions. More... | |
Time | clock_ |
record when the simulation started More... | |
Static Protected Member Functions inherited from DPMBase | |
static void | signalHandler (int signal) |
signal handler function. More... | |
Creates chutes with different bottoms. Inherits from Mercury3D (-> MercuryBase -> DPMBase).
Chute adds three new effects as compared to a 'normal' Mercury3D object: the gravity direction can be set using the ChuteAngle variable, a (smooth or rough) bottom wall is created by default, and some basic inflow and outflow routines are added.
Chute::Chute | ( | ) |
This is the default constructor. All it does is set sensible defaults.
Default constructor.
References constructor(), DEBUG, and logger.
|
explicit |
Copy constructor, converts an existing DPMBase problem into a Chute problem.
Copy constructor with a DPMBase object as an argument. This constructor basically 'upgrades' a DPMBase object to one of the Chute class. NB: The copy constructor of DPMBase has to be called because the link from DPMBase to MercuryBase is virtual.
[in] | other | object of DPMBase class |
References constructor(), DEBUG, and logger.
|
explicit |
Copy constructor, converts an existing MercuryBase problem into a Chute problem.
Copy constructor with a MercuryBase object as an argument. This constructor basically 'upgrades' a MercuryBase object to one of the Chute class. NB: The copy constructor of DPMBase has to be called because the link from DPMBase to MercuryBase is virtual.
[in] | other | object of MercuryBase class |
References constructor(), DEBUG, and logger.
|
explicit |
Copy constructor, converts an existing Mercury3D problem into a Chute problem.
Copy constructor with a Mercury3D object as an argument. This constructor basically 'upgrades' a Mercury3D object to one of the Chute class. NB: The copy constructor of DPMBase has to be called because the link from DPMBase to MercuryBase is virtual.
[in] | other | object of DPMBase class |
References constructor(), DEBUG, and logger.
Chute::Chute | ( | const Chute & | other | ) |
Default copy constructor.
'normal' copy constructor. This is a shallow copy, namely of the insertionBoundary, only the pointer is copied instead of the entire boundary.
[in] | other | Chute object to be copied |
|
overrideprotectedvirtual |
Calls Chute::cleanChute().
Applies all necessary actions before the next time step. In this case, it only calls Chute::cleanChute().
Reimplemented from DPMBase.
Reimplemented in ChuteBottom.
References cleanChute().
|
protectedvirtual |
Add initial flow particles in a dense packing.
References MercuryBase::checkParticleForInteraction(), BaseHandler< T >::copyAndAddObject(), createFlowParticle(), mathsFunc::cubic(), DEBUG, getChuteLength(), getChuteWidth(), getInflowHeight(), getInflowParticleRadius(), getMaxInflowParticleRadius(), ParticleHandler::getNumberOfObjects(), BaseHandler< T >::getSize(), INFO, logger, DPMBase::particleHandler, setInflowHeight(), BaseHandler< T >::setStorageCapacity(), and DPMBase::setZMax().
Referenced by ChutePeriodicDemo::setupInitialConditions().
|
protected |
Deletes all outflow particles once every 100 time steps.
Removes all particles which are outside the horizontal window, i.e. all particles with an x-direction position greater than xMax_ or smaller than xMin_. The removal operation is performed once every 100 time steps.
References DEBUG, ParticleHandler::getNumberOfObjects(), BaseHandler< T >::getObject(), BaseInteractable::getPosition(), DPMBase::getXMax(), DPMBase::getXMin(), constants::i, logger, DPMBase::particleHandler, ParticleHandler::removeObject(), and Vec3D::X.
Referenced by SmoothChute::actionsBeforeTimeStep(), and actionsBeforeTimeStep().
void Chute::constructor | ( | ) |
This is the actual constructor METHOD; it is called by all constructors above (except the default copy constructor).
constructor METHOD, which sets all chute properties to something sensible. This method should be called by all constructors except for the copy constructor that accepts another Chute.
References insertionBoundary_, isChutePeriodic_, MONOLAYER_DISORDERED, setChuteAngle(), setFixedParticleRadius(), setInflowHeight(), setInflowParticleRadius(), setInflowVelocity(), setInflowVelocityVariance(), setMaxFailed(), and setRoughBottomType().
Referenced by Chute().
|
protectedvirtual |
Creates the chute bottom, which can be either flat or one of three flavours of rough.
Creates the bottom of the chute; either:
Reimplemented in FlowRule, VariableBottom, and VariableBottom.
References MercuryBase::checkParticleForInteraction(), BaseHandler< T >::copyAndAddObject(), FLAT, getFixedParticleRadius(), getFixedParticleSpacing(), BaseHandler< T >::getObject(), BaseParticle::getRadius(), RNG::getRandomNumber(), ChuteBottom::getThickness(), DPMBase::getXMax(), DPMBase::getXMin(), DPMBase::getYMax(), DPMBase::getYMin(), DPMBase::getZMin(), MercuryBase::hGridActionsBeforeTimeLoop(), MercuryBase::hGridActionsBeforeTimeStep(), constants::i, INFO, logger, ChuteBottom::makeRoughBottom(), MONOLAYER_DISORDERED, MONOLAYER_ORDERED, MONOLAYER_TRIANGULAR, DPMBase::particleHandler, DPMBase::random, roughBottomType_, InfiniteWall::set(), BaseParticle::setHandler(), setInflowParticleRadius(), BaseInteractable::setPosition(), BaseParticle::setRadius(), BaseParticle::setSpecies(), BaseWall::setSpecies(), BaseInteractable::setVelocity(), DPMBase::speciesHandler, DPMBase::wallHandler, Vec3D::X, and Vec3D::Y.
Referenced by Funnel::setupInitialConditions(), AngleOfRepose::setupInitialConditions(), SilbertPeriodic::setupInitialConditions(), setupInitialConditions(), ChuteBottom::setupInitialConditions(), and ChuteWithHopper::setupInitialConditions().
|
protectedvirtual |
Reimplemented in ChuteWithWedge.
References getFixedParticleRadius(), getInflowHeight(), getMaxInflowParticleRadius(), getMinInflowParticleRadius(), BaseHandler< T >::getObject(), BaseParticle::getRadius(), RNG::getRandomNumber(), DPMBase::getXMax(), DPMBase::getXMin(), DPMBase::getYMax(), DPMBase::getYMin(), DPMBase::getZMin(), DPMBase::random, BaseInteractable::setPosition(), BaseParticle::setRadius(), BaseParticle::setSpecies(), BaseInteractable::setVelocity(), and DPMBase::speciesHandler.
Referenced by addFlowParticlesCompactly().
Mdouble Chute::getChuteAngle | ( | ) | const |
Returns the chute angle (in radians)
Returns the chute angle (as compared to the horizontal plane) in RADIANS
References chuteAngle_.
Referenced by ChuteWithHopper::addHopper(), Funnel::create_funnel(), Funnel::create_inflow_particle(), SegregationWithHopper::create_inflow_particle(), ChuteWithHopper::getMaximumVelocityInducedByGravity(), SilbertHstop::IsAboveCurve(), main(), ChuteWithHopper::setHopper(), ChuteWithHopper::setupInitialConditions(), and SilbertHstop::solve_analytic().
Mdouble Chute::getChuteAngleDegrees | ( | ) | const |
Returns the chute angle (in degrees)
Returns the chute angle (as compared to the horizontal plane) in DEGREES
References chuteAngle_, and constants::pi.
Referenced by LawinenBox::actionsBeforeTimeStep(), PointIsAboveCurve(), LawinenBox::printTime(), SilbertPeriodic::printTime(), vibratedBed::printTime(), LawinenBox::rotateChute(), AngleOfRepose::set_study(), SilbertPeriodic::set_study(), FlowRule::setName(), Funnel::setName_(), SilbertHstop::solve_analytic(), and LawinenBox::writeEneTimeStep().
Mdouble Chute::getChuteLength | ( | ) | const |
Returns the chute length (X-direction)
Returns the length of the chute. Actually returns xMax_, while xMin_ is assumed to have stayed 0.
References DPMBase::getXMax().
Referenced by ChutePeriodic::add_flow_particles(), SilbertPeriodic::add_flow_particles(), addFlowParticlesCompactly(), Funnel::setName_(), and SilbertPeriodic::setupInitialConditions().
Mdouble Chute::getChuteWidth | ( | ) | const |
Returns the chute width (Y-direction)
Returns the width of the chute. Actually returns yMax_, while it assumes yMin_ to have stayed 0.
References DPMBase::getYMax().
Referenced by ChutePeriodic::add_flow_particles(), SilbertPeriodic::add_flow_particles(), addFlowParticlesCompactly(), AngleOfRepose::create_inflow_particle(), main(), ContractionWithPeriodicInflow::set_symmetric_contraction(), ChuteWithPeriodicInflowAndContraction::set_symmetric_contraction(), ChuteWithContraction::set_symmetric_contraction(), Funnel::setName_(), and SilbertPeriodic::setupInitialConditions().
Mdouble Chute::getFixedParticleRadius | ( | ) | const |
Returns the particle radius of the fixed particles which constitute the (rough) chute bottom.
Returns the radius of the fixed particles at the bottom (in case of a rough bottom; see also Chute::createBottom() ).
References fixedParticleRadius_.
Referenced by Chutebelt::actionsOnRestart(), Funnel::create_funnel(), ChuteWithContraction::create_inflow_particle(), AngleOfRepose::create_inflow_particle(), createBottom(), createFlowParticle(), main(), PointIsAboveCurve(), AngleOfRepose::run(), AngleOfRepose::set_study(), SilbertPeriodic::set_study(), Funnel::setName_(), FlowRule::setPolydispersity(), Cstatic2d::setupInitialConditions(), AngleOfRepose::setupInitialConditions(), SilbertPeriodic::setupInitialConditions(), ChuteBottom::setupInitialConditions(), ChuteWithHopper::setupInitialConditions(), and Funnel::update_funnel().
Mdouble Chute::getFixedParticleSpacing | ( | ) | const |
Returns the particle radius of the fixed particles which constitute the (rough) chute bottom; used in triangular packing only.
Returns the spacing of the fixed particles at the bottom (used in triangular packing only).
References fixedParticleSpacing_.
Referenced by createBottom().
Mdouble Chute::getInflowHeight | ( | ) | const |
Returns the maximum inflow height (Z-direction)
Returns the maximum height at which particles are introduced into the chute
References inflowHeight_.
Referenced by ChutePeriodic::add_flow_particles(), SilbertPeriodic::add_flow_particles(), addFlowParticlesCompactly(), Funnel::create_funnel(), ChutePeriodic::create_inflow_particle(), Funnel::create_inflow_particle(), FlowRule::create_inflow_particle(), SilbertPeriodic::create_inflow_particle(), createFlowParticle(), AngleOfRepose::get_H(), SilbertPeriodic::get_H(), main(), PointIsAboveCurve(), SilbertPeriodic::set_H(), AngleOfRepose::set_study(), SilbertPeriodic::set_study(), and FlowRule::setName().
Mdouble Chute::getInflowParticleRadius | ( | ) | const |
Returns the average radius of inflow particles.
Returns the mean of the min. and max. inflow particle radius.
References maxInflowParticleRadius_, and minInflowParticleRadius_.
Referenced by AngleOfRepose::actionsBeforeTimeStep(), ChutePeriodic::add_flow_particles(), addFlowParticlesCompactly(), ChutePeriodicDemo::ChutePeriodicDemo(), main(), ChuteBottom::makeRoughBottom(), statistics_while_running< T >::run(), Cstatic2d::set_particle_properties(), Cstatic3D::set_particle_properties(), Funnel::setName_(), ChutePeriodic::setup(), Cstatic2d::setupInitialConditions(), Cstatic3D::setupInitialConditions(), AngleOfRepose::setupInitialConditions(), and ChuteBottom::setupInitialConditions().
Mdouble Chute::getInflowVelocity | ( | ) | const |
Returns the average inflow velocity.
Returns the mean velocity at which the particles enter the chute
References inflowVelocity_.
Referenced by ChuteWithContraction::create_inflow_particle(), Funnel::create_inflow_particle(), SilbertPeriodic::create_inflow_particle(), and main().
Mdouble Chute::getInflowVelocityVariance | ( | ) | const |
Returns the inflow velocity variance.
Returns the variance of the velocities of the inflow particles around the mean
References inflowVelocityVariance_.
Referenced by ChuteWithContraction::create_inflow_particle(), Funnel::create_inflow_particle(), and main().
bool Chute::getIsPeriodic | ( | ) | const |
Returns whether the chute is periodic in Y.
Returns isChutePeriodic_, which is TRUE if the side walls (i.e. the walls in the Y-direction) of the chute are periodic
References isChutePeriodic_.
Referenced by Chutebelt::actionsAfterTimeStep(), ChuteWithPeriodicInflow::Check_and_Duplicate_Periodic_Particle(), Funnel::create_walls(), ChuteWithPeriodicInflow::integrateBeforeForceComputation(), and Chutebelt::setupInitialConditions().
unsigned int Chute::getMaxFailed | ( | ) | const |
Returns the number of times a particle will be tried to be added to the insertion boundary.
Returns the number of times that the boundary may fail to insert a particle, before the boundary is considered filled.
References maxFailed_.
Referenced by AngleOfRepose::actionsBeforeTimeStep(), and ChuteWithHopper::setupInitialConditions().
Mdouble Chute::getMaxInflowParticleRadius | ( | ) | const |
Returns the maximum radius of inflow particles.
Returns the maximum inflow particle radius
References maxInflowParticleRadius_.
Referenced by ChutePeriodic::add_flow_particles(), SilbertPeriodic::add_flow_particles(), addFlowParticlesCompactly(), ChuteWithPeriodicInflow::Check_and_Duplicate_Periodic_Particle(), LawinenBox::create_inflow_particle(), ChutePeriodic::create_inflow_particle(), ChuteWithContraction::create_inflow_particle(), Funnel::create_inflow_particle(), AngleOfRepose::create_inflow_particle(), FlowRule::create_inflow_particle(), SilbertPeriodic::create_inflow_particle(), createFlowParticle(), FlowRule::getPolydispersity(), main(), ChuteBottom::makeRoughBottom(), Cstatic2d::set_particle_properties(), Cstatic3D::set_particle_properties(), FlowRule::setPolydispersity(), SilbertPeriodic::setupInitialConditions(), setupInitialConditions(), ChuteBottom::setupInitialConditions(), and ChuteWithHopper::setupInitialConditions().
Mdouble Chute::getMinInflowParticleRadius | ( | ) | const |
returns the minimum radius of inflow particles
returns the minimum inflow particle radius
References minInflowParticleRadius_.
Referenced by LawinenBox::create_inflow_particle(), ChutePeriodic::create_inflow_particle(), ChuteWithContraction::create_inflow_particle(), Funnel::create_inflow_particle(), AngleOfRepose::create_inflow_particle(), FlowRule::create_inflow_particle(), SilbertPeriodic::create_inflow_particle(), createFlowParticle(), FlowRule::getPolydispersity(), ChuteWithHopper::getTimeStepRatio(), main(), ChuteBottom::makeRoughBottom(), Cstatic2d::set_particle_properties(), Cstatic3D::set_particle_properties(), FlowRule::setPolydispersity(), setupInitialConditions(), ChuteBottom::setupInitialConditions(), and ChuteWithHopper::setupInitialConditions().
RoughBottomType Chute::getRoughBottomType | ( | ) | const |
Returns the type of (rough) bottom of the chute.
Returns the roughBottomType_, which determines the type of rough bottom of the chute.
References roughBottomType_.
void Chute::makeChutePeriodic | ( | ) |
This makes the chute periodic in Y.
Sets the side walls (i.e. the walls in the Y-direction) of the chute to be made periodic
References isChutePeriodic_.
Referenced by ChutePeriodicDemo::ChutePeriodicDemo(), main(), and ChutePeriodic::setup().
|
overrideprotectedvirtual |
prints time, max time and number of particles
Prints the current simulation time, the maximum simulation time, and the current number of particles in the chute.
Reimplemented from DPMBase.
References ParticleHandler::getNumberOfObjects(), DPMBase::getTime(), DPMBase::getTimeMax(), INFO, logger, and DPMBase::particleHandler.
|
overridevirtual |
Reads all chute properties from an istream.
Reads the object properties from an istream, usually a restart file. Note that there are several versions of restart files at the moment, this method determines which version this restart file is by itself.
[in,out] | is | the istream from which is read, usually a restart file. |
Reimplemented from DPMBase.
Reimplemented in ChuteWithHopper.
References chuteAngle_, fixedParticleRadius_, DPMBase::getRestartVersion(), inflowHeight_, inflowVelocity_, inflowVelocityVariance_, INFO, logger, maxFailed_, maxInflowParticleRadius_, minInflowParticleRadius_, constants::pi, MercuryBase::read(), setRoughBottomType(), and WARN.
Referenced by Funnel::read(), and ChuteWithHopper::read().
This method can be used for reading object properties from a string.
this reads chute parameters from a string. It is used to read command-line arguments. Note that the last else calls the readNextArgument of the parent, Mercury3D.
[in] | i | the index of the input parameter to be read |
[in] | argc | number of input parameters |
[in] | argv[] | pointer to the (first character of the) actual string of input parameters. |
Reimplemented from DPMBase.
Reimplemented in ChuteWithHopper.
References constants::i, MercuryBase::readNextArgument(), setChuteAngle(), setChuteLength(), setChuteWidth(), setFixedParticleRadius(), setInflowHeight(), setInflowParticleRadius(), setInflowVelocity(), setMaxFailed(), setRoughBottomType(), and DPMBase::setZMax().
Referenced by AxisymmetricHopper::readNextArgument(), Funnel::readNextArgument(), SilbertPeriodic::readNextArgument(), ChuteWithHopper::readNextArgument(), and GranularJet::readNextArgument().
void Chute::setChuteAngle | ( | Mdouble | chuteAngle | ) |
Sets gravity vector according to chute angle (in degrees)
Sets the angle of the chute as compared to the horizontal (i.e., the normal to gravity). NB: since the X and Z directions are defined to be parallel and normal to the chute bottom respectively, this function effectively sets the GRAVITY angle.
[in] | chuteAngle | the angle of the chute relative to the horizontal plane in DEGREES. |
References DPMBase::getGravity(), Vec3D::getLength(), logger, setChuteAngleAndMagnitudeOfGravity(), and WARN.
Referenced by Chutebelt::actionsAfterTimeStep(), LawinenBox::actionsBeforeTimeStep(), constructor(), main(), ChuteBottom::makeRoughBottom(), PointIsAboveCurve(), readNextArgument(), LawinenBox::rotateChute(), FlowRule::run(), vibratedBed::run(), SilbertPeriodic::set_study(), and ChutePeriodic::setup().
Sets gravity vector according to chute angle (in degrees)
Sets the angle of the chute as compared to the horizontal (i.e., the normal to gravity), as well as the magnitude of gravity. NB: since the X and Z directions are defined to be parallel and normal to the chute bottom, respectively, this function effectively sets the GRAVITY angle.
[in] | chuteAngle | the angle of the chute relative to the horizontal plane in DEGREES |
[in] | gravity | magnitude of the gravity vector |
References chuteAngle_, mathsFunc::cos(), logger, constants::pi, DPMBase::setGravity(), mathsFunc::sin(), and WARN.
Referenced by AngleOfRepose::AngleOfRepose(), main(), setChuteAngle(), and SilbertPeriodic::SilbertPeriodic().
|
virtual |
Sets the chute length (X-direction)
Sets the length of the chute. Actually sets xMax_, while xMin_ is assumed to have stayed 0.
[in] | chuteLength | length of the chute |
Reimplemented in ChuteWithHopper.
References DPMBase::setXMax().
Referenced by ChutePeriodicDemo::ChutePeriodicDemo(), main(), readNextArgument(), ChutePeriodic::setup(), and SilbertPeriodic::SilbertPeriodic().
void Chute::setChuteWidth | ( | Mdouble | chuteWidth | ) |
Sets the chute width (Y-direction)
Sets the width of the chute. Actually sets yMax_, while it assumes yMin_ to have stayed 0.
[in] | chuteWidth | width of the chute |
References DPMBase::setYMax().
Referenced by AngleOfRepose::AngleOfRepose(), ChutePeriodicDemo::ChutePeriodicDemo(), main(), readNextArgument(), ChutePeriodic::setup(), and SilbertPeriodic::SilbertPeriodic().
void Chute::setFixedParticleRadius | ( | Mdouble | fixedParticleRadius | ) |
Sets the particle radius of the fixed particles which constitute the (rough) chute bottom.
Sets the radius of the fixed particles at the bottom (in case of a rough bottom; see also Chute::createBottom() ).
[in] | fixedParticleRadius | The radius of the fixed particles on the bottom as an MDouble. |
References fixedParticleRadius_, logger, and WARN.
Referenced by AngleOfRepose::AngleOfRepose(), ChutePeriodicDemo::ChutePeriodicDemo(), constructor(), LawinenBox::LawinenBox(), main(), ChuteBottom::makeRoughBottom(), readNextArgument(), Cstatic2d::set_particle_properties(), Cstatic3D::set_particle_properties(), AngleOfRepose::set_study(), SilbertPeriodic::set_study(), FlowRule::setPolydispersity(), ChutePeriodic::setup(), SilbertPeriodic::SilbertPeriodic(), and statistics_while_running< T >::statistics_while_running().
void Chute::setFixedParticleSpacing | ( | Mdouble | fixedParticleSpacing | ) |
Sets the spacing of the fixed particles which constitute the (rough) chute bottom; used in triangular packing only.
Sets the spacing of the fixed particles at the bottom (used in triangular packing only), which is defined as: spacing = particle center-center distance / particle diameter - 1 (Jing PRE 2016).
[in] | fixedParticleSpacing | The spacing of the fixed particles on the bottom as an MDouble. |
References fixedParticleSpacing_, logger, and WARN.
void Chute::setInflowHeight | ( | Mdouble | inflowHeight | ) |
Sets maximum inflow height (Z-direction)
Sets the maximum height in Z-direction at which particles are introduced into the chute.
[in] | inflowHeight | the maximum inflow height to be set |
References inflowHeight_, and DPMBase::setZMax().
Referenced by ChutePeriodic::add_flow_particles(), SilbertPeriodic::add_flow_particles(), addFlowParticlesCompactly(), ChutePeriodicDemo::ChutePeriodicDemo(), constructor(), main(), ChuteBottom::makeRoughBottom(), PointIsAboveCurve(), readNextArgument(), FlowRule::run(), vibratedBed::run(), AngleOfRepose::set_H(), SilbertPeriodic::set_H(), SilbertPeriodic::set_study(), and Funnel::update_funnel().
void Chute::setInflowParticleRadius | ( | Mdouble | inflowParticleRadius | ) |
Sets the radius of the inflow particles to a single one (i.e. ensures a monodisperse inflow).
Sets the radius of particles flowing in at the start of the chute to be constant and the given one (i.e., the minimum and maximum allowed radius are set equal to each other and the argument).
[in] | inflowParticleRadius | the radius of the particles entering the chute |
References logger, maxInflowParticleRadius_, minInflowParticleRadius_, and WARN.
Referenced by AngleOfRepose::AngleOfRepose(), ChutePeriodicDemo::ChutePeriodicDemo(), constructor(), FlowRule::createBottom(), createBottom(), LawinenBox::LawinenBox(), main(), readNextArgument(), Cstatic2d::set_particle_properties(), Cstatic3D::set_particle_properties(), ChutePeriodic::setup(), SilbertPeriodic::SilbertPeriodic(), and statistics_while_running< T >::statistics_while_running().
void Chute::setInflowParticleRadius | ( | Mdouble | minInflowParticleRadius, |
Mdouble | maxInflowParticleRadius | ||
) |
Sets the minimum and maximum radius of the inflow particles.
Sets the minimum and maximum radius possible of particles entering the chute.
[in] | minInflowParticleRadius | the minimum radius |
[in] | maxInflowParticleRadius | the maximum radius |
References logger, maxInflowParticleRadius_, minInflowParticleRadius_, and WARN.
void Chute::setInflowVelocity | ( | Mdouble | inflowVelocity | ) |
Sets the average inflow velocity.
Sets the mean velocity at which the particles enter the chute
[in] | inflowVelocity | the mean velocity at which the particles enter the chute |
References inflowVelocity_, logger, and WARN.
Referenced by ChuteWithContraction::ChuteWithContraction(), constructor(), main(), readNextArgument(), and SilbertPeriodic::SilbertPeriodic().
void Chute::setInflowVelocityVariance | ( | Mdouble | inflowVelocityVariance | ) |
Sets the inflow velocity variance.
Sets the variance of the velocities of the inflow particles around the mean
[in] | inflowVelocityVariance | the variance of the velocities of the inflow particles around the mean (expressed in ratio of the mean, i.e. the inflowVelocity_). |
References ERROR, inflowVelocityVariance_, and logger.
Referenced by constructor(), and main().
void Chute::setInsertionBoundary | ( | InsertionBoundary * | insertionBoundary | ) |
Sets the chute insertion boundary.
Sets the insertion boundary of the chute.
[in] | insertionBoundary | the insertion boundary of the chute |
References insertionBoundary_.
Referenced by ChuteWithHopper::setupInitialConditions().
void Chute::setMaxFailed | ( | unsigned int | maxFailed | ) |
Sets the number of times a particle will be tried to be added to the insertion boundary.
Sets the number of times that the boundary may fail to insert a particle,before the boundary is considered filled.
[in] | maxFailed | The number of times that the boundary may fail to insert a particle |
References maxFailed_.
Referenced by constructor(), main(), readNextArgument(), and ChutePeriodic::setup().
void Chute::setMaxInflowParticleRadius | ( | Mdouble | maxInflowParticleRadius | ) |
Sets the maximum radius of inflow particles.
Sets the maximum radius possible of particles entering the chute.
[in] | maxInflowParticleRadius | the maximum radius |
References logger, maxInflowParticleRadius_, minInflowParticleRadius_, and WARN.
Referenced by FlowRule::setPolydispersity().
void Chute::setMinInflowParticleRadius | ( | Mdouble | minInflowParticleRadius | ) |
sets the minimum radius of inflow particles
Sets the minimum radius possible of particles entering the chute.
[in] | minInflowParticleRadius | the minimum radius |
References logger, maxInflowParticleRadius_, minInflowParticleRadius_, and WARN.
Referenced by FlowRule::setPolydispersity().
void Chute::setRoughBottomType | ( | RoughBottomType | roughBottomType | ) |
Sets the type of rough bottom of the chute.
Sets the roughBottomType_. Possible choices are defined by the enum RoughBottomType, which is defined in Chute.h:
[in] | roughBottomType | The bottom type to be set |
References roughBottomType_.
Referenced by AngleOfRepose::AngleOfRepose(), ChutePeriodicDemo::ChutePeriodicDemo(), constructor(), main(), ChuteBottom::makeRoughBottom(), read(), readNextArgument(), ChutePeriodic::setup(), SilbertPeriodic::SilbertPeriodic(), SilbertHstop::solve_analytic(), and vibratedBed::vibratedBed().
void Chute::setRoughBottomType | ( | std::string | roughBottomTypeString | ) |
Sets the type of rough bottom of the chute, using a string with the EXACT enum type as input.
Same as Chute::setRoughBottomType(RoughBottomType roughBottomType), but takes a string identical to the RoughBottomType as an argument instead.
References FATAL, FLAT, logger, MONOLAYER_ORDERED, and roughBottomType_.
|
overridevirtual |
Creates bottom, side walls and a particle insertion boundary.
Adds side walls, a bottom and a particle insertion boundary
Reimplemented from DPMBase.
Reimplemented in ChuteWithHopper, and ChuteBottom.
References DPMBase::boundaryHandler, BaseHandler< T >::copyAndAddObject(), createBottom(), ERROR, FATAL, fixedParticleRadius_, getMaxInflowParticleRadius(), getMinInflowParticleRadius(), DPMBase::getName(), BaseHandler< T >::getNumberOfObjects(), BaseHandler< T >::getObject(), DPMBase::getXMax(), DPMBase::getXMin(), DPMBase::getYMax(), DPMBase::getYMin(), DPMBase::getZMax(), DPMBase::getZMin(), inflowVelocity_, inflowVelocityVariance_, insertionBoundary_, logger, maxFailed_, ChuteInsertionBoundary::set(), PSD::setDistributionUniform(), InsertionBoundary::setPSD(), BaseParticle::setSpecies(), setupSideWalls(), and DPMBase::speciesHandler.
Referenced by ChutePeriodic::setupInitialConditions(), Vreman::setupInitialConditions(), ChutePeriodicDemo::setupInitialConditions(), ChuteWithWedge::setupInitialConditions(), SegregationPeriodic::setupInitialConditions(), and Chutebelt::setupInitialConditions().
void Chute::setupSideWalls | ( | ) |
Creates chute side walls (either solid or periodic)
Create side walls (i.e., in the Y-direction), which can be either periodic (if isChutePeriodic_ is TRUE), or solid (if isChutePeriodic_ is FALSE).
References DPMBase::boundaryHandler, BaseHandler< T >::copyAndAddObject(), BaseHandler< T >::getObject(), DPMBase::getYMax(), DPMBase::getYMin(), isChutePeriodic_, PeriodicBoundary::set(), InfiniteWall::set(), BaseWall::setSpecies(), DPMBase::speciesHandler, and DPMBase::wallHandler.
Referenced by setupInitialConditions(), and ChuteWithHopper::setupInitialConditions().
|
overridevirtual |
This function writes the Chute properties to an ostream, and adds the properties of ALL chute particles as well.
Writes object's properties to an ostream, usually a restart file, but it can also for example write to the screen by passing std::cout as the ostream.
[in] | os | the ostream to which the properties have to be written. |
[in] | writeAllParticles | If TRUE, the properties of ALL particles in the particleHandler are written to the ostream. If FALSE, only the properties of the first two particles in the handler are written to the ostream (see DPMBase::write(std::ostream& os, bool writeAllParticles)). The default value is true. |
Reimplemented from DPMBase.
Reimplemented in ChuteWithHopper.
References chuteAngle_, fixedParticleRadius_, InsertionBoundary::getNumberOfParticlesInserted(), inflowHeight_, inflowVelocity_, inflowVelocityVariance_, insertionBoundary_, maxFailed_, maxInflowParticleRadius_, minInflowParticleRadius_, roughBottomType_, and MercuryBase::write().
Referenced by SilbertPeriodic::add_flow_particles(), ChuteWithPeriodicInflowAndContraction::ChuteWithPeriodicInflowAndContraction(), ContractionWithPeriodicInflow::ContractionWithPeriodicInflow(), main(), ChuteWithContraction::setup_particles_initial_conditions(), ChutePeriodic::setupInitialConditions(), Cstatic2d::setupInitialConditions(), Cstatic3D::setupInitialConditions(), CLiveStatistics< T >::setupInitialConditions(), statistics_while_running< T >::setupInitialConditions(), statistics_while_running< T >::statistics_while_running(), Funnel::write(), and ChuteWithHopper::write().
|
private |
chute angle in degrees
Referenced by getChuteAngle(), getChuteAngleDegrees(), read(), setChuteAngleAndMagnitudeOfGravity(), and write().
|
private |
radius of the fixed particles at the bottom
Referenced by getFixedParticleRadius(), read(), setFixedParticleRadius(), setupInitialConditions(), and write().
|
private |
spacing of the fixed particles at the bottom (center distance / diameter - 1)
Referenced by getFixedParticleSpacing(), and setFixedParticleSpacing().
|
private |
Height of inflow.
Referenced by getInflowHeight(), read(), setInflowHeight(), and write().
|
private |
Average inflow velocity in x-direction.
Referenced by getInflowVelocity(), read(), setInflowVelocity(), setupInitialConditions(), and write().
|
private |
Inflow velocity variance in x-direction (in ratio of inflowVelocity_)
Referenced by getInflowVelocityVariance(), read(), setInflowVelocityVariance(), setupInitialConditions(), and write().
|
private |
(Pointer to) the Chute's insertion boundary
Referenced by constructor(), setInsertionBoundary(), setupInitialConditions(), and write().
|
private |
Determines whether the chute has periodic (TRUE) or solid (FALSE) walls in the Y-direction.
Referenced by constructor(), getIsPeriodic(), makeChutePeriodic(), and setupSideWalls().
|
private |
indicates how many attempts are made to insert a new particle into the insertion boundary before the boundary is considered filled.
Referenced by getMaxFailed(), read(), setMaxFailed(), setupInitialConditions(), and write().
|
private |
maximal radius of inflowing particles
Referenced by getInflowParticleRadius(), getMaxInflowParticleRadius(), read(), setInflowParticleRadius(), setMaxInflowParticleRadius(), setMinInflowParticleRadius(), and write().
|
private |
minimal radius of inflowing particles
Referenced by getInflowParticleRadius(), getMinInflowParticleRadius(), read(), setInflowParticleRadius(), setMaxInflowParticleRadius(), setMinInflowParticleRadius(), and write().
|
private |
Determines the type of rough bottom created (if any). See also the enum RoughBottomType at the beginning of this header file.
Referenced by createBottom(), getRoughBottomType(), setRoughBottomType(), and write().