ElmerFoamFSI  2.0
ElmerFoamFSI is fluid-solid interaction simulation application built up from OpenFOAM CFD and Elmer CSM coupled through the IMPACT multiphysics software integration infrastructure.
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Macros Groups Pages
int main ( int  argc,
char *  argv[] 
)

Definition at line 319 of file ElmerFSI/trunk/src/SolverModuleDriver.C.

References SolverModuleDriver::finalize(), SolverModuleDriver::init(), and SolverModuleDriver::run().

319  {
320 
321  SolverModuleDriver driverObject;
322 
323  driverObject.init(argc, argv);
324  driverObject.run();
325  driverObject.finalize();
326 
327  std::ofstream Outfile;
328 
329  Outfile.open("out.dat");
330 
331  Outfile << "howdy!" << std::endl;
332  Outfile << "1.2 4.2 5.6 7.8" << std::endl;
333  Outfile << " blargity blarg blarg" << std::endl;
334 
335  return 0;
336 }
int init(int argc, char *argv[])

Here is the call graph for this function: