-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathtest_simulation.py
86 lines (66 loc) · 2.28 KB
/
test_simulation.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
import pyro.mesh.boundary as bnd
import pyro.simulation_null as sim
from pyro.mesh import patch
from pyro.util import runparams
class TestSimulation:
@classmethod
def setup_class(cls):
""" this is run once for each class before any tests """
@classmethod
def teardown_class(cls):
""" this is run once for each class after all tests """
def setup_method(self):
""" this is run before each test """
self.rp = runparams.RuntimeParameters()
self.rp.params["driver.tmax"] = 1.0
self.rp.params["driver.max_steps"] = 100
self.rp.params["driver.init_tstep_factor"] = 0.5
self.rp.params["driver.max_dt_change"] = 1.2
self.rp.params["driver.fix_dt"] = -1.0
self.sim = sim.NullSimulation("test", "test", None, self.rp)
myg = patch.Grid2d(8, 16)
myd = patch.CellCenterData2d(myg)
bc = bnd.BC()
myd.register_var("a", bc)
myd.create()
self.sim.cc_data = myd
def teardown_method(self):
""" this is run after each test """
self.rp = None
self.sim = None
def test_finished_n(self):
self.sim.n = 1000
assert self.sim.finished()
def test_finished_t(self):
self.sim.cc_data.t = 2.0
assert self.sim.finished()
def test_compute_timestep(self):
# set a dt and n = 0, then init_tstep_factor should kick in
self.sim.dt = 2.0
self.sim.n = 0
self.sim.compute_timestep()
assert self.sim.dt == 1.0
# now set dt_old and a new dt and see if the max_dt_change kicks in
self.sim.n = 1.0
self.sim.dt_old = 1.0
self.sim.dt = 2.0
self.sim.compute_timestep()
assert self.sim.dt == 1.2
# now test what happens if we go over tmax
self.sim.cc_data.t = 0.75
self.sim.dt = 0.5
self.sim.compute_timestep()
assert self.sim.dt == 0.25
def test_grid_setup():
rp = runparams.RuntimeParameters()
rp.params["mesh.nx"] = 8
rp.params["mesh.ny"] = 16
rp.params["mesh.xmin"] = 0.0
rp.params["mesh.xmax"] = 1.0
rp.params["mesh.ymin"] = 0.0
rp.params["mesh.ymax"] = 2.0
g = sim.grid_setup(rp)
assert g.nx == 8
assert g.ny == 16
assert g.dx == 1.0/8
assert g.dy == 1.0/8