makebottom.cpp File Reference
#include "SilbertPeriodic.h"
#include "scr/ChuteBottom.h"

Classes

class  FlowRule
 

Functions

int main (int argc UNUSED, char *argv[] UNUSED)
 

Function Documentation

◆ main()

int main ( int argc  UNUSED,
char *argv[]  UNUSED 
)
87 {
88  FlowRule problem;
89  //problem.randomize();
90  problem.setName("bottom");
91  problem.setTimeMax(0.0);
92  problem.setSaveCount(5000);
93  problem.setXMax(60);
94  problem.setYMax(80);
95  problem.setFixedParticleRadius(.502);
96  problem.set_H(2e-4);
97 
98  problem.solve();
99 }
void setFixedParticleRadius(Mdouble fixedParticleRadius)
Sets the particle radius of the fixed particles which constitute the (rough) chute bottom.
Definition: Chute.cc:653
void setSaveCount(unsigned int saveCount)
Sets File::saveCount_ for all files (ene, data, fstat, restart, stat)
Definition: DPMBase.cc:408
void setYMax(Mdouble newYMax)
Sets the value of YMax, the upper bound of the problem domain in the y-direction.
Definition: DPMBase.cc:1191
void setXMax(Mdouble newXMax)
Sets the value of XMax, the upper bound of the problem domain in the x-direction.
Definition: DPMBase.cc:1165
void setTimeMax(Mdouble newTMax)
Sets a new value for the maximum simulation duration.
Definition: DPMBase.cc:873
void solve()
The work horse of the code.
Definition: DPMBase.cc:4270
Definition: PeriodicInflow2D_Initiation.cpp:30
void setName()
Definition: bidisperse.cpp:44
void set_H(Mdouble new_)
Definition: flowRuleDiego_HeightAngle.cpp:231

References SilbertPeriodic::set_H(), Chute::setFixedParticleRadius(), FlowRule::setName(), DPMBase::setSaveCount(), DPMBase::setTimeMax(), DPMBase::setXMax(), DPMBase::setYMax(), and DPMBase::solve().