euler_solver.h
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2018 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
13 
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 
18 
19 
20 #ifndef LIBMESH_EULER_SOLVER_H
21 #define LIBMESH_EULER_SOLVER_H
22 
23 // Local includes
25 
26 // C++ includes
27 
28 namespace libMesh
29 {
30 
44 {
45 public:
50 
55  explicit
56  EulerSolver (sys_type & s);
57 
61  virtual ~EulerSolver ();
62 
66  virtual Real error_order() const override;
67 
74  virtual bool element_residual (bool request_jacobian,
75  DiffContext &) override;
76 
83  virtual bool side_residual (bool request_jacobian,
84  DiffContext &) override;
85 
92  virtual bool nonlocal_residual (bool request_jacobian,
93  DiffContext &) override;
94 
101 
102 protected:
103 
108  virtual bool _general_residual (bool request_jacobian,
109  DiffContext &,
110  ResFuncType mass,
111  ResFuncType damping,
112  ResFuncType time_deriv,
113  ResFuncType constraint,
116 };
117 
118 
119 } // namespace libMesh
120 
121 
122 #endif // LIBMESH_EULER_SOLVER_H
virtual void reinit() override
virtual bool nonlocal_residual(bool request_jacobian, DiffContext &) override
Definition: euler_solver.C:82
virtual ~EulerSolver()
Definition: euler_solver.C:34
bool compute_second_order_eqns(bool compute_jacobian, DiffContext &c)
virtual bool element_residual(bool request_jacobian, DiffContext &) override
Definition: euler_solver.C:50
virtual bool _general_residual(bool request_jacobian, DiffContext &, ResFuncType mass, ResFuncType damping, ResFuncType time_deriv, ResFuncType constraint, ReinitFuncType reinit, bool compute_second_order_eqns)
Definition: euler_solver.C:99
void(DiffContext::* ReinitFuncType)(Real)
Definition: time_solver.h:273
virtual Real error_order() const override
Definition: euler_solver.C:40
bool(DifferentiablePhysics::* ResFuncType)(bool, DiffContext &)
Definition: time_solver.h:271
FirstOrderUnsteadySolver Parent
Definition: euler_solver.h:49
virtual bool side_residual(bool request_jacobian, DiffContext &) override
Definition: euler_solver.C:67
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
EulerSolver(sys_type &s)
Definition: euler_solver.C:27