mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 19:08:03 +00:00
29b37172fa
* Update LOS sampling * Bring SD back to speed * Update nb * Update script * Update requirements * Update flow chi2 calc * Update script * Add support for SFI groups * Update plot * Update script * Update script
25 lines
485 B
Bash
Executable file
25 lines
485 B
Bash
Executable file
nthreads=5
|
|
memory=40
|
|
on_login=0
|
|
queue="berg"
|
|
env="/mnt/users/rstiskalek/csiborgtools/venv_csiborg/bin/python"
|
|
file="field_los.py"
|
|
|
|
simname=${1}
|
|
catalogue=${2}
|
|
nsims="-1"
|
|
MAS="SPH"
|
|
grid=1024
|
|
|
|
|
|
pythoncm="$env $file --catalogue $catalogue --nsims $nsims --simname $simname --MAS $MAS --grid $grid"
|
|
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
|