LongPeriodicChute.cpp File Reference
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cmath>
#include <sys/types.h>
#include <sys/stat.h>
#include "scr/Chute.h"
#include "scr/Time.h"

Classes

class  VariableBottom
 

Functions

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

Variables

bool quick = true
 

Function Documentation

◆ main()

int main ( int argc  ,
char argv[] 
)
124 {
125  VariableBottom problem;
126  problem.setName("LongChute");
127 
128  problem.set_silbert_parameters();
129  problem.set_chute_parameters();
130  problem.readArguments(argc, argv);
131  problem.solve();
132 }
void setName(const std::string &name)
Allows to set the name of all the files (ene, data, fstat, restart, stat)
Definition: DPMBase.cc:422
bool readArguments(int argc, char *argv[])
Can interpret main function input arguments that are passed by the driver codes.
Definition: DPMBase.cc:4391
void solve()
The work horse of the code.
Definition: DPMBase.cc:4270
Definition: LongPeriodicChute.cpp:39
void set_silbert_parameters()
sets parameters of particles and time stepping to the L3 type used in Silbert's papers
Definition: LongPeriodicChute.cpp:46
void set_chute_parameters()
sets parameters of the chute
Definition: LongPeriodicChute.cpp:66

References DPMBase::readArguments(), VariableBottom::set_chute_parameters(), VariableBottom::set_silbert_parameters(), DPMBase::setName(), and DPMBase::solve().

Variable Documentation

◆ quick