mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 17:28:02 +00:00
d578c71b83
* Move files * Move files * Add galactic to RA/dec * Update sky maps * Add projected fields * Remove old import * Quick update * Add IO * Add imports * Update imports * Add basic file
23 lines
438 B
Bash
Executable file
23 lines
438 B
Bash
Executable file
memory=4
|
|
on_login=${1}
|
|
nthreads=5
|
|
|
|
queue="berg"
|
|
env="/mnt/users/rstiskalek/csiborgtools/venv_csiborg/bin/python"
|
|
file="mah_random.py"
|
|
|
|
min_logmass=13.0
|
|
simname="csiborg2_random"
|
|
|
|
|
|
pythoncm="$env $file --simname $simname --min_logmass $min_logmass"
|
|
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
|