https://mooseframework.inl.gov
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 
14 class FEProbleSolve;
15 
20 class Transient : public TransientBase
21 {
22 public:
24 
26 
30  virtual Real relativeSolutionDifferenceNorm() override;
31 
32 protected:
33  virtual std::set<TimeIntegrator *> getTimeIntegrators() const override;
34 
37 };
Transient executioners usually loop through a number of timesteps...
Definition: Transient.h:20
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:53
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
Transient(const InputParameters &parameters)
Definition: Transient.C:30
virtual Real relativeSolutionDifferenceNorm() override
The relative L2 norm of the difference between solution and old solution vector.
Definition: Transient.C:37
Base class for transient executioners that use a FixedPointSolve solve object for multiapp-main app i...
Definition: TransientBase.h:26
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const InputParameters & parameters() const
Get the parameters of the object.
static InputParameters validParams()
Definition: Transient.C:20
FEProblemSolve _feproblem_solve
inner-most solve object to perform Newton solve with PETSc on every time step
Definition: Transient.h:36