-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathnetcdf_mpas_prb.cpp
362 lines (317 loc) · 7.75 KB
/
netcdf_mpas_prb.cpp
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
# include <cstdlib>
# include <iostream>
# include <iomanip>
# include <cmath>
# include <cstring>
using namespace std;
# include "netcdf_mpas.hpp"
# include "netcdf.hpp"
int main ( );
void test01 ( string filename );
void test02 ( string filename );
void test03 ( string filename );
void test04 ( string filename );
//****************************************************************************80
int main ( void )
//****************************************************************************80
//
// Purpose:
//
// MAIN is the main program for NETCDF_MPAS_PRB.
//
// Discussion:
//
// NETCDF_MPAS_PRB tests the NETCDF_MPAS library.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 30 December 2010
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Russ Rew, Glenn Davis, Steve Emmerson, Harvey Davies, Ed Hartne,
// The NETCDF User"s Guide,
// Unidata Program Center, March 2009.
//
{
string filename = "x1.642.grid.nc";
timestamp ( );
cout << "\n";
cout << "NETCDF_MPAS_PRB\n";
cout << " C++ version\n";
cout << " Test the NETCDF_MPAS library.\n";
//
// TEST01 won't run on my home computer because of difficulties
// with the version of NETCDF installed there.
//
if ( false )
{
test01 ( filename );
}
test02 ( filename );
test03 ( filename );
test04 ( filename );
//
// Terminate.
//
cout << "\n";
cout << "NETCDF_MPAS_PRB\n";
cout << " Normal end of execution.\n";
cout << "\n";
timestamp ( );
return 0;
}
//****************************************************************************80
void test01 ( string filename )
//****************************************************************************80
//
// Purpose:
//
// TEST01 reads an MPAS NETCDF grid file and reports some information.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 29 December 2010
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Russ Rew, Glenn Davis, Steve Emmerson, Harvey Davies, Ed Hartne,
// The NETCDF User"s Guide,
// Unidata Program Center, March 2009.
//
// Parameters:
//
// Input, string FILENAME, the name of the file to be examined.
//
{
cout << "\n";
cout << "TEST01:\n";
cout << " Open an MPAS NETCDF grid file,\n";
cout << " use inquire functions to examine information,\n";
cout << " and make a report.\n";
netcdf_mpas_report ( filename );
return;
}
//****************************************************************************80
void test02 ( string filename )
//****************************************************************************80
//
// Purpose:
//
// TEST02 extracts the cell center information.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 29 December 2010
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Russ Rew, Glenn Davis, Steve Emmerson, Harvey Davies, Ed Hartne,
// The NETCDF User"s Guide,
// Unidata Program Center, March 2009.
//
// Parameters:
//
// Input, string FILENAME, the name of the file to be examined.
//
{
int i;
int ncells;
double *xcell;
double *ycell;
double *zcell;
cout << "\n";
cout << "TEST02:\n";
cout << " Open an MPAS NETCDF grid file,\n";
cout << " find the number of cells,\n";
cout << " and get the cell center coordinates.\n";
ncells = netcdf_mpas_read_ncells ( filename );
xcell = new double[ncells];
ycell = new double[ncells];
zcell = new double[ncells];
netcdf_mpas_read_xyzcell ( filename, ncells, xcell, ycell, zcell );
cout << "\n";
cout << " First 10 cell centers:\n";
cout << "\n";
for ( i = 0; i < 10; i++ )
{
cout << " " << setw(2) << i
<< " " << setw(10) << xcell[i]
<< " " << setw(10) << ycell[i]
<< " " << setw(10) << zcell[i] << "\n";
}
delete [] xcell;
delete [] ycell;
delete [] zcell;
return;
}
//****************************************************************************80
void test03 ( string filename )
//****************************************************************************80
//
// Purpose:
//
// TEST03 extracts the cell centers and cells on edges.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 30 December 2010
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Russ Rew, Glenn Davis, Steve Emmerson, Harvey Davies, Ed Hartne,
// The NETCDF User"s Guide,
// Unidata Program Center, March 2009.
//
// Parameters:
//
// Input, string FILENAME, the name of the file to be examined.
//
{
int *cellsonedge;
int i;
int j;
int ncells;
int nedges;
double *xcell;
double *ycell;
double *zcell;
cout << "\n";
cout << "TEST03:\n";
cout << " Open an MPAS NETCDF grid file,\n";
cout << " find the number of cells and edges,\n";
cout << " get the cell center coordinates,\n";
cout << " and the cellsOnEdge array.\n";
ncells = netcdf_mpas_read_ncells ( filename );
xcell = new double[ncells];
ycell = new double[ncells];
zcell = new double[ncells];
netcdf_mpas_read_xyzcell ( filename, ncells, xcell, ycell, zcell );
nedges = netcdf_mpas_read_nedges ( filename );
cout << "\n";
cout << " Number of edges NEDGES = " << nedges << "\n";
cellsonedge = new int[2*nedges];
netcdf_mpas_read_cellsonedge ( filename, nedges, cellsonedge );
cout << "\n";
cout << " First ten entries of CELLSONEDGE:\n";
cout << "\n";
for ( j = 0; j < 10; j++ )
{
cout << " " << setw(2) << j
<< " " << setw(4) << cellsonedge[0+2*j]
<< " " << setw(4) << cellsonedge[1+2*j] << "\n";
}
delete [] cellsonedge;
delete [] xcell;
delete [] ycell;
delete [] zcell;
return;
}
//****************************************************************************80
void test04 ( string filename )
//****************************************************************************80
//
// Purpose:
//
// TEST04 extracts the cell centers and cells on vertices.
//
// Discussion:
//
// The data retrieved in this example should be sufficient to plot
// the triangulation, including the triangular faces.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 30 December 2010
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Russ Rew, Glenn Davis, Steve Emmerson, Harvey Davies, Ed Hartne,
// The NETCDF User"s Guide,
// Unidata Program Center, March 2009.
//
// Parameters:
//
// Input, string FILENAME, the name of the file to be examined.
//
{
int *cellsonvertex;
int i;
int j;
int ncells;
int nvertices;
double *xcell;
double *ycell;
double *zcell;
cout << "\n";
cout << "TEST04:\n";
cout << " Open an MPAS NETCDF grid file,\n";
cout << " find the number of cells and edges,\n";
cout << " get the cell center coordinates,\n";
cout << " and the cellsOnVertex array.\n";
ncells = netcdf_mpas_read_ncells ( filename );
xcell = new double[ncells];
ycell = new double[ncells];
zcell = new double[ncells];
netcdf_mpas_read_xyzcell ( filename, ncells, xcell, ycell, zcell );
nvertices = netcdf_mpas_read_nvertices ( filename );
cout << "\n";
cout << " Number of verties NVERTICES = " << nvertices << "\n";
cellsonvertex = new int[3*nvertices];
netcdf_mpas_read_cellsonvertex ( filename, nvertices, cellsonvertex );
cout << "\n";
cout << " First ten entries of CELLSONVERTEX:\n";
cout << "\n";
for ( j = 0; j < 10; j++ )
{
cout << " " << setw(2) << j
<< " " << setw(4) << cellsonvertex[0+3*j]
<< " " << setw(4) << cellsonvertex[1+3*j]
<< " " << setw(4) << cellsonvertex[2+3*j] << "\n";
}
delete [] cellsonvertex;
delete [] xcell;
delete [] ycell;
delete [] zcell;
return;
}