mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 17:38:02 +00:00
f0ab6fc9b4
* Add TNG catalogue script * Add imoprt * Add TNG box * Add import * Fix little bug * Add TNG300-1 * Add shell scripts * Organize .gitignore * Add scatter to file name * Add argument scatter * Add threshold on mass * Update nb * Add scatter argument * Add scattering of radial positions * Update nb * Update script
29 lines
613 B
Bash
Executable file
29 lines
613 B
Bash
Executable file
nthreads=1
|
|
memory=32
|
|
on_login=${1}
|
|
queue="berg"
|
|
env="/mnt/zfsusers/rstiskalek/csiborgtools/venv_csiborg/bin/python"
|
|
file="field_sample.py"
|
|
|
|
|
|
nsims="-1"
|
|
simname="TNG300-1"
|
|
survey="TNG300-1"
|
|
smooth_scales="0 2 4 8 16"
|
|
kind="density"
|
|
MAS="PCS"
|
|
grid=1024
|
|
scatter=0
|
|
|
|
|
|
pythoncm="$env $file --nsims $nsims --simname $simname --survey $survey --smooth_scales $smooth_scales --kind $kind --MAS $MAS --grid $grid --scatter $scatter"
|
|
if [ $on_login -eq 1 ]; then
|
|
echo $pythoncm
|
|
$pythoncm
|
|
else
|
|
cm="addqueue -q $queue -n $nthreads -m $memory $pythoncm"
|
|
echo "Submitting:"
|
|
echo $cm
|
|
echo
|
|
eval $cm
|
|
fi
|