https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Transient.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#pragma once
11
12#include "TransientBase.h"
13
14class FEProbleSolve;
15
21{
22public:
24
26
27 virtual void init() override;
28
32 virtual Real relativeSolutionDifferenceNorm(bool check_aux) const override;
33
34protected:
35 virtual std::set<TimeIntegrator *> getTimeIntegrators() const override;
36
39};
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
const InputParameters & parameters() const
Get the parameters of the object.
Definition MooseBase.h:131
Base class for transient executioners that use a FixedPointSolve solve object for multiapp-main app i...
Transient executioners usually loop through a number of timesteps... calling solve() for each timeste...
Definition Transient.h:21
static InputParameters validParams()
Definition Transient.C:20
virtual void init() override
Initialize the executioner.
Definition Transient.C:37
virtual std::set< TimeIntegrator * > getTimeIntegrators() const override
Get the time integrators (time integration scheme) used Note that because some systems might be stead...
Definition Transient.C:61
virtual Real relativeSolutionDifferenceNorm(bool check_aux) const override
The relative L2 norm of the difference between solution and old solution vector.
Definition Transient.C:45
FEProblemSolve _feproblem_solve
inner-most solve object to perform Newton solve with PETSc on every time step
Definition Transient.h:38