CubicCell.cpp File Reference

Classes

class  CubicCell
 

Functions

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

Function Documentation

◆ main()

int main ( int argc  ,
char argv[] 
)
81 {
83  problem.setName("CubicCell");
84  problem.setSystemDimensions(3);
85  problem.setGravity(Vec3D(0.0, 0.0, 0.0));
86  problem.setXMax(problem.n);
87  problem.setYMax(problem.n);
88  problem.setZMax(problem.n);
89  problem.setTimeStep(1e-3);
90  problem.setTimeMax(10.0);
91  problem.fStatFile.setFileType(FileType::NO_FILE);
92  problem.solve();
93  return 0;
94 }
Array< double, 1, 3 > e(1./3., 0.5, 2.)
@ NO_FILE
file will not be created/read
Definition: CubicCell.cpp:13
Definition: Kernel/Math/Vector.h:30
Constructor for SteadyAxisymAdvectionDiffusion problem
Definition: steady_axisym_advection_diffusion.cc:213

References e(), NO_FILE, and problem.