forked from thornewolf-academic/cfc-simulation-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimulation_run_utils.py
119 lines (108 loc) · 4.02 KB
/
simulation_run_utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
from dataclasses import dataclass
import json
import datetime
class SimulationRun:
'''
A large dataclass designed to assist in moving all information pertaining
to a single simulation run around. Offsers a large set of utility
functions for ease of development.
'''
def __init__(self, *args, inline=False, as_json=None, **kwargs):
'''
Initialize the class.
Args:
*args: inline arguments to be passed directly into a
SimulationRunConfig object.
inline: indicate whether *args is fully complete and should be
passed down to SimulationRunConfig.
as_json: An optional json String to load the configuration for
the run from.
**kwargs: keywork arguments to be passed to SimulationRunConfig.
Returns:
Implicitly returns the class.
'''
if inline:
self.config = SimulationRunConfig(*args, **kwargs)
elif as_json:
self.config = SimulationRunConfig(**json.loads(as_json))
else:
self.config = SimulationRunConfig()
def __repr__(self):
return self.json
def __eq__(self, other):
return self.json == other.json
@property
def json(self):
return json.dumps({
'id': self.config.id,
'status': self.config.status,
'date_created': str(self.config.date_created),
'reynolds': self.config.reynolds,
'mesh_n': self.config.mesh_n,
'mesh_m': self.config.mesh_m,
'jet_start': self.config.jet_start,
'jet_end': self.config.jet_end,
'jet_amp': self.config.jet_amp,
'jet_freq': self.config.jet_freq,
'a_tilde': self.config.a_tilde,
'dt': self.config.dt,
'tolerance': self.config.tolerance,
'bcs': self.config.bcs,
'continued_run': self.config.continued_run,
'additional_steps': self.config.additional_steps,
'time_between_reports': self.config.time_between_reports,
'iterations_between_writes': self.config.iterations_between_writes,
'completion_time': self.config.completion_time
}, indent=1)
@property
def name(self):
'''
Allows for runs to handle the formatting in which they should be named.
'''
ans = ''
if self.config.continued_run is not None:
ans = f'Run{self.config.id}_JetA{self.config.jet_amp}_JetF{self.config.jet_freq}'
else:
ans = f'Run{self.config.id}_JetA{self.config.jet_amp}_JetF{self.config.jet_freq}'
ans = ans.replace('.','p')
ans = ans.replace(' ','_')
return ans
@property
def runtime(self):
'''
Calculate total runtime
'''
# TODO: time since creation is not runtime. It should be time since
# start. Need additional data within the config.
if self.config.completion_time is None:
d = datetime.datetime.now() - self.datetime_created
else:
d = self.datetime_completed - self.datetime_created
return f'{d.total_seconds()//3600:.0f}h {(d.total_seconds()%3600)//60:.0f}m {d.total_seconds()%60:.0f}s'
@property
def datetime_created(self):
return datetime.datetime.fromisoformat(self.config.date_created)
@property
def datetime_completed(self):
return datetime.datetime.fromisoformat(self.config.completion_time)
@dataclass
class SimulationRunConfig:
id: int = None
status: str = None
date_created: datetime.datetime = None
reynolds: int = None
mesh_n: int = None
mesh_m: int = None
jet_start: int = None
jet_end: int = None
jet_amp: float = None
jet_freq: float = None
a_tilde: float = None
dt: float = 1e-3
tolerance: float = None
bcs: int = None
continued_run: str = None
additional_steps: int = 1000
time_between_reports: int = 100
iterations_between_writes: int = 500
completion_time: datetime.datetime = None