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
12 @staticmethod
14 return PDETerms.User_Defined_Implementation
15
16 @staticmethod
17 def flux():
18 return PDETerms.None_Implementation
19
20 @staticmethod
21 def ncp():
22 return PDETerms.None_Implementation