Browse Source

Change momentum factor for catalogue

master
Jean-Sébastien 2 years ago
parent
commit
5125a85878
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/EXECS/LiebLin_Catalogue_Fixed_c_k_Nscaling.cc

+ 2
- 2
src/EXECS/LiebLin_Catalogue_Fixed_c_k_Nscaling.cc View File

@@ -30,7 +30,7 @@ int main(int argc, char* argv[])
30 30
     cout << "char whichDSF \t\t Which structure factor should be calculated ?  Options are:  "
31 31
       "d for rho rho, g for psi psi{dagger}, o for psi{dagger} psi" << endl;
32 32
     cout << "DP c_int \t\t Value of the interaction parameter:  use positive real values only" << endl;
33
-    cout << "int kfact \t\t momentum factor: momemntum will be set to kfact * kF/16" << endl;
33
+    cout << "int kfact \t\t momentum factor: momemntum will be set to kfact * kF/4" << endl;
34 34
     cout << "DP kBT \t\t Temperature (positive only of course)" << endl;
35 35
     cout << "DP target_sumrule \t sumrule saturation you're satisfied with" << endl;
36 36
     cout << "int Hrs \t\t Allowed computational time (hours)" << endl;
@@ -67,7 +67,7 @@ int main(int argc, char* argv[])
67 67
 
68 68
       int N = Nv[iN];
69 69
       DP L = N;
70
-      int iKmin = (kfact * N)/32;
70
+      int iKmin = (kfact * N)/8;
71 71
       int iKmax = iKmin;
72 72
       DP srsat = 0.0;
73 73
       bool refine = false;

Loading…
Cancel
Save