This repository has been archived by the owner on Jun 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsave.c
488 lines (389 loc) · 10.8 KB
/
save.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
#include <math.h>
#include <stdlib.h>
#include "allvars.h"
#include "proto.h"
#include "power.h"
#include "save.h"
void save_local_data(void)__attribute__((visibility ("hidden")));
int compare_type(const void *a, const void *b)__attribute__((visibility ("hidden")));
void write_particle_data(void)
{
int nprocgroup, groupTask, masterTask;
if(ThisTask == 0)
printf("\nwriting initial conditions... \n");
if(NTask < NumFilesWrittenInParallel)
{
printf
("Fatal error.\nNumber of processors must be a smaller or equal than `NumFilesWrittenInParallel'.\n");
FatalError(24131);
}
nprocgroup = NTask / NumFilesWrittenInParallel;
if((NTask % NumFilesWrittenInParallel))
nprocgroup++;
masterTask = (ThisTask / nprocgroup) * nprocgroup;
for(groupTask = 0; groupTask < nprocgroup; groupTask++)
{
if(ThisTask == (masterTask + groupTask)) /* ok, it's this processor's turn */
save_local_data();
/* wait inside the group */
MPI_Barrier(MPI_COMM_WORLD);
}
if(ThisTask == 0)
printf("done with writing initial conditions.\n");
}
void save_local_data(void)
{
#define BUFFER 10
size_t bytes;
float *block;
#ifdef USE_64BITID
long long *blocklongid;
#else
int *blockid;
#endif
int blockmaxlen, maxlongidlen;
int32_t dummy;
FILE *fd;
char buf[300];
int i, k, pc;
#ifdef PRODUCEGAS
double meanspacing, shift_gas, shift_dm;
#endif
if(NumPart == 0)
return;
if(NTaskWithN > 1)
sprintf(buf, "%s/%s.%d", OutputDir, FileBase, ThisTaskFileNumber);
else
sprintf(buf, "%s/%s", OutputDir, FileBase);
if(!(fd = fopen(buf, "w")))
{
printf("Error. Can't write in file '%s'\n", buf);
FatalError(10);
}
for(i = 0; i < 6; i++)
{
header.npart[i] = 0;
header.npartTotal[i] = 0;
header.mass[i] = 0;
header.npartTotalHighWord[i] = 0;
}
#ifdef MULTICOMPONENTGLASSFILE
qsort(P, NumPart, sizeof(struct part_data), compare_type); /* sort particles by type, because that's how they should be stored in a gadget binary file */
#if defined(PRODUCE_CONSISTENT_IDS)
/* Code from Greg Poole for generating consistent particle IDs across different resolution simulations */
for(i = 0; i < 3; i++)
header.npartTotal[i] = header1.npartTotal[i + 1] * (GlassTileFac/GlassTileFacSample) * (GlassTileFac/GlassTileFacSample) * (GlassTileFac/GlassTileFacSample);
#else
/* Original code from 2LPTic*/
for(i = 0; i < 3; i++)
header.npartTotal[i] = header1.npartTotal[i + 1] * GlassTileFac * GlassTileFac * GlassTileFac;
#endif
for(i = 0; i < NumPart; i++)
header.npart[P[i].Type]++;
if(header.npartTotal[0])
header.mass[0] =
(OmegaBaryon) * 3 * Hubble * Hubble / (8 * PI * G) * pow(Box, 3) / (header.npartTotal[0]);
if(header.npartTotal[1])
header.mass[1] =
(Omega - OmegaBaryon - OmegaDM_2ndSpecies) * 3 * Hubble * Hubble / (8 * PI * G) * pow(Box,
3) /
(header.npartTotal[1]);
if(header.npartTotal[2])
header.mass[2] =
(OmegaDM_2ndSpecies) * 3 * Hubble * Hubble / (8 * PI * G) * pow(Box, 3) / (header.npartTotal[2]);
#else
header.npart[1] = NumPart;
header.npartTotal[1] = TotNumPart;
//MS - commented out - this is for older versions of Gadget. The new vanilla Gadget versions expect to see the HighWord to be set
/* header.npartTotal[2] = (TotNumPart >> 32); */
header.npartTotalHighWord[1] = (TotNumPart >> 32);
header.mass[1] = (Omega) * 3 * Hubble * Hubble / (8 * PI * G) * pow(Box, 3) / TotNumPart;
#ifdef PRODUCEGAS
header.npart[0] = NumPart;
header.npartTotal[0] = TotNumPart;
header.mass[0] = (OmegaBaryon) * 3 * Hubble * Hubble / (8 * PI * G) * pow(Box, 3) / TotNumPart;
header.mass[1] = (Omega - OmegaBaryon) * 3 * Hubble * Hubble / (8 * PI * G) * pow(Box, 3) / TotNumPart;
#endif
#endif
#ifndef USE_64BITID
if(TotNumPart > INT_MAX) {
printf("On task %d: Can not represent particles ID = %lld with 32 bit integers. Enabled the compile time options USE_64BITID\n", ThisTask, TotNumPart);
FatalError(10000);
}
#endif
header.time = InitTime;
header.redshift = 1.0 / InitTime - 1;
header.flag_sfr = 0;
header.flag_feedback = 0;
header.flag_cooling = 0;
header.flag_stellarage = 0;
header.flag_metals = 0;
header.num_files = NTaskWithN;
header.BoxSize = Box;
header.Omega0 = Omega;
header.OmegaLambda = OmegaLambda;
header.HubbleParam = HubbleParam;
header.flag_stellarage = 0;
header.flag_metals = 0;
/* header.hashtabsize = 0; */
dummy = sizeof(header);
my_fwrite(&dummy, sizeof(dummy), 1, fd);
my_fwrite(&header, sizeof(header), 1, fd);
my_fwrite(&dummy, sizeof(dummy), 1, fd);
#ifdef PRODUCEGAS
meanspacing = Box / pow(TotNumPart, 1.0 / 3);
shift_gas = -0.5 * (Omega - OmegaBaryon) / (Omega) * meanspacing;
shift_dm = +0.5 * OmegaBaryon / (Omega) * meanspacing;
#endif
bytes = BUFFER * 1024 * 1024;
block = malloc(bytes);
if(block == NULL)
{
printf("failed to allocate memory for `block' (%g bytes).\n", (double)bytes);
FatalError(24);
}
blockmaxlen = bytes / (3 * sizeof(float));
maxlongidlen = bytes / sizeof(long long);
#ifdef USE_64BITID
blocklongid = (long long *) block;
#else
blockid = (int *) block;
#endif
/* write coordinates */
dummy = sizeof(float) * 3 * NumPart;
#ifdef PRODUCEGAS
dummy *= 2;
#endif
my_fwrite(&dummy, sizeof(dummy), 1, fd);
for(i = 0, pc = 0; i < NumPart; i++)
{
for(k = 0; k < 3; k++)
{
block[3 * pc + k] = P[i].Pos[k];
#ifdef PRODUCEGAS
block[3 * pc + k] = periodic_wrap(P[i].Pos[k] + shift_gas);
#endif
}
pc++;
if(pc == blockmaxlen)
{
my_fwrite(block, sizeof(float), 3 * pc, fd);
pc = 0;
}
}
if(pc > 0)
my_fwrite(block, sizeof(float), 3 * pc, fd);
#ifdef PRODUCEGAS
for(i = 0, pc = 0; i < NumPart; i++)
{
for(k = 0; k < 3; k++)
{
block[3 * pc + k] = periodic_wrap(P[i].Pos[k] + shift_dm);
}
pc++;
if(pc == blockmaxlen)
{
my_fwrite(block, sizeof(float), 3 * pc, fd);
pc = 0;
}
}
if(pc > 0)
my_fwrite(block, sizeof(float), 3 * pc, fd);
#endif
my_fwrite(&dummy, sizeof(dummy), 1, fd);
/* write velocities */
dummy = sizeof(float) * 3 * NumPart;
#ifdef PRODUCEGAS
dummy *= 2;
#endif
my_fwrite(&dummy, sizeof(dummy), 1, fd);
for(i = 0, pc = 0; i < NumPart; i++)
{
for(k = 0; k < 3; k++)
block[3 * pc + k] = P[i].Vel[k];
#ifdef MULTICOMPONENTGLASSFILE
if(WDM_On == 1 && WDM_Vtherm_On == 1 && P[i].Type == 1)
add_WDM_thermal_speeds(&block[3 * pc]);
#else
#ifndef PRODUCEGAS
if(WDM_On == 1 && WDM_Vtherm_On == 1)
add_WDM_thermal_speeds(&block[3 * pc]);
#endif
#endif
pc++;
if(pc == blockmaxlen)
{
my_fwrite(block, sizeof(float), 3 * pc, fd);
pc = 0;
}
}
if(pc > 0)
my_fwrite(block, sizeof(float), 3 * pc, fd);
#ifdef PRODUCEGAS
for(i = 0, pc = 0; i < NumPart; i++)
{
for(k = 0; k < 3; k++)
block[3 * pc + k] = P[i].Vel[k];
if(WDM_On == 1 && WDM_Vtherm_On == 1)
add_WDM_thermal_speeds(&block[3 * pc]);
pc++;
if(pc == blockmaxlen)
{
my_fwrite(block, sizeof(float), 3 * pc, fd);
pc = 0;
}
}
if(pc > 0)
my_fwrite(block, sizeof(float), 3 * pc, fd);
#endif
my_fwrite(&dummy, sizeof(dummy), 1, fd);
/* write particle ID */
#ifdef USE_64BITID
dummy = sizeof(long long) * NumPart;
#else
dummy = sizeof(int) * NumPart;
#endif
#ifdef PRODUCEGAS
dummy *= 2;
#endif
my_fwrite(&dummy, sizeof(dummy), 1, fd);
for(i = 0, pc = 0; i < NumPart; i++)
{
#ifdef USE_64BITID
blocklongid[pc] = P[i].ID;
#else
blockid[pc] = P[i].ID;
#endif
pc++;
if(pc == maxlongidlen)
{
#ifdef USE_64BITID
my_fwrite(blocklongid, sizeof(long long), pc, fd);
#else
my_fwrite(blockid, sizeof(int), pc, fd);
#endif
pc = 0;
}
}
if(pc > 0)
{
#ifdef USE_64BITID
my_fwrite(blocklongid, sizeof(long long), pc, fd);
#else
my_fwrite(blockid, sizeof(int), pc, fd);
#endif
}
#ifdef PRODUCEGAS
for(i = 0, pc = 0; i < NumPart; i++)
{
#ifdef USE_64BITID
blocklongid[pc] = P[i].ID + TotNumPart;
#else
/*Check that IDs can fit. Both P[i].ID and TotNumPart are 64 bit integers
so they should not overflow. */
if((P[i].ID + TotNumPart) > INT_MAX) {
printf("On task %d: Can not represent %d particle ID = %lld with 32 bit integers. Enabled the compile time options USE_64BITID\n",
ThisTask, i, P[i].ID);
FatalError(10000);
}
blockid[pc] = P[i].ID + TotNumPart;
#endif
pc++;
if(pc == maxlongidlen)
{
#ifdef USE_64BITID
my_fwrite(blocklongid, sizeof(long long), pc, fd);
#else
my_fwrite(blockid, sizeof(int), pc, fd);
#endif
pc = 0;
}
}
if(pc > 0)
{
#ifdef USE_64BITID
my_fwrite(blocklongid, sizeof(long long), pc, fd);
#else
my_fwrite(blockid, sizeof(int), pc, fd);
#endif
}
#endif
my_fwrite(&dummy, sizeof(dummy), 1, fd);
/* write zero temperatures if needed */
#ifdef PRODUCEGAS
dummy = sizeof(float) * NumPart;
my_fwrite(&dummy, sizeof(dummy), 1, fd);
for(i = 0, pc = 0; i < NumPart; i++)
{
block[pc] = 0;
pc++;
if(pc == blockmaxlen)
{
my_fwrite(block, sizeof(float), pc, fd);
pc = 0;
}
}
if(pc > 0)
my_fwrite(block, sizeof(float), pc, fd);
my_fwrite(&dummy, sizeof(dummy), 1, fd);
#endif
/* write zero temperatures if needed */
#ifdef MULTICOMPONENTGLASSFILE
if(header.npart[0])
{
dummy = sizeof(float) * header.npart[0];
my_fwrite(&dummy, sizeof(dummy), 1, fd);
for(i = 0, pc = 0; i < header.npart[0]; i++)
{
block[pc] = 0;
pc++;
if(pc == blockmaxlen)
{
my_fwrite(block, sizeof(float), pc, fd);
pc = 0;
}
}
if(pc > 0)
my_fwrite(block, sizeof(float), pc, fd);
my_fwrite(&dummy, sizeof(dummy), 1, fd);
}
#endif
free(block);
fclose(fd);
}
/* This catches I/O errors occuring for my_fwrite(). In this case we better stop.
*/
size_t my_fwrite(void *ptr, size_t size, size_t nmemb, FILE * stream)
{
size_t nwritten;
if((nwritten = fwrite(ptr, size, nmemb, stream)) != nmemb)
{
printf("I/O error (fwrite) on task=%d has occured.\n", ThisTask);
fflush(stdout);
FatalError(777);
}
return nwritten;
}
/* This catches I/O errors occuring for fread(). In this case we better stop.
*/
size_t my_fread(void *ptr, size_t size, size_t nmemb, FILE * stream)
{
size_t nread;
if((nread = fread(ptr, size, nmemb, stream)) != nmemb)
{
printf("I/O error (fread) on task=%d has occured.\n", ThisTask);
fflush(stdout);
FatalError(778);
}
return nread;
}
#ifdef MULTICOMPONENTGLASSFILE
int compare_type(const void *a, const void *b)
{
if(((struct part_data *) a)->Type < (((struct part_data *) b)->Type))
return -1;
if(((struct part_data *) a)->Type > (((struct part_data *) b)->Type))
return +1;
return 0;
}
#endif