Tweak script parameters
This commit is contained in:
parent
0c3ad996b0
commit
e774c063a4
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue