www.mooseframework.org
Functions
main.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ main()

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

Definition at line 22 of file main.C.

23 {
24  // Initialize MPI, solvers and MOOSE
25  MooseInit init(argc, argv);
26 
27  // Register this application's MooseApp and any it depends on
29 
30  // Create an instance of the application and store it in a smart pointer for easy cleanup
31  std::shared_ptr<MooseApp> app =
32  AppFactory::createAppShared("FunctionalExpansionToolsTestApp", argc, argv);
33 
34  // Execute the application
35  app->run();
36 
37  return 0;
38 }
FunctionalExpansionToolsTestApp::registerApps
static void registerApps()
Definition: FunctionalExpansionToolsTestApp.C:48