Peano
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
3 from exahype2.solvers.PDETerms import PDETerms
4 
5 
6 class Equation:
7  dimensions = 2
8  num_unknowns = 0
9  num_auxiliary_variables = 0
10  is_linear = False
11 
12  @staticmethod
13  def eigenvalues():
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
23 
24  @staticmethod
26  return PDETerms.None_Implementation