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