1 """Check lines for timestep information"""
2
3 import re
4
5 continutityRegExp="^deltaT = (.+)$"
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("deltaT",self.parent.getTime(),match.groups())
21
23 self.lines.setValue("deltaT",match.groups()[0])
24
26 """Parses line for continuity information"""
27
30
31
32
34 """Parses line for continuity information"""
35
38