本文整理汇总了C++中MooseApp::run方法的典型用法代码示例。如果您正苦于以下问题:C++ MooseApp::run方法的具体用法?C++ MooseApp::run怎么用?C++ MooseApp::run使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MooseApp
的用法示例。
在下文中一共展示了MooseApp::run方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
void
MinimalApp::createMinimalAppTest()
{
const char *argv[1] = { "\0" };
MooseApp * app = AppFactory::createApp("MooseUnitApp", 1, (char**)argv);
app->parameters().set<bool>("minimal") = true;
app->run();
CPPUNIT_ASSERT(app->executioner()->name() == "Executioner");
CPPUNIT_ASSERT(app->executioner()->feProblem().name() == "MOOSE Problem");
CPPUNIT_ASSERT(app->executioner()->feProblem().mesh().nElem() == 1);
delete app;
}
示例2: main
// Begin the main program.
int main(int argc, char *argv[])
{
// Initialize MPI, solvers and MOOSE
MooseInit init(argc, argv);
// Register this application's MooseApp and any it depends on
HyraxApp::registerApps();
// This creates dynamic memory that we're responsible for deleting
MooseApp * app = AppFactory::createApp("HyraxApp", argc, argv);
// Execute the application
app->run();
// Free up the memory we created earlier
delete app;
return 0;
}
示例3: main
// Begin the main program.
int main(int argc, char *argv[])
{
// Initialize MPI, solvers and MOOSE
MooseInit init(argc, argv);
// Register this application's MooseApp and any it depends on
SolidMechanicsApp::registerApps();
// This creates dynamic memory that we're responsible for deleting
MooseApp * app = AppFactory::createApp("SolidMechanicsApp", argc, argv);
app->setCheckUnusedFlag(true);
app->setErrorOverridden();
// Execute the application
app->run();
// Free up the memory we created earlier
delete app;
return 0;
}
示例4: main
// Begin the main program.
int main(int argc, char *argv[])
{
// Initialize MPI, solvers and MOOSE
MooseInit init(argc, argv);
// Register this application's MooseApp and any it depends on
LinearElasticityApp::registerApps();
// This creates dynamic memory that we're responsible for deleting
MooseApp * app = AppFactory::createApp("LinearElasticityApp", argc, argv);
app->setCheckUnusedFlag(true);
app->setErrorOverridden();
app->legacyUoInitializationDefault() = true;
app->legacyUoAuxComputationDefault() = false;
// Execute the application
app->run();
// Free up the memory we created earlier
delete app;
return 0;
}