mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 19:08:03 +00:00
1c736aaede
* Add imports * Remove file * Add boxsize argument * Add script * Update script * Edit script * Add nbs
24 lines
489 B
Bash
Executable file
24 lines
489 B
Bash
Executable file
nthreads=1
|
|
memory=64
|
|
on_login=${1}
|
|
queue="berg"
|
|
env="/mnt/zfsusers/rstiskalek/csiborgtools/venv_csiborg/bin/python"
|
|
file="field_prop.py"
|
|
kind="density"
|
|
simname="csiborg1"
|
|
nsims="9844"
|
|
MAS="PCS"
|
|
grid=1024
|
|
|
|
|
|
pythoncm="$env $file --nsims $nsims --simname $simname --kind $kind --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
|