Beispiel #1
0
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)
{
}
Beispiel #2
0
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)
{
}