Change momentum factor for catalogue
This commit is contained in:
parent
6e9d25338a
commit
5125a85878
|
@ -30,7 +30,7 @@ int main(int argc, char* argv[])
|
||||||
cout << "char whichDSF \t\t Which structure factor should be calculated ? Options are: "
|
cout << "char whichDSF \t\t Which structure factor should be calculated ? Options are: "
|
||||||
"d for rho rho, g for psi psi{dagger}, o for psi{dagger} psi" << endl;
|
"d for rho rho, g for psi psi{dagger}, o for psi{dagger} psi" << endl;
|
||||||
cout << "DP c_int \t\t Value of the interaction parameter: use positive real values only" << endl;
|
cout << "DP c_int \t\t Value of the interaction parameter: use positive real values only" << endl;
|
||||||
cout << "int kfact \t\t momentum factor: momemntum will be set to kfact * kF/16" << endl;
|
cout << "int kfact \t\t momentum factor: momemntum will be set to kfact * kF/4" << endl;
|
||||||
cout << "DP kBT \t\t Temperature (positive only of course)" << endl;
|
cout << "DP kBT \t\t Temperature (positive only of course)" << endl;
|
||||||
cout << "DP target_sumrule \t sumrule saturation you're satisfied with" << endl;
|
cout << "DP target_sumrule \t sumrule saturation you're satisfied with" << endl;
|
||||||
cout << "int Hrs \t\t Allowed computational time (hours)" << endl;
|
cout << "int Hrs \t\t Allowed computational time (hours)" << endl;
|
||||||
|
@ -67,7 +67,7 @@ int main(int argc, char* argv[])
|
||||||
|
|
||||||
int N = Nv[iN];
|
int N = Nv[iN];
|
||||||
DP L = N;
|
DP L = N;
|
||||||
int iKmin = (kfact * N)/32;
|
int iKmin = (kfact * N)/8;
|
||||||
int iKmax = iKmin;
|
int iKmax = iKmin;
|
||||||
DP srsat = 0.0;
|
DP srsat = 0.0;
|
||||||
bool refine = false;
|
bool refine = false;
|
||||||
|
|
Loading…
Reference in New Issue