Coverage for pySDC/projects/DAE/misc/meshDAE.py: 100%
3 statements
« prev ^ index » next coverage.py v7.6.7, created at 2024-11-16 14:51 +0000
« prev ^ index » next coverage.py v7.6.7, created at 2024-11-16 14:51 +0000
1from pySDC.implementations.datatype_classes.mesh import MultiComponentMesh
4class MeshDAE(MultiComponentMesh):
5 r"""
6 Datatype for DAE problems. The solution of the problem can be splitted in the differential part
7 and in an algebraic part.
9 This data type can be used for the solution of the problem itself as well as for its derivative.
10 """
12 components = ['diff', 'alg']