Peano
Loading...
Searching...
No Matches
equation.py
Go to the documentation of this file.
1# This file is part of the ExaHyPE2 project. For conditions of distribution and
2# use, please see the copyright notice at www.peano-framework.org
3from exahype2.solvers.PDETerms import PDETerms
4
5
6class Equation:
7 dimensions = 2
8 num_unknowns = 0
9 num_auxiliary_variables = 0
10 is_linear = False
11 use_diffusive_flux = False
12
13 @staticmethod
15 return PDETerms.User_Defined_Implementation
16
17 @staticmethod
18 def flux():
19 return PDETerms.None_Implementation
20
21 @staticmethod
22 def ncp():
23 return PDETerms.None_Implementation
24
25 @staticmethod
26 def source():
27 return PDETerms.None_Implementation
28
29 @staticmethod
31 return PDETerms.None_Implementation