本文整理汇总了C++中FEProblem::getMooseApp方法的典型用法代码示例。如果您正苦于以下问题:C++ FEProblem::getMooseApp方法的具体用法?C++ FEProblem::getMooseApp怎么用?C++ FEProblem::getMooseApp使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FEProblem
的用法示例。
在下文中一共展示了FEProblem::getMooseApp方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ConsoleStreamInterface
Adaptivity::Adaptivity(FEProblem & subproblem) :
ConsoleStreamInterface(subproblem.getMooseApp()),
_subproblem(subproblem),
_mesh(_subproblem.mesh()),
_mesh_refinement_on(false),
_initial_steps(0),
_steps(0),
_print_mesh_changed(false),
_t(_subproblem.time()),
_step(_subproblem.timeStep()),
_interval(1),
_start_time(-std::numeric_limits<Real>::max()),
_stop_time(std::numeric_limits<Real>::max()),
_cycles_per_step(1),
_use_new_system(false),
_max_h_level(0),
_recompute_markers_during_cycles(false)
{
}
示例2: ConsoleStreamInterface
Adaptivity::Adaptivity(FEProblem & subproblem) :
ConsoleStreamInterface(subproblem.getMooseApp()),
_subproblem(subproblem),
_mesh(_subproblem.mesh()),
_mesh_refinement_on(false),
_mesh_refinement(NULL),
_error_estimator(NULL),
_error(NULL),
_displaced_problem(_subproblem.getDisplacedProblem()),
_displaced_mesh_refinement(NULL),
_initial_steps(0),
_steps(0),
_print_mesh_changed(false),
_t(_subproblem.time()),
_start_time(-std::numeric_limits<Real>::max()),
_stop_time(std::numeric_limits<Real>::max()),
_cycles_per_step(1),
_use_new_system(false),
_max_h_level(0)
{
}