mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 17:18: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
24 lines
474 B
Bash
Executable file
24 lines
474 B
Bash
Executable file
#!/bin/bash
|
|
nthreads=11
|
|
memory=4
|
|
queue="cmb"
|
|
env="/mnt/zfsusers/rstiskalek/csiborgtools/venv_csiborg/bin/python"
|
|
file="match_all.py"
|
|
|
|
simname="quijote"
|
|
min_logmass=13.25
|
|
nsim0=0
|
|
kind="max"
|
|
mult=10
|
|
sigma=1
|
|
verbose="false"
|
|
|
|
|
|
pythoncm="$env $file --kind $kind --simname $simname --nsim0 $nsim0 --min_logmass $min_logmass --mult $mult --sigma $sigma --verbose $verbose"
|
|
# $pythoncm
|
|
|
|
cm="addqueue -q $queue -n $nthreads -m $memory $pythoncm"
|
|
echo "Submitting:"
|
|
echo $cm
|
|
echo
|
|
$cm
|