-
Notifications
You must be signed in to change notification settings - Fork 15
/
simfast21
executable file
·48 lines (45 loc) · 1.82 KB
/
simfast21
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
#!/bin/sh
echo
echo SimFast21
echo Generating the simulation in directory: $1
echo
DIR="${0%/*}"
echo ------------------------------------------ Density Field ------------------------------------------
${DIR}/get_densityfield.x $1
echo
echo ------------------------------------------ Halos ------------------------------------------
${DIR}/get_halos.x $1
echo
echo ------------------------------------------ velocity field ------------------------------------------
${DIR}/get_velocityfield.x $1
echo
echo ------------------------------------------ Nonlinear density field ------------------------------------------
${DIR}/get_nldensity.x $1
echo
echo ------------------------------------------ Adjusted halo box ------------------------------------------
${DIR}/adjust_halos.x $1
echo
echo ------------------------------------------ SFRD box if needed ------------------------------------------
${DIR}/get_SFR.x $1
echo
echo ------------------------------------------ Ionization fraction ------------------------------------------
${DIR}/get_HIIbubbles.x $1
echo
echo ------------------------------------------ Epsilon over n ------------------------------------------
${DIR}/epsilonXon.x $1
echo
echo ------------------------------------------ IGM xe ------------------------------------------
${DIR}/integratexe.x $1
echo
echo ------------------------------------------ Xrays Temperature ------------------------------------------
${DIR}/integrateTempX.x $1
echo
echo ------------------------------------------ xalpha ------------------------------------------
${DIR}/xalpha.x $1
echo
echo ------------------------------------------ xc ------------------------------------------
${DIR}/xc.x $1
echo
echo ------------------------------------------ 21cm brightness temperature ------------------------------------------
${DIR}/t21.x $1
echo