-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmybodyUiO.ini
133 lines (91 loc) · 3.22 KB
/
mybodyUiO.ini
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
###Path of directories and filenames###
#data and source needs to changed to correct paths
#Path of the source directory
source = /mn/stornext/u2/simenten/Master/masteroppgave/mybody-mpi/source/
#Path to data folder
data = /mn/stornext/u2/simenten/Master/masteroppgave/mybody-mpi/data/
#Name of the file where the data from a N-Body simulation is stored
inFile = ramses.dat
#particles_binary.dat
#Name of the file containing only one Halo
haloFile = Halo.dat
#Name of file that we save and load data from
#Uses my own format
DataFile = data.dat
##Name of outfiles
#Name of the file the size of all Halos are saved to
outSize = size.dat
#Name of the file the ositions are saved in to
outPosition = positions.dat
#Name of the file where output data from my program is stored
outFile = data.dat
outPhi = phi.dat
#
outBounding = bounding.dat
###Numbers used in the halo finder###
#Can be tweaked to change the results
#Boxsize
BoxSize = 10.0
#Times the background radiation density
ScaleDensity = 200
#Scaling factor of the linking length, b
b = 0.28
#Throw away all halos with less particles than this
HaloLimit = 20;
#Numbers of particles needed to create a halo seed
HaloSeed = 20
#Number of particles to be saved to file when we create a smaler dataset.
NrParticles2File = 2097151
#Fraction of the particles in a halo to be assigned to a subhalo
f = 0.7
###Physical constants
#Critical density
RhoC = 278000000000
#2.78*e+11
#Dark matter density parameter
OmegaD = 0.27
#Mass
Mass = 559240
#9.38e9
#9380000000
#
#Gravitational constant, m^3 kg^-1 s^-2
#G = 0.00447
G = 0.000000004302
#Gravitational constant, m^3 kg^-1 s^-2
#G = 0.00000000006673
#Number of particles used to find the linking length
#Higher number is more acurate, but alot slower
NrLinking = 10000
#rho_vir
rhovir = 1
#Max number of halos expected to be found
#Used when reciving data from the slave processors
MaxHalos = 1000
#Nr of particles needed before The linking lenth is increased
NrParticlesDouble = 12
#The scale the LinkingLength is increased by,
#when the given number of particles is reched
LinkingLenghtScale = 3
###Automatic###
#These variables are calculated within the program
#These can be used to overwrite them, but changes must be made
#within the program for the override to take effect
#Distance in phase space that particles
#must be within to be considered in the same halo
PhaseDistance = 12003
#Number of boxes to divide the grid into
Width = 322
#Automatic
#Manualy set linking length
LinkingLength = 0.00620079
###Constants###
##Definite constants##
#do not change these unless you know what you are doing
#and have changed the code in the CParticle and CHalo class
#Number of numbers in a particle
ParticleSize = 8
#Number of numbers in a halo, in adition to the particles
HaloSize = 14
#Numbers of extra spaces allocated in a arrat
ArrayExtraSize = 10