blob: 652fd3be36fa166babd683ee0a4230c1494b1fe5 (
plain) (
blame)
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
|
#!/usr/bin/env python3
import yt
from pathlib import Path
# This test shoots a beam of electrons at cubic embedded boundary geometry
# At time step 40, none of the particles have hit the boundary yet. At time
# step 60, all of them should have been absorbed by the boundary. In the
# absence of the cube, none of the particles would have had time to exit
# the problem domain yet.
# all particles are still there
if Path("particle_scrape_plt00040").is_dir():
filename = "particle_scrape_plt00040"
else:
filename = "Python_particle_scrape_plt00040"
ds40 = yt.load(filename)
np40 = ds40.index.particle_headers['electrons'].num_particles
assert(np40 == 612)
# all particles have been removed
if Path("particle_scrape_plt00060").is_dir():
filename = "particle_scrape_plt00060"
else:
filename = "Python_particle_scrape_plt00060"
ds60 = yt.load(filename)
np60 = ds60.index.particle_headers['electrons'].num_particles
assert(np60 == 0)
|