Tweak script parameters

Bu işleme şunda yer alıyor:
Jean-Sébastien 2021-12-15 08:33:24 +01:00
ebeveyn 0c3ad996b0
işleme e774c063a4
5 değiştirilmiş dosya ile 4 ekleme ve 14 silme

Dosyayı Görüntüle

@ -53,7 +53,7 @@ clist=(0.015625 0.03125 0.0625 0.125 0.25 0.5 1 2 4 8 16 32 64 128 256 512 1024)
basedir="$(pwd)" basedir="$(pwd)"
ommin=0 ommin=0
ommax=$(($nkmax*($nkmax - 8))) # use lower branch of 1ph continuum ommax=$((0.5 * $nkmax*($nkmax + 8))) # use (half of) TG Type 1 dispersion
Nom=1000 Nom=1000
for c in $clist for c in $clist

Dosyayı Görüntüle

@ -52,10 +52,6 @@ clist=(0.015625 0.03125 0.0625 0.125 0.25 0.5 1 2 4 8 16 32 64 128 256 512 1024)
basedir="$(pwd)" basedir="$(pwd)"
ommin=0
ommax=$(($nkmax*($nkmax - 8))) # use lower branch of 1ph continuum
Nom=1000
for c in $clist for c in $clist
do do
echo 'Starting plotting of DSFs for c =' $c echo 'Starting plotting of DSFs for c =' $c

Dosyayı Görüntüle

@ -64,7 +64,7 @@ refine=0
clist_raw=() clist_raw=()
for nc in {-160..160} for nc in {-160..160}
do do
clist_raw=($clist_raw $(( 2**($nc/16.) ))) clist_raw=($clist_raw $(( 4 * 2**($nc/16.) )))
done done
# Now cast the integer values to true integers # Now cast the integer values to true integers
zmodload zsh/mathfunc zmodload zsh/mathfunc

Dosyayı Görüntüle

@ -57,7 +57,7 @@ fi
iKmax=$(($nkmax * $N/8)) iKmax=$(($nkmax * $N/8))
ommin=0 ommin=0
ommax=$(($nkmax*$nkmax)) # use mid-point between upper and lower branch of 1ph continuum ommax=$((0.5 * $nkmax*($nkmax + 8))) # use (half of) TG Type 1 dispersion
Nom=1000 Nom=1000
# store location for these runs # store location for these runs
@ -67,7 +67,7 @@ dirstore='Lieb-Liniger/'$correlator'/T_'$kBT'/c_scan_N_fixed/k_0_to_'${(l:2::0:)
clist_raw=() clist_raw=()
for nc in {-160..160} for nc in {-160..160}
do do
clist_raw=($clist_raw $(( 2**($nc/16.) ))) clist_raw=($clist_raw $((4 * 2**($nc/16.) )))
done done
# Now cast the integer values to true integers # Now cast the integer values to true integers
zmodload zsh/mathfunc zmodload zsh/mathfunc

Dosyayı Görüntüle

@ -54,12 +54,6 @@ elif [[ $whichDSF == 'g' ]]; then
correlator='psi-psidag' correlator='psi-psidag'
fi fi
iKmax=$(($nkmax * $N/8))
ommin=0
ommax=$(($nkmax*$nkmax)) # use mid-point between upper and lower branch of 1ph continuum
Nom=1000
# store location for these runs # store location for these runs
dirstore='Lieb-Liniger/'$correlator'/T_'$kBT'/c_scan_N_fixed/k_0_to_'${(l:2::0:)nkmax}'kFo4/sr_'$target_sumrule'/store' dirstore='Lieb-Liniger/'$correlator'/T_'$kBT'/c_scan_N_fixed/k_0_to_'${(l:2::0:)nkmax}'kFo4/sr_'$target_sumrule'/store'