Mercury3DRestart.cpp File Reference
#include <iostream>
#include "Mercury3DRestart.h"

Classes

class  Mercury3DRestarter
 

Functions

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

Function Documentation

◆ main()

int main ( int argc  ,
char argv[] 
)
49 {
50  if (argc < 2)
51  {
52  logger(ERROR, "Please enter the name of the simulation you want to restart and, optionally, the name of the "
53  "simulation after restart");
54  }
56  problem.setSaveCount(2);
57  problem.setMaxWallTime(10);
58  problem.setClusterCommand("");
59  problem.solve(argc, argv);
60 }
Logger< MERCURYDPM_LOGLEVEL > logger("MercuryKernel")
Definition of different loggers with certain modules. A user can define its own custom logger here.
LL< Log::ERROR > ERROR
Error log level.
Definition: Logger.cc:32
Definition: Mercury3DRestart.cpp:10
Constructor for SteadyAxisymAdvectionDiffusion problem
Definition: steady_axisym_advection_diffusion.cc:213

References ERROR, logger, and problem.