-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path2darray-simple.c
More file actions
299 lines (236 loc) · 8.21 KB
/
Copy path2darray-simple.c
File metadata and controls
299 lines (236 loc) · 8.21 KB
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
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <getopt.h>
#include <math.h>
#include <time.h>
#include "hdf5.h"
#define MAXFILENAME 128
typedef struct rundata {
int nx, ny;
char filename[MAXFILENAME];
} rundata_t;
void writehdf5file(rundata_t rundata, double **dens, double ***vel) {
/* identifiers */
hid_t file_id, dens_dataset_id, vel_dataset_id;
hid_t dens_dataspace_id, vel_dataspace_id;
/* sizes */
hsize_t densdims[2], veldims[3];
/* status */
herr_t status;
/* Create a new file - truncate anything existing, use default properties */
file_id = H5Fcreate(rundata.filename, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
/* HDF5 routines generally return a negative number on failure.
* Should check return values! */
if (file_id < 0) {
fprintf(stderr,"Could not open file %s\n", rundata.filename);
return;
}
/* Create the data space for the two datasets. */
densdims[0] = rundata.nx; densdims[1] = rundata.ny;
veldims[0] = 2; veldims[1] = rundata.nx; veldims[2] = rundata.ny;
dens_dataspace_id = H5Screate_simple(2, densdims, NULL);
vel_dataspace_id = H5Screate_simple(3, veldims, NULL);
/* Create the datasets within the file.
* H5T_IEEE_F64LE is a standard (IEEE) double precision (64 bit) floating (F) data type
* and will work on any machine. H5T_NATIVE_DOUBLE would work too */
dens_dataset_id = H5Dcreate(file_id, "dens", H5T_IEEE_F64LE,
dens_dataspace_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
vel_dataset_id = H5Dcreate(file_id, "vel", H5T_IEEE_F64LE,
vel_dataspace_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
/* Write the data. We're writing it from memory, where it is saved
* in NATIVE_DOUBLE format */
status = H5Dwrite(dens_dataset_id, H5T_NATIVE_DOUBLE, H5S_ALL, H5S_ALL, H5P_DEFAULT, &(dens[0][0]));
status = H5Dwrite(vel_dataset_id, H5T_NATIVE_DOUBLE, H5S_ALL, H5S_ALL, H5P_DEFAULT, &(vel[0][0][0]));
/* End access to groups & data sets and release resources used by them */
status = H5Sclose(dens_dataspace_id);
status = H5Dclose(dens_dataset_id);
status = H5Sclose(vel_dataspace_id);
status = H5Dclose(vel_dataset_id);
/* Close the file */
status = H5Fclose(file_id);
return;
}
int get_options(int argc, char **argv, rundata_t *rundata);
double **array2d(int nx, int ny);
double ***array3d(int nd, int nx, int ny);
void freearray2d(double **d);
void freearray3d(double ***d);
void fillarray2d(double **d, int nx, int ny);
void fillarray3d(double ***d, int nx, int ny);
void printarray2d(double **d, int nx, int ny);
int main(int argc, char **argv) {
double **dens;
double ***vel;
rundata_t rundata;
rundata.nx = 100;
rundata.ny = 100;
strcpy(rundata.filename,"data-simple.h5");
get_options(argc,argv,&rundata);
dens = array2d(rundata.nx, rundata.ny);
vel = array3d(2, rundata.nx, rundata.ny);
fillarray2d(dens, rundata.nx, rundata.ny);
fillarray3d(vel, rundata.nx, rundata.ny);
if (rundata.nx*rundata.ny < 200)
printarray2d(dens, rundata.nx, rundata.ny);
writehdf5file(rundata, dens, vel);
freearray2d(dens);
freearray3d(vel);
return 0;
}
int get_options(int argc, char **argv, rundata_t *rundata) {
struct option long_options[] = {
{"nx", required_argument, 0, 'x'},
{"ny", required_argument, 0, 'y'},
{"filename", required_argument, 0, 'f'},
{"help", no_argument, 0, 'h'},
{0, 0, 0, 0}};
char c;
int option_index;
int tempint;
int defaultnpts = 100;
FILE *tst;
char *defaultfname=rundata->filename;
while (1) {
c = getopt_long(argc, argv, "x:y:f:h", long_options,
&option_index);
if (c == -1) break;
switch (c) {
case 0: if (long_options[option_index].flag != 0)
break;
case 'x': tempint = atoi(optarg);
if (tempint < 1 || tempint > 500) {
fprintf(stderr,
"%s: Cannot use number of points %s;\n",
argv[0], optarg);
fprintf(stderr," Using %d\n", defaultnpts);
rundata->nx = defaultnpts;
} else {
rundata->nx = tempint;
}
break;
case 'y': tempint = atoi(optarg);
if (tempint < 1 || tempint > 500) {
fprintf(stderr,
"%s: Cannot use number of points %s;\n",
argv[0], optarg);
fprintf(stderr," Using %d\n", defaultnpts);
rundata->ny = defaultnpts;
} else {
rundata->ny = tempint;
}
break;
case 'f': strncpy(rundata->filename, optarg, MAXFILENAME-1);
if (!(tst=fopen(rundata->filename,"w"))) {
fprintf(stderr,
"Cannot use filename %s;\n",
rundata->filename);
fprintf(stderr, " Using %s\n",defaultfname);
strcpy(rundata->filename, defaultfname);
} else
fclose(tst);
break;
case 'h':
puts("Options: ");
puts(" --nx=N (-x N): Set the number of grid cells in x direction.");
puts(" --ny=N (-y N): Set the number of grid cells in y direction.");
puts(" --fileaname=S (-f S): Set the output filename.");
puts("");
return +1;
default: printf("Invalid option %s\n", optarg);
break;
}
}
return 0;
}
double **array2d(int nx, int ny) {
int i;
double *data = (double *)malloc(nx*ny*sizeof(double));
double **p = (double **)malloc(nx*sizeof(double *));
if (data == NULL) return NULL;
if (p == NULL) {
free(data);
return NULL;
}
for (i=0; i<nx; i++) {
p[i] = &(data[ny*i]);
}
return p;
}
void freearray2d(double **p) {
free(p[0]);
free(p);
return;
}
double ***array3d(int nd, int nx, int ny) {
int i;
double *data = (double *)malloc(nd*nx*ny*sizeof(double));
double **datap = (double **)malloc(nd*nx*sizeof(double *));
double ***p = (double ***)malloc(nd*sizeof(double **));
if (data == NULL) return NULL;
if (datap == NULL) {
free(data);
return NULL;
}
if (p == NULL) {
free(data);
free(datap);
return NULL;
}
for (i=0; i<nd*nx; i++) {
datap[i] = &(data[ny*i]);
}
for (i=0; i<nd; i++) {
p[i] = &(datap[nx*i]);
}
return p;
}
void freearray3d(double ***p) {
free(p[0][0]);
free(p[0]);
free(p);
return;
}
void fillarray2d(double **d, int nx, int ny) {
int i,j;
double sigma=nx/4.;
double r2,r2x;
for (i=0;i<nx;i++) {
r2x = (i-nx/2.)*(i-nx/2.);
for (j=0;j<ny;j++) {
r2 = r2x + (j-ny/2.)*(j-ny/2.);
d[i][j] = 1. + 4.*exp(-r2/(2.*sigma*sigma));
}
}
return;
}
void fillarray3d(double ***d, int nx, int ny) {
int i,j;
double sigma=nx/4.;
double r2,r2x;
for (i=0;i<nx;i++) {
r2x = (i-nx/2.)*(i-nx/2.);
for (j=0;j<ny;j++) {
r2 = r2x + (j-ny/2.)*(j-ny/2.);
if (r2 == 0) {
d[0][i][j] = 0.;
d[1][i][j] = 0.;
} else {
d[0][i][j] = exp(-r2/(2.*sigma*sigma))*(j-ny/2.);
d[1][i][j] = -exp(-r2/(2.*sigma*sigma))*(i-nx/2.);
}
}
}
return;
}
void printarray2d(double **d, int nx, int ny) {
int i,j;
for (i=0;i<nx;i++) {
for (j=0;j<ny;j++) {
printf("%10.3g\t",d[i][j]);
}
puts("");
}
return;
}