Coverage for pySDC/projects/DAE/misc/DAEMesh.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.5.0, created at 2024-04-29 09:02 +0000

1from pySDC.implementations.datatype_classes.mesh import MultiComponentMesh 

2 

3 

4class DAEMesh(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. 

8 

9 This data type can be used for the solution of the problem itself as well as for its derivative. 

10 """ 

11 

12 components = ['diff', 'alg']