VariableBottomQuick.cpp File Reference
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cmath>
#include "scr/ChuteWithHopper.h"

Classes

class  VariableBottom
 

Functions

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

Function Documentation

◆ main()

int main ( int argc  UNUSED,
char *argv[]  UNUSED 
)
128 {
130  problem.setName("VariableBottomQuick");
131  //problem.makeChutePeriodic();
132  problem.set_chute_parameters();
133  //problem.load_restart_data("../VariableBottomQuick.3/VariableBottomQuick.restart");
134  problem.set_silbert_parameters();
135  problem.setSaveCount(1000);
136 
137  //Hopper properties
138  double ExitHeight = 20.0, ExitLength = 20.0, hopperAngle_ = 45.0, hopperLength_ = 4.0 * ExitLength;
139  problem.set_Hopper(ExitLength,ExitHeight,hopperAngle_,hopperLength_);
140  problem.setHopperFillPercentage(50.0);
141  problem.setMaxFailed(40);
142  problem.readArguments(argc, argv);
143  problem.solve();
144 }
Definition: LongPeriodicChute.cpp:18
Constructor for SteadyAxisymAdvectionDiffusion problem
Definition: steady_axisym_advection_diffusion.cc:213

References problem.