test.cpp File Reference
#include "SilbertPeriodic.h"
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cmath>
#include <sys/types.h>
#include <sys/stat.h>

Functions

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

Function Documentation

◆ main()

int main ( int argc  ,
char argv[] 
)
36 {
37  SilbertPeriodic problem;
38  problem.setTimeMax(1e-2);
39  problem.readArguments(argc, argv);
40  problem.solve();
41 }
bool readArguments(int argc, char *argv[])
Can interpret main function input arguments that are passed by the driver codes.
Definition: DPMBase.cc:4391
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: flowRuleDiego_HeightAngle.cpp:35

References DPMBase::readArguments(), DPMBase::setTimeMax(), and DPMBase::solve().