forked from openmc-dev/data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make_compton.py
executable file
·71 lines (52 loc) · 2.17 KB
/
make_compton.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
#!/usr/bin/env python
from pathlib import Path
import tarfile
import numpy as np
import h5py
from utils import download
base_url = 'http://geant4.cern.ch/support/source/'
version = '6.48'
filename = f'G4EMLOW.{version}.tar.gz'
# ==============================================================================
# DOWNLOAD FILES FROM GEANT4 SITE
download(base_url + filename)
# ==============================================================================
# EXTRACT FILES FROM TGZ
g4dir = Path(f'G4EMLOW{version}')
if not g4dir.is_dir():
with tarfile.open(filename, 'r') as tgz:
print(f'Extracting {filename}...')
tgz.extractall()
# ==============================================================================
# GENERATE COMPTON PROFILE HDF5 FILE
print('Generating compton_profiles.h5...')
shell_file = g4dir / 'doppler' / 'shell-doppler.dat'
with open(shell_file, 'r') as shell, h5py.File('compton_profiles.h5', 'w') as f:
# Read/write electron momentum values
pz = np.loadtxt(g4dir / 'doppler' / 'p-biggs.dat')
f.create_dataset('pz', data=pz)
for z in range(1, 101):
# Create group for this element
group = f.create_group(f'{z:03}')
# Read data into one long array
path = g4dir / 'doppler' / f'profile-{z}.dat'
with open(path, 'r') as profile:
j = np.fromstring(profile.read(), sep=' ')
# Determine number of electron shells and reshape. Profiles are
# tabulated against a grid of 31 momentum values.
n_shells = j.size // 31
j.shape = (n_shells, 31)
# Write Compton profile for this Z
group.create_dataset('J', data=j)
# Determine binding energies and number of electrons for each shell
num_electrons = []
binding_energy = []
while True:
words = shell.readline().split()
if words[0] == '-1':
break
num_electrons.append(float(words[0]))
binding_energy.append(float(words[1]))
# Write binding energies and number of electrons
group.create_dataset('num_electrons', data=num_electrons)
group.create_dataset('binding_energy', data=binding_energy)