Revision 3b78a732861fd89766bd4b923e8859c5a0ac54cf authored by Marius Peper on 01 December 2020, 12:01:06 UTC, committed by Marius Peper on 01 December 2020, 12:01:06 UTC
This commit adds that sage uses the virial mass to estimate the virial radius,
see line 166 of model_misc.c .
1 parent f01e9f9
Raw File
FAQ
Q1: I get strange errors of inexistent haloes or trees. Why?

A1: Try doing a clean of the post-simulation pipeline,

./project make clean-post-simulation

or of the full pipeline. In principle,

./project make clean-pipeline

should clean out all the files that might be problematic.  Try removing
other temporary built files in the .build/ subdirectories with cosmological
calculations, which in order are:

n-body-init/
haloes/
galaxies/
mergertrees/
voids/


Q2: The .mk files carry out calculations that I think
are unnecessary since they have already been done. Why?

A2: You can understand the exact reasoning used by 'make'
if you add the --debug option to your ./project command,
e.g.

./project make create-galaxies --debug

But best store all output in a log file, e.g.

(./project make create-galaxies --debug 2>&1) | tee mylogfile.1

See also Q1/A1.
back to top