https://mooseframework.inl.gov
LinearTimeIntegratorInterface.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 // Moose includes
13 #include "MooseTypes.h"
14 
15 // Forward declarations
16 class SystemBase;
17 class LinearSystem;
18 
19 namespace libMesh
20 {
21 template <typename T>
22 class NumericVector;
23 class LinearImplicitSystem;
24 } // namespace libMesh
25 
31 {
32 public:
34 
40  const std::vector<Real> & factors = {}) const;
41 
44  virtual Real timeDerivativeMatrixContribution(const Real factor) const;
45 
46 protected:
49 
52 };
libMesh::LinearImplicitSystem * _linear_implicit_system
Nonlinear implicit system, if applicable; otherwise, nullptr.
LinearSystem * _linear_system
Pointer to the linear system, can happen that we dont have any.
The following methods are specializations for using the libMesh::Parallel::packed_range_* routines fo...
virtual Real timeDerivativeMatrixContribution(const Real factor) const
The time derivative&#39;s contribution to the right hand side of a linear system.
Base class for a system (of equations)
Definition: SystemBase.h:84
virtual Real timeDerivativeRHSContribution(dof_id_type dof_id, const std::vector< Real > &factors={}) const
The time derivative&#39;s contribution to the right hand side of a linear system.
Interface class for routines and member variables for time integrators relying on linear system assem...
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
Linear system to be solved.
Definition: LinearSystem.h:35
uint8_t dof_id_type