My Project
Loading...
Searching...
No Matches
DNN_HostGuest_Energy_Functions.h
1#include <iostream>
2#include <filesystem>
3#include <fstream>
4#include <vector>
5#include <string>
6#include <iomanip>
7
8#include <execution>
9
10#include "read_data.h"
11//###PATCH_LCLIN_INCLUDE_HEADER###//
12
13__global__ void Initialize_DNN_Positions(Atoms* d_a, Atoms New, Atoms Old, size_t Oldsize, size_t Newsize, size_t SelectedComponent, size_t Location, size_t chainsize, int MoveType, size_t CYCLE)
14{
15 //Zhao's note: need to think about changing this boolean to switch//
16 if(MoveType == TRANSLATION || MoveType == ROTATION || MoveType == SINGLE_INSERTION || MoveType == SINGLE_DELETION) // Translation/Rotation/single_insertion/single_deletion //
17 {
18 //For Translation/Rotation, the Old positions are already in the Old struct, just need to put the New positions into Old, after the Old positions//
19 for(size_t i = Oldsize; i < Oldsize + Newsize; i++) //chainsize here is the total size of the molecule for translation/rotation
20 {
21 Old.pos[i] = New.pos[i - Oldsize];
22 Old.scale[i] = New.scale[i - Oldsize];
23 Old.charge[i] = New.charge[i - Oldsize];
24 Old.scaleCoul[i] = New.scaleCoul[i - Oldsize];
25 }
26 }
27 else if(MoveType == INSERTION || MoveType == CBCF_INSERTION) // Insertion & Fractional Insertion //
28 {
29 //Put the trial orientations in New to Old, right after the first bead position//
30 if (chainsize == 0) //If single atom molecule, first bead position is still in New, move it to old//
31 {
32 Old.pos[0] = New.pos[Location];
33 Old.scale[0] = New.scale[Location];
34 Old.charge[0] = New.charge[Location];
35 Old.scaleCoul[0] = New.scaleCoul[Location];
36 }
37 for(size_t i = 0; i < chainsize; i++)
38 {
39 Old.pos[i + 1] = New.pos[Location * chainsize + i];
40 Old.scale[i + 1] = New.scale[Location * chainsize + i];
41 Old.charge[i + 1] = New.charge[Location * chainsize + i];
42 Old.scaleCoul[i + 1] = New.scaleCoul[Location * chainsize + i];
43 }
44 }
45 else if(MoveType == DELETION || MoveType == CBCF_DELETION) // Deletion //
46 {
47 for(size_t i = 0; i < Oldsize; i++)
48 {
49 // For deletion, Location = UpdateLocation, see Deletion Move //
50 Old.pos[i] = d_a[SelectedComponent].pos[Location + i];
51 Old.scale[i] = d_a[SelectedComponent].scale[Location + i];
52 Old.charge[i] = d_a[SelectedComponent].charge[Location + i];
53 Old.scaleCoul[i] = d_a[SelectedComponent].scaleCoul[Location + i];
54 }
55 }
56 /*
57 if(CYCLE == 145)
58 {
59 for(size_t i = 0; i < Oldsize + Newsize; i++)
60 printf("Old pos: %.5f %.5f %.5f, scale/charge/scaleCoul: %.5f %.5f %.5f\n", Old.pos[i].x, Old.pos[i].y, Old.pos[i].z, Old.scale[i], Old.charge[i], Old.scaleCoul[i]);
61 }
62 */
63}
64
65void Prepare_DNN_InitialPositions(Atoms*& d_a, Atoms& New, Atoms& Old, Components& SystemComponents, size_t SelectedComponent, int MoveType, size_t Location)
66{
67 size_t Oldsize = 0; size_t Newsize = 0; size_t chainsize = 0;
68 switch(MoveType)
69 {
70 case TRANSLATION: case ROTATION: // Translation/Rotation Move //
71 {
72 Oldsize = SystemComponents.Moleculesize[SelectedComponent];
73 Newsize = SystemComponents.Moleculesize[SelectedComponent];
74 chainsize = SystemComponents.Moleculesize[SelectedComponent];
75 break;
76 }
77 case INSERTION: case SINGLE_INSERTION: // Insertion //
78 {
79 Oldsize = 0;
80 Newsize = SystemComponents.Moleculesize[SelectedComponent];
81 chainsize = SystemComponents.Moleculesize[SelectedComponent] - 1;
82 break;
83 }
84 case DELETION: case SINGLE_DELETION: // Deletion //
85 {
86 Oldsize = SystemComponents.Moleculesize[SelectedComponent];
87 Newsize = 0;
88 chainsize = SystemComponents.Moleculesize[SelectedComponent] - 1;
89 break;
90 }
91 case REINSERTION: // Reinsertion //
92 {
93 throw std::runtime_error("Use the Special Function for Reinsertion");
94 //break;
95 }
96 case IDENTITY_SWAP:
97 {
98 throw std::runtime_error("Use the Special Function for IDENTITY SWAP!");
99 }
100 case CBCF_LAMBDACHANGE: // CBCF Lambda Change //
101 {
102 throw std::runtime_error("Use the Special Function for CBCF Lambda Change");
103 //Oldsize = SystemComponents.Moleculesize[SelectedComponent];
104 //Newsize = SystemComponents.Moleculesize[SelectedComponent];
105 //chainsize = SystemComponents.Moleculesize[SelectedComponent] - 1;
106 //break;
107 }
108 case CBCF_INSERTION: // CBCF Lambda Insertion //
109 {
110 Oldsize = 0;
111 Newsize = SystemComponents.Moleculesize[SelectedComponent];
112 chainsize = SystemComponents.Moleculesize[SelectedComponent] - 1;
113 break;
114 }
115 case CBCF_DELETION: // CBCF Lambda Deletion //
116 {
117 Oldsize = SystemComponents.Moleculesize[SelectedComponent];
118 Newsize = 0;
119 chainsize = SystemComponents.Moleculesize[SelectedComponent] - 1;
120 break;
121 }
122 }
123 Initialize_DNN_Positions<<<1,1>>>(d_a, New, Old, Oldsize, Newsize, SelectedComponent, Location, chainsize, MoveType, SystemComponents.CURRENTCYCLE);
124}
125
126__global__ void Initialize_DNN_Positions_Reinsertion(double3* temp, Atoms* d_a, Atoms Old, size_t Oldsize, size_t Newsize, size_t realpos, size_t SelectedComponent)
127{
128 for(size_t i = 0; i < Oldsize; i++)
129 {
130 Old.pos[i] = d_a[SelectedComponent].pos[realpos + i];
131 Old.scale[i] = d_a[SelectedComponent].scale[realpos + i];
132 Old.charge[i] = d_a[SelectedComponent].charge[realpos + i];
133 Old.scaleCoul[i] = d_a[SelectedComponent].scaleCoul[realpos + i];
134 }
135 //Reinsertion New Positions stored in three arrays, other data are the same as the Old molecule information in d_a//
136 for(size_t i = Oldsize; i < Oldsize + Newsize; i++) //chainsize here is the total size of the molecule for translation/rotation
137 {
138 Old.pos[i] = temp[i - Oldsize];
139 Old.scale[i] = d_a[SelectedComponent].scale[realpos + i - Oldsize];
140 Old.charge[i] = d_a[SelectedComponent].charge[realpos + i - Oldsize];
141 Old.scaleCoul[i] = d_a[SelectedComponent].scaleCoul[realpos + i - Oldsize];
142 }
143}
144
145void Prepare_DNN_InitialPositions_Reinsertion(Atoms*& d_a, Atoms& Old, double3* temp, Components& SystemComponents, size_t SelectedComponent, size_t Location)
146{
147 size_t numberOfAtoms = SystemComponents.Moleculesize[SelectedComponent];
148 size_t Oldsize = 0; size_t Newsize = numberOfAtoms;
149 //Zhao's note: translation/rotation/reinsertion involves new + old states. Insertion/Deletion only has the new state.
150 Oldsize = SystemComponents.Moleculesize[SelectedComponent];
151 numberOfAtoms += Oldsize;
152 Initialize_DNN_Positions_Reinsertion<<<1,1>>>(temp, d_a, Old, Oldsize, Newsize, Location, SelectedComponent);
153}
154//###PATCH_ALLEGRO_CONSIDER_DNN_ATOMS###//
155
156double DNN_Prediction_Move(Components& SystemComponents, Simulations& Sims, size_t SelectedComponent, int MoveType)
157{
158 switch(MoveType)
159 {
160 case INSERTION:
161 {
162 double DNN_New = 0.0;
163 //###PATCH_ALLEGRO_INSERTION###//
164 //###PATCH_LCLIN_INSERTION###//
165 return DNN_New;
166 }
167 case DELETION:
168 {
169 double DNN_New = 0.0;
170 //###PATCH_ALLEGRO_DELETION###//
171 //###PATCH_LCLIN_DELETION###//
172 return DNN_New;
173 }
174 case TRANSLATION: case ROTATION: case SINGLE_INSERTION: case SINGLE_DELETION:
175 {
176 bool Do_New = true; bool Do_Old = true;
177 if(MoveType == SINGLE_INSERTION) Do_Old = false;
178 if(MoveType == SINGLE_DELETION) Do_New = false;
179 double DNN_New = 0.0; double DNN_Old = 0.0;
180 //###PATCH_ALLEGRO_SINGLE###//
181 //###PATCH_LCLIN_SINGLE###//
182 return DNN_New - DNN_Old;
183 }
184 }
185}
186
187double DNN_Prediction_Reinsertion(Components& SystemComponents, Simulations& Sims, size_t SelectedComponent, double3* temp)
188{
189 double DNN_New = 0.0; double DNN_Old = 0.0;
190 //###PATCH_ALLEGRO_REINSERTION###//
191 //###PATCH_LCLIN_REINSERTION###//
192 return DNN_New - DNN_Old;
193}
194
195double DNN_Prediction_Total(Components& SystemComponents, Simulations& Sims)
196{
197 double DNN_E = 0.0;
198 //###PATCH_ALLEGRO_FXNMAIN###//
199 //###PATCH_LCLIN_FXNMAIN###//
200 return DNN_E;
201}
202
203void WriteOutliers(Components& SystemComponents, Simulations& Sim, int MoveType, MoveEnergy E, double Correction)
204{
205 //Write to a file for checking//
206 std::ofstream textrestartFile{};
207 std::string dirname="DNN/";
208 std::string TRname = dirname + "/" + "Outliers_SINGLE_PARTICLE.data";
209 std::string Ifname = dirname + "/" + "Outliers_INSERTION.data";
210 std::string Dfname = dirname + "/" + "Outliers_DELETION.data";
211
212
213 std::filesystem::path cwd = std::filesystem::current_path();
214
215 std::filesystem::path directoryName = cwd /dirname;
216 std::filesystem::path IfileName = cwd /Ifname;
217 std::filesystem::path DfileName = cwd /Dfname;
218 std::filesystem::path TRfileName = cwd /TRname;
219 std::filesystem::create_directories(directoryName);
220
221 size_t size = SystemComponents.HostSystem[1].Molsize;
222 size_t ads_comp = 1;
223 size_t start= 0;
224 std::string Move;
225 switch(MoveType)
226 {
227 case OLD: //Positions are stored in Sim.Old
228 {
229 SystemComponents.Copy_GPU_Data_To_Temp(Sim.Old, start, size);
230 Move = "TRANSLATION_ROTATION_NEW_NON_CBMC_INSERTION";
231 textrestartFile = std::ofstream(TRfileName, std::ios::app);
232 break;
233 }
234 case NEW:
235 {
236 SystemComponents.Copy_GPU_Data_To_Temp(Sim.New, start, size);
237 Move = "TRANSLATION_ROTATION_OLD_NON_CBMC_DELETION";
238 textrestartFile = std::ofstream(TRfileName, std::ios::app);
239 break;
240 }
241 case REINSERTION_OLD:
242 {
243 SystemComponents.Copy_GPU_Data_To_Temp(Sim.Old, start, size);
244 Move = "REINSERTION_OLD";
245 textrestartFile = std::ofstream(TRfileName, std::ios::app);
246 break;
247 }
248 case REINSERTION_NEW:
249 {
250 start = SystemComponents.Moleculesize[ads_comp];
251 SystemComponents.Copy_GPU_Data_To_Temp(Sim.Old, start, size);
252 Move = "REINSERTION_NEW";
253 textrestartFile = std::ofstream(TRfileName, std::ios::app);
254 break;
255 }
256 case DNN_INSERTION:
257 {
258 SystemComponents.Copy_GPU_Data_To_Temp(Sim.Old, start, size);
259 Move = "SWAP_INSERTION";
260 textrestartFile = std::ofstream(IfileName, std::ios::app);
261 break;
262 }
263 case DNN_DELETION:
264 {
265 SystemComponents.Copy_GPU_Data_To_Temp(Sim.Old, start, size);
266 Move = "SWAP_DELETION";
267 textrestartFile = std::ofstream(DfileName, std::ios::app);
268 break;
269 }
270 }
271 for(size_t i = 0; i < size; i++)
272 textrestartFile << SystemComponents.TempSystem.pos[i].x << " " << SystemComponents.TempSystem.pos[i].y << " " << SystemComponents.TempSystem.pos[i].z << " " << SystemComponents.TempSystem.Type[i] << " " << Move << " " << E.DNN_E << " " << Correction << '\n';
273 textrestartFile.close();
274}
Definition data_struct.h:746
Definition data_struct.h:843
Definition data_struct.h:615
Definition data_struct.h:1027