Browse Source

Tweak script parameters

master
Jean-Sébastien 2 years ago
parent
commit
e774c063a4

+ 1
- 1
scripts/catalogue/c_fixed_N_prog_dsfs.sh View File

@@ -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)
53 53
 basedir="$(pwd)"
54 54
 
55 55
 ommin=0
56
-ommax=$(($nkmax*($nkmax - 8))) # use lower branch of 1ph continuum
56
+ommax=$((0.5 * $nkmax*($nkmax + 8))) # use (half of) TG Type 1 dispersion
57 57
 Nom=1000
58 58
 
59 59
 for c in $clist

+ 0
- 4
scripts/catalogue/c_fixed_N_prog_plots.sh View File

@@ -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)
52 52
 
53 53
 basedir="$(pwd)"
54 54
 
55
-ommin=0
56
-ommax=$(($nkmax*($nkmax - 8))) # use lower branch of 1ph continuum
57
-Nom=1000
58
-
59 55
 for c in $clist
60 56
 do
61 57
     echo 'Starting plotting of DSFs for c =' $c

+ 1
- 1
scripts/catalogue/c_scan_N_fixed_data.sh View File

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

+ 2
- 2
scripts/catalogue/c_scan_N_fixed_dsfs.sh View File

@@ -57,7 +57,7 @@ fi
57 57
 iKmax=$(($nkmax * $N/8))
58 58
 
59 59
 ommin=0
60
-ommax=$(($nkmax*$nkmax)) # use mid-point between upper and lower branch of 1ph continuum
60
+ommax=$((0.5 * $nkmax*($nkmax + 8))) # use (half of) TG Type 1 dispersion
61 61
 Nom=1000
62 62
 
63 63
 # 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:)
67 67
 clist_raw=()
68 68
 for nc in {-160..160}
69 69
 do
70
-    clist_raw=($clist_raw $(( 2**($nc/16.) )))
70
+    clist_raw=($clist_raw $((4 * 2**($nc/16.) )))
71 71
 done
72 72
 # Now cast the integer values to true integers
73 73
 zmodload zsh/mathfunc

+ 0
- 6
scripts/catalogue/c_scan_N_fixed_plot.sh View File

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

Loading…
Cancel
Save