You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LiebLin_Fourier_ssf_to_Qsqx.cc 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /**********************************************************
  2. This software is part of J.-S. Caux's ABACUS library.
  3. Copyright (c) J.-S. Caux.
  4. -----------------------------------------------------------
  5. File: LiebLin_Fourier_to_Qsqx.cc
  6. Purpose: Compute the Q(x)^2 expectation value for LiebLin, where Q(x) = \int_0^x dx \rho(x).
  7. ***********************************************************/
  8. #include "ABACUS.h"
  9. using namespace std;
  10. using namespace ABACUS;
  11. int main(int argc, char* argv[])
  12. {
  13. if (argc != 9) { // provide some info
  14. cout << endl << "Welcome to ABACUS\t(copyright J.-S. Caux)." << endl;
  15. cout << endl << "Usage of LiebLin_Fourier_to_Qsqx executable: " << endl;
  16. cout << endl << "Provide the following arguments:" << endl << endl;
  17. cout << "char whichDSF \t\t Which structure factor ? Options are: "
  18. "d for rho rho, g for psi psi{dagger}, o for psi{dagger} psi" << endl;
  19. cout << "DP c_int \t\t Value of the interaction parameter" << endl;
  20. cout << "DP L \t\t\t Length of the system" << endl;
  21. cout << "int N \t\t\t Number of particles" << endl;
  22. cout << "int iKmin" << endl << "int iKmax \t\t Min and max momentum integers scanned over" << endl;
  23. cout << "DP kBT \t\t Temperature" << endl;
  24. cout << "int Npts_x Number of points in space for the Fourier transform" << endl;
  25. }
  26. else { // (argc == 9), correct nr of arguments
  27. char whichDSF = *argv[1];
  28. DP c_int = atof(argv[2]);
  29. DP L = atof(argv[3]);
  30. int N = atoi(argv[4]);
  31. int iKmin = atoi(argv[5]);
  32. int iKmax = atoi(argv[6]);
  33. DP kBT = atof(argv[7]);
  34. int Npts_x = atoi(argv[8]);
  35. if (whichDSF != 'd') ABACUSerror("Must use whichDSF == d in LiebLin_Fourier_ssf_to_Qsqx");
  36. stringstream filenameprefix;
  37. Data_File_Name (filenameprefix, whichDSF, c_int, L, N, iKmin, iKmax, kBT, 0.0, "");
  38. string prefix = filenameprefix.str();
  39. stringstream RAW_stringstream; string RAW_string;
  40. RAW_stringstream << prefix << ".raw";
  41. RAW_string = RAW_stringstream.str(); const char* RAW_Cstr = RAW_string.c_str();
  42. ifstream RAW_infile;
  43. RAW_infile.open(RAW_Cstr);
  44. if (RAW_infile.fail()) {
  45. cout << RAW_Cstr << endl;
  46. ABACUSerror("Could not open RAW_infile... ");
  47. }
  48. // We also read the f-sumrule file, to correct for missing intensity.
  49. stringstream FSR_stringstream; string FSR_string;
  50. FSR_stringstream << prefix << ".fsr";
  51. FSR_string = FSR_stringstream.str(); const char* FSR_Cstr = FSR_string.c_str();
  52. ifstream FSR_infile;
  53. FSR_infile.open(FSR_Cstr);
  54. if (FSR_infile.fail()) {
  55. cout << FSR_Cstr << endl;
  56. ABACUSerror("Could not open FSR_infile... ");
  57. }
  58. stringstream SFT_stringstream; string SFT_string;
  59. SFT_stringstream << prefix << ".Qsqx";
  60. SFT_string = SFT_stringstream.str(); const char* SFT_Cstr = SFT_string.c_str();
  61. ofstream SFT_outfile;
  62. SFT_outfile.open(SFT_Cstr);
  63. if (SFT_outfile.fail()) ABACUSerror("Could not open SFT_outfile... ");
  64. // First compute the static structure factor from the RAW data:
  65. Vect_DP SSF(0.0, iKmax - iKmin + 1);
  66. DP omega;
  67. int iK;
  68. DP FF;
  69. //int conv;
  70. DP dev;
  71. string label;
  72. while (RAW_infile.peek() != EOF) {
  73. RAW_infile >> omega >> iK >> FF >> dev >> label;
  74. if (iK >= iKmin && iK <= iKmax) {
  75. SSF[iK - iKmin] += FF * FF;
  76. }
  77. }
  78. RAW_infile.close();
  79. // Reset proper normalization:
  80. DP normalization = twoPI * L;
  81. for (int iK = 0; iK < iKmax - iKmin + 1; ++iK) SSF[iK] *= normalization/twoPI; // twoPI from integral over omega
  82. // Now define real-space coordinates: between 0 and L/2
  83. Vect_DP xlattice(Npts_x);
  84. for (int i = 0; i < Npts_x; ++i) xlattice[i] = (i + 0.5) * 0.5* L/Npts_x;
  85. // Now the correlation at x:
  86. Vect_DP FT(0.0, Npts_x);
  87. DP pioverL = PI/L;
  88. // Fourier transform:
  89. for (int ix = 0; ix < Npts_x; ++ix) {
  90. for (int iK = 1; iK <= iKmax; ++iK) {
  91. FT[ix] += SSF[iK - iKmin] * pow(sin(pioverL * iK * xlattice[ix])/iK, 2.0);
  92. }
  93. // Reset proper normalization: 1/L from space FT,
  94. FT[ix] *= 2.0*L/(PI * PI);
  95. // Outside of window iKmin, iKmax, we take the DSF to be a constant with delta function
  96. // at free energy k^2, so DSF = 2\pi N/L \delta(\omega - k^2) (to fit f-sumrule)
  97. // so SSF becomes N/L.
  98. // We thus need to correct above by adding
  99. // \frac{1}{L} \sum_{-\infty}^{iKmin - 1} SSF e^{ikx} + \frac{1}{L} \sum_{iKmax + 1}^\infty SSF e^{ikx}
  100. // Resumming carefully:
  101. //FTre[ix] += (sin(twopioverL * (iKmin - 0.5) * xlattice[ix]) - sin(twopioverL * (iKmax + 0.5) * xlattice[ix]))
  102. //* N/(2.0 * L*L * sin(PI * xlattice[ix]/L));
  103. //FTim[ix] += (-cos(twopioverL * (iKmin - 0.5) * xlattice[ix]) + cos(twopioverL * (iKmax + 0.5) * xlattice[ix]))
  104. //* N/(2.0 * L*L * sin(PI * xlattice[ix]/L));
  105. }
  106. // Output to file:
  107. for (int ix = 0; ix < Npts_x; ++ix) {
  108. if (ix > 0) SFT_outfile << endl;
  109. SFT_outfile << xlattice[ix]/L << "\t" << FT[ix];
  110. }
  111. SFT_outfile.close();
  112. }
  113. return(0);
  114. }