Change momentum factor for catalogue

This commit is contained in:
Jean-Sébastien 2021-12-09 20:21:04 +01:00
父節點 6e9d25338a
當前提交 5125a85878
共有 1 個檔案被更改,包括 2 行新增2 行删除

查看文件

@ -30,7 +30,7 @@ int main(int argc, char* argv[])
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;
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 target_sumrule \t sumrule saturation you're satisfied with" << 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];
DP L = N;
int iKmin = (kfact * N)/32;
int iKmin = (kfact * N)/8;
int iKmax = iKmin;
DP srsat = 0.0;
bool refine = false;