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,doTimelines=True,doFiles=True):
19
21 self.files.write("deltaT",self.parent.getTime(),match.groups())
22
24 self.lines.setValue("deltaT",match.groups()[0])
25
27 """Parses line for continuity information"""
28
31
32
33
35 """Parses line for continuity information"""
36
39