1
2 """Check lines for timestep information"""
3
4 import re
5
6 continutityRegExp="^deltaT = (.+)$"
7
8
9
10
11 from GeneralLineAnalyzer import GeneralLineAnalyzer
12
14 """Parses line for continuity information"""
15
16 - def __init__(self,
17 doTimelines=True,
18 doFiles=True,
19 singleFile=False,
20 startTime=None,
21 endTime=None):
30
32 self.files.write("deltaT",self.parent.getTime(),match.groups())
33
36
38 """Parses line for continuity information"""
39
42
43
44
46 """Parses line for continuity information"""
47
50