1 """Check lines for continuity information"""
2
3 import re
4
5 continutityRegExp="^time step continuity errors : sum local = (.+), global = (.+), cumulative = (.+)$"
6
7
8
9
10 from GeneralLineAnalyzer import GeneralLineAnalyzer
11
13 """Parses line for continuity information"""
14
15 - def __init__(self,doTimelines=True,doFiles=True):
18
20 self.files.write("continuity",self.parent.getTime(),match.groups())
21
23 self.lines.setValue("Global",match.groups()[1])
24 self.lines.setValue("Cumulative",match.groups()[2])
25
27 """Parses line for continuity information"""
28
31
32
33
34
35
36
37
38
39
40
42 """Parses line for continuity information"""
43
46
47
48
49
50
51
52
53
54