9static inline void WriteBox_LAMMPS(
Atoms* System,
Components SystemComponents,
ForceField FF,
Boxsize Box, std::ofstream& textrestartFile, std::vector<std::string> AtomNames)
11 size_t NumberOfAtoms = 0;
12 for(
size_t i = 0; i < SystemComponents.NComponents.x; i++)
14 NumberOfAtoms += SystemComponents.NumberOfMolecule_for_Component[i] * SystemComponents.Moleculesize[i];
15 printf(
"Printing: Component: %zu [ %s ], NumMol: %zu, Molsize: %zu\n", i, SystemComponents.MoleculeName[i].c_str(), SystemComponents.NumberOfMolecule_for_Component[i], SystemComponents.Moleculesize[i]);
17 textrestartFile <<
"# LAMMPS data file written by WriteLammpsdata function in RASPA(written by Zhao Li)" <<
'\n';
18 textrestartFile << NumberOfAtoms <<
" atoms" <<
'\n';
19 textrestartFile << 0 <<
" bonds" <<
'\n';
20 textrestartFile << 0 <<
" angles" <<
'\n';
21 textrestartFile << 0 <<
" dihedrals" <<
'\n';
22 textrestartFile << 0 <<
" impropers" <<
'\n';
23 textrestartFile << 0 <<
" " << Box.Cell[0] <<
" xlo xhi" <<
'\n';
24 textrestartFile << 0 <<
" " << Box.Cell[4] <<
" ylo yhi" <<
'\n';
25 textrestartFile << 0 <<
" " << Box.Cell[8] <<
" zlo zhi" <<
'\n';
26 textrestartFile << Box.Cell[3] <<
" " << Box.Cell[6] <<
" " << Box.Cell[7] <<
" xy xz yz" <<
'\n' <<
'\n';
27 textrestartFile << FF.size <<
" atom types" <<
'\n';
28 textrestartFile << 0 <<
" bond types" <<
'\n';
29 textrestartFile << 0 <<
" angle types" <<
'\n';
30 textrestartFile << 0 <<
" dihedral types" <<
'\n';
31 textrestartFile << 0 <<
" improper types" <<
'\n' <<
'\n';
33 textrestartFile <<
"Masses" <<
'\n' <<
'\n';
34 for(
size_t i = 0; i < FF.size; i++)
36 double mass = SystemComponents.PseudoAtoms.mass[i];
37 textrestartFile << i+1 <<
" " << mass <<
" # " << AtomNames[i] <<
'\n';
39 textrestartFile <<
'\n' <<
"Pair Coeffs" <<
'\n' <<
'\n';
40 for(
size_t i = 0; i < FF.size; i++)
42 const size_t row = i*FF.size+i;
43 textrestartFile << i+1 <<
" " << FF.epsilon[row]*0.00239006 <<
" " << FF.sigma[row] <<
" # " << AtomNames[i] <<
'\n';
47static inline void WriteAtoms_LAMMPS(
Atoms* System,
Components SystemComponents,
Boxsize Box, std::ofstream& textrestartFile, std::vector<std::string> AtomNames)
49 textrestartFile <<
'\n' <<
"Atoms" <<
'\n' <<
'\n';
50 size_t Atomcount=0;
size_t Molcount=0;
51 for(
size_t i = 0; i < SystemComponents.NComponents.x; i++)
53 Atoms Data = System[i];
54 printf(
"Component %zu, Molsize: %zu\n", i, Data.Molsize);
56 for(
size_t j = 0; j < Data.size; j++)
59 double3 pos = Data.pos[j];
60 if(j % Data.Molsize == 0)
62 WrapInBox(pos, Box.Cell, Box.InverseCell, Box.Cubic);
63 Wrap_shift = pos - Data.pos[j];
69 textrestartFile << Atomcount+1 <<
" " << Molcount+Data.MolID[j]+1 <<
" " << Data.Type[j]+1 <<
" " << Data.charge[j] <<
" " << pos.x <<
" " << pos.y <<
" " << pos.z <<
" # " << SystemComponents.MoleculeName[i] <<
" " << AtomNames[Data.Type[j]] <<
'\n';
72 Molcount+=SystemComponents.NumberOfMolecule_for_Component[i];
76static inline void WriteAtoms_Restart(
Atoms* System,
Components SystemComponents, std::ofstream& textrestartFile, std::vector<std::string> AtomNames)
78 textrestartFile <<
"Reactions: 0" <<
"\n";
81 for(
size_t i = SystemComponents.NComponents.y; i < SystemComponents.NComponents.x; i++)
83 Atoms Data = System[i];
84 textrestartFile <<
'\n' <<
"Component: " << i - SystemComponents.NComponents.y <<
" Adsorbate " << SystemComponents.NumberOfMolecule_for_Component[i] <<
" molecules of " << SystemComponents.MoleculeName[i] <<
'\n';
85 textrestartFile <<
"------------------------------------------------------------------------" <<
"\n";
86 size_t molsize = SystemComponents.Moleculesize[i];
88 for(
size_t j = 0; j < Data.size; j++)
89 textrestartFile <<
"Adsorbate-atom-position:" <<
" " << prevMol + Data.MolID[j] <<
" " << j - Data.MolID[j]*molsize <<
" " << std::setprecision (15) << Data.pos[j].x <<
" " << std::setprecision (15) << Data.pos[j].y <<
" " << std::setprecision (15) << Data.pos[j].z <<
'\n';
91 for(
size_t j = 0; j < Data.size; j++)
92 textrestartFile <<
"Adsorbate-atom-velocity:" <<
" " << prevMol + Data.MolID[j] <<
" " << j - Data.MolID[j]*molsize <<
" " << 0.0 <<
" " << 0.0 <<
" " << 0.0 <<
'\n';
94 for(
size_t j = 0; j < Data.size; j++)
95 textrestartFile <<
"Adsorbate-atom-force:" <<
" " << prevMol + Data.MolID[j] <<
" " << j - Data.MolID[j]*molsize <<
" " << 0.0 <<
" " << 0.0 <<
" " << 0.0 <<
'\n';
97 for(
size_t j = 0; j < Data.size; j++)
98 textrestartFile <<
"Adsorbate-atom-charge:" <<
" " << prevMol + Data.MolID[j] <<
" " << j - Data.MolID[j]*molsize <<
" " << Data.charge[j] <<
'\n';
100 for(
size_t j = 0; j < Data.size; j++)
101 textrestartFile <<
"Adsorbate-atom-scaling:" <<
" " << prevMol + Data.MolID[j] <<
" " << j - Data.MolID[j]*molsize <<
" " << Data.scale[j] <<
'\n';
103 for(
size_t j = 0; j < Data.size; j++)
104 textrestartFile <<
"Adsorbate-atom-fixed:" <<
" " << prevMol + Data.MolID[j] <<
" " << j - Data.MolID[j]*molsize <<
" " <<
"0 0 0" <<
'\n';
105 prevMol += SystemComponents.NumberOfMolecule_for_Component[i];
109static inline void WriteComponent_Restart(
Atoms* System,
Components SystemComponents, std::ofstream& textrestartFile,
Boxsize& Box)
111 textrestartFile <<
"Components: " << SystemComponents.Total_Components - SystemComponents.NumberOfFrameworks <<
" (Adsorbates " << SystemComponents.TotalNumberOfMolecules-SystemComponents.NumberOfFrameworks <<
", Cations 0)" <<
"\n";
112 textrestartFile <<
"========================================================================\n";
113 for(
size_t i = SystemComponents.NumberOfFrameworks; i < SystemComponents.Total_Components; i++)
115 textrestartFile <<
"Components 0 (" << SystemComponents.MoleculeName[i] <<
") " <<
"\n";
117 if(SystemComponents.hasfractionalMolecule[i])
119 fracID = SystemComponents.Lambda[i].FractionalMoleculeID;
120 textrestartFile <<
"Fractional-molecule-id component " << i-SystemComponents.NumberOfFrameworks <<
": " << fracID <<
"\n";
121 textrestartFile <<
"Lambda-factors component " << i-SystemComponents.NumberOfFrameworks <<
": " << SystemComponents.Lambda[i].WangLandauScalingFactor <<
"\n";
122 textrestartFile <<
"Number-of-biasing-factors component " << i-SystemComponents.NumberOfFrameworks <<
": " << SystemComponents.Lambda[i].binsize <<
"\n";
123 textrestartFile <<
"Biasing-factors component " << i-SystemComponents.NumberOfFrameworks <<
": ";
124 for(
size_t j = 0; j < SystemComponents.Lambda[i].binsize; j++)
125 textrestartFile << SystemComponents.Lambda[i].biasFactor[j] <<
" ";
126 textrestartFile <<
"\n";
127 textrestartFile <<
"Maximum-CF-Lambda-change component " << i-SystemComponents.NumberOfFrameworks <<
": 0.50000\n";
128 textrestartFile <<
"Maximum-CBCF-Lambda-change component " << i-SystemComponents.NumberOfFrameworks <<
": 0.50000\n";
130 textrestartFile <<
"\n";
131 textrestartFile <<
"Maximum-translation-change component " << i-SystemComponents.NumberOfFrameworks <<
": " << SystemComponents.MaxTranslation[i].x <<
" " << SystemComponents.MaxTranslation[i].y <<
" " << SystemComponents.MaxTranslation[i].z <<
"\n";
132 textrestartFile <<
"Maximum-translation-in-plane-change component " << i-SystemComponents.NumberOfFrameworks <<
": " <<
"0.000000,0.000000,0.000000" <<
"\n";
133 textrestartFile <<
"Maximum-rotation-change component " << i-SystemComponents.NumberOfFrameworks <<
": " << SystemComponents.MaxRotation[i].x <<
" " << SystemComponents.MaxRotation[i].y <<
" " << SystemComponents.MaxRotation[i].z <<
"\n";
134 textrestartFile <<
"\n";
138static inline void WriteCellInfo_Restart(
Atoms* System,
Components SystemComponents, std::ofstream& textrestartFile,
Boxsize& Box)
141 textrestartFile <<
"Cell info:\n";
142 textrestartFile <<
"========================================================================\n";
143 textrestartFile <<
"number-of-unit-cells: 1 1 1\n";
145 textrestartFile <<
"unit-cell-vector-a:" <<
" " << Box.Cell[0] <<
" " << Box.Cell[1] <<
" " << Box.Cell[2] <<
'\n';
146 textrestartFile <<
"unit-cell-vector-b:" <<
" " << Box.Cell[3] <<
" " << Box.Cell[4] <<
" " << Box.Cell[5] <<
'\n';
147 textrestartFile <<
"unit-cell-vector-c:" <<
" " << Box.Cell[6] <<
" " << Box.Cell[7] <<
" " << Box.Cell[8] <<
'\n';
148 textrestartFile <<
"\n";
150 textrestartFile <<
"cell-vector-a:" <<
" " << Box.Cell[0] <<
" " << Box.Cell[1] <<
" " << Box.Cell[2] <<
'\n';
151 textrestartFile <<
"cell-vector-b:" <<
" " << Box.Cell[3] <<
" " << Box.Cell[4] <<
" " << Box.Cell[5] <<
'\n';
152 textrestartFile <<
"cell-vector-c:" <<
" " << Box.Cell[6] <<
" " << Box.Cell[7] <<
" " << Box.Cell[8] <<
'\n';
153 textrestartFile <<
"\n";
155 textrestartFile <<
"cell-lengths:" <<
" " << Box.Cell[0] <<
" " << Box.Cell[4] <<
" " << Box.Cell[8] <<
" " <<
"\n";
156 textrestartFile <<
"cell-angles:" <<
" " << 90.00 <<
" " << 90.00 <<
" " << 90.00 <<
" " <<
"\n";
157 textrestartFile <<
"\n\n";
159 textrestartFile <<
"Maximum changes for MC-moves:" <<
"\n";
160 textrestartFile <<
"========================================================================" <<
"\n";
161 textrestartFile <<
"Maximum-volume-change: 0.006250" <<
"\n";
162 textrestartFile <<
"Maximum-Gibbs-volume-change: 0.025000" <<
"\n";
163 textrestartFile <<
"Maximum-box-shape-change: 0.100000 0.100000 0.100000, 0.100000 0.100000 0.100000, 0.100000 0.100000 0.100000" <<
"\n";
164 textrestartFile <<
"\n\n";
166 textrestartFile <<
"Acceptance targets for MC-moves:" <<
"\n";
167 textrestartFile <<
"========================================================================" <<
"\n";
168 textrestartFile <<
"Target-volume-change: 0.500000" <<
"\n";
169 textrestartFile <<
"Target-box-shape-change: 0.500000" <<
"\n";
170 textrestartFile <<
"Target-Gibbs-volume-change: 0.500000" <<
"\n";
171 textrestartFile <<
"\n\n";
173 WriteComponent_Restart(System, SystemComponents, textrestartFile, Box);
176static inline void create_movie_file(
Atoms* System,
Components& SystemComponents,
Boxsize& HostBox, std::vector<std::string> AtomNames,
size_t SystemIndex)
179 std::string dirname=
"Movies/System_" + std::to_string(SystemIndex) +
"/";
180 std::string fname = dirname +
"/" +
"result_" + std::to_string(SystemComponents.CURRENTCYCLE) +
".data";
181 std::filesystem::path cwd = std::filesystem::current_path();
183 std::filesystem::path directoryName = cwd /dirname;
184 std::filesystem::path fileName = cwd /fname;
185 std::filesystem::create_directories(directoryName);
187 std::ofstream textrestartFile = std::ofstream(fileName, std::ios::out);
189 WriteBox_LAMMPS(System, SystemComponents, SystemComponents.FF, HostBox, textrestartFile, AtomNames);
190 WriteAtoms_LAMMPS(System, SystemComponents, HostBox, textrestartFile, AtomNames);
191 textrestartFile.close();
194static inline void copyFile(
const std::string& sourcePath,
const std::string& destinationPath)
196 std::ifstream source(sourcePath, std::ios::binary);
197 std::ofstream destination(destinationPath, std::ios::binary);
199 if (!source.is_open() || !destination.is_open())
201 std::cerr <<
"Error opening file." << std::endl;
205 destination << source.rdbuf();
212static inline void create_Restart_file(
size_t Cycle,
Atoms* System,
Components SystemComponents,
ForceField FF,
Boxsize Box, std::vector<std::string> AtomNames,
size_t SystemIndex)
214 std::ofstream textrestartFile{};
215 std::string dirname=
"Restart/System_" + std::to_string(SystemIndex) +
"/";
216 std::string fname = dirname +
"/" +
"restartfile";
217 std::string backup_fname = dirname +
"/" +
"previous_restartfile";
218 std::filesystem::path cwd = std::filesystem::current_path();
221 copyFile(fname, backup_fname);
223 std::filesystem::path directoryName = cwd /dirname;
224 std::filesystem::path fileName = cwd /fname;
225 std::filesystem::create_directories(directoryName);
226 textrestartFile = std::ofstream(fileName, std::ios::out);
227 WriteCellInfo_Restart(System, SystemComponents, textrestartFile, Box);
228 WriteAtoms_Restart(System, SystemComponents, textrestartFile, AtomNames);
229 textrestartFile.close();
232static inline void WriteAllData(
Atoms* System,
Components SystemComponents, std::ofstream& textrestartFile, std::vector<std::string> AtomNames,
size_t i)
235 Atoms Data = System[i];
236 size_t molsize = SystemComponents.Moleculesize[i];
239 textrestartFile <<
"x y z charge scale scaleCoul Type" <<
'\n';
240 for(
size_t j = 0; j < Data.size; j++)
241 textrestartFile <<
" " << Data.MolID[j] <<
" " << j - Data.MolID[j]*molsize <<
" " << Data.pos[j].x <<
" " << Data.pos[j].y <<
" " << Data.pos[j].z <<
" " << Data.charge[j] <<
" " << Data.scale[j] <<
" " << Data.scaleCoul[j] <<
" " << Data.Type[j] <<
'\n';
244static inline void Write_All_Adsorbate_data(
size_t Cycle,
Atoms* System,
Components SystemComponents,
ForceField FF,
Boxsize Box, std::vector<std::string> AtomNames,
size_t SystemIndex)
247 std::filesystem::path cwd = std::filesystem::current_path();
249 for(
size_t i = 0; i < SystemComponents.NComponents.x; i++)
251 std::string dirname=
"AllData/System_" + std::to_string(SystemIndex) +
"/";
252 std::string fname = dirname +
"/" +
"Component_" + std::to_string(i) +
".data";
254 std::filesystem::path directoryName = cwd /dirname;
255 std::filesystem::path fileName = cwd /fname;
256 std::filesystem::create_directories(directoryName);
257 std::ofstream textrestartFile = std::ofstream(fileName, std::ios::out);
258 WriteAllData(System, SystemComponents, textrestartFile, AtomNames, i);
259 textrestartFile.close();
Definition data_struct.h:746
Definition data_struct.h:819
Definition data_struct.h:843
Definition data_struct.h:794