File size: 10,450 Bytes
6866389
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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

// **************************************************************
// **************************************************************
// *********** netcdf configuration file for SIG program  *******
// *********** Version 1.0                                *******
// **************************************************************
// **************************************************************
// **************************************************************
// ** EUROPIV II Project                                       **
// ** Synthetic Image Generator                                **
// ** Feb. 2001                                                **
// **************************************************************
// ** Bertrand Lecordier : Bertrand.Lecordier@coria.fr         **
// ** Jerry Westerweel   : j.westerweel@wbmt.tudelft.nl        **
// *************************************************************/


netcdf sig_conf {

dimensions:
	d_chaine	=	unlimited;


//*********************************************
//************************Variables ***********
//*********************************************

variables:

	int	p_dimX;
			p_dimX:valid_min	=	1;
			p_dimX:valid_max	=	4096;
			p_dimX:units		=	"pixel";
			p_dimX:long_name	=	"main image width";

	int	p_dimY;
			p_dimY:valid_min	=	1;
			p_dimY:valid_max	=	4096;
			p_dimY:units		=	"pixel";
			p_dimY:long_name	=	"main image height";

	int	p_dimL;
			p_dimL:valid_min	=	0;
			p_dimL:valid_max	=	1024;
			p_dimL:units		=	"pixel";
			p_dimL:long_name	=	"left strip";

	int	p_dimR;
			p_dimR:valid_min	=	0;
			p_dimR:valid_max	=	1024;
			p_dimR:units		=	"pixel";
			p_dimR:long_name	=	"right strip";

	int	p_dimT;
			p_dimT:valid_min	=	0;
			p_dimT:valid_max	=	1024;
			p_dimT:units		=	"pixel";
			p_dimT:long_name	=	"top strip";
	
	int	p_dimB;
			p_dimB:valid_min	=	0;
			p_dimB:valid_max	=	1024;
			p_dimB:units		=	"pixel";
			p_dimB:long_name	=	"bottom strip";	

	char	periodic_flag(d_chaine);

//*********************************************
//*********************************************
//     Particle field dimension (real space)
//     r_[x,y,z]min, r_[x,y,z]max defined the region of interest
//     into the particle field - the particle field can be largeur
//
//	The magnification factor is obtained from
//	Gx = (r_xmax-r_xmin)/p_dimX (real/pixel) 
//	Gy = (r_ymax-r_ymin)/p_dimY (real/pixel)
//	Important : Gx and Gy can be different

	// ******* X axis **************************
	double		r_xmin;
			r_xmin:units		=	"real";
			r_xmin:long_name	=	"x minimum";

	double		r_xmax;
			r_xmax:units		=	"real";
			r_xmax:long_name	=	"x maximum";

	// ******* Y axis **************************
	double		r_ymin;
			r_ymin:units		=	"real";
			r_ymin:long_name	=	"y minimum";

	double		r_ymax;
			r_ymax:units		=	"real";
			r_ymax:long_name	=	"y maximum";	

	// ******* Z axis ***************************
	// ** for the 2D particle (x,y), used the same value for
	// ** r_zmin, r_zmin and sheet_rpos_z
	double		r_zmin;
			r_zmin:units		=	"real";
			r_zmin:long_name	=	"z minimum";

	double		r_zmax;
			r_zmax:units		=	"real";
			r_zmax:long_name	=	"z maximum";	


// ****************************************
// ****************************************
// Light sheet information
// ****************************************
// ****************************************

	char 	lsheet_type(d_chaine);
		lsheet_type:long_name	=	"type of light sheet";
					// possible values : 
					//		uniform
					//		gaussian
					//		triangle
					// 		cosine
					//		squarecosine
	
	// location in the real domain of the center 
	// of laser sheet (perpendicular to the z axis)
	double 	lsheet_rpos_z;
		lsheet_rpos_z:units	=	"real";
		lsheet_rpos_z:long_name	=	"z location of light sheet";

	double	lsheet_rthickness;
		lsheet_rthickness:valid_min	=	0.0;
		lsheet_rthickness:units		=	"real";
		lsheet_rthickness:long_name	=	"light sheet thickness";

	double	lsheet_wave_length;
		lsheet_wave_length:valid_min	= 	0.0;
		lsheet_wave_length:units	=	"real";
		lsheet_wave_length:long_name	= 	"laser wave length";

// ************************************************
// ************* Particle distribution ************
// ************************************************

	char	part_distribution(d_chaine);
					// Possible alternative
					// uniform : constant diameter equal to part_mean_diam
					//           
					// gaussian: gaussian distribution for the particle diameter
					//           mean diameter : part_mean_diam
					//           std  diameter : part_std_diam
	double	part_min_diam;
			part_min_diam:valid_min	=	0.0;
			part_min_diam:long_name =	"minimum particle diameter";
	double	part_max_diam;
			part_max_diam:valid_min	=	0.0;
			part_max_diam:valid_max	=	10.0;
			part_max_diam:long_name =	"maximum particle diameter";
	double	part_mean_diam;
			part_mean_diam:long_name=	"mean particle diamete";
	double	part_std_diam;
			part_std_diam:long_name=	"std. of distribution of particle diameter";

// *****************************************************
// ************ image pattern information **************
// *****************************************************

	char	pattern_type(d_chaine);
						// possible values
						// gaussian : gaussian particle shape
						// circle   : circle particle shape
						// rectangle: rectangle particle shape
	double	pattern_meanx;
			pattern_meanx:valid_min =	0.0;
			pattern_meanx:long_name	=	"pattern size for the part_meanx_diam";
	double	pattern_meany;
			pattern_meany:valid_min =	0.0;
			pattern_meany:long_name	=	"pattern size for the part_meany_diam";


// ************************************************
// ************ Projection information ************
// ************************************************

	char	projection_type(d_chaine);
						// possible values
						// normal  : Normal projection without effect of particle motion along z
						// znormal : Normal projection with effect of particule motion along z
						// angular : Angular projection for stereo PIV
					
	double projection_angle;					// For angular projection
			projection_angle:valid_min = 		0.0;
			projection_angle:valid_max =    	360;
			projection_angle:long_name =    	"Angle of view";
	double projection_tilt_angle;					// For angular projection
			projection_tilt_angle:valid_min = 	0.0;
			projection_tilt_angle:valid_max =    	360;
			projection_tilt_angle:long_name =    	"Tilt angle";

// ************************************************
// ************* CCD information       ************
// ************************************************

	// Pixel active area size : ccd_fill_ratio_x*ccd_fill_ratio_y
	double	ccd_fill_ratio_x;
			ccd_fill_ratio_x:valid_min	=	0.0;
			ccd_fill_ratio_x:valid_max	=	1.0;
			ccd_fill_ratio_x:long_name	=	"X CCD fill ration";
	double	ccd_fill_ratio_y;
			ccd_fill_ratio_y:valid_min	=	0.0;
			ccd_fill_ratio_y:valid_max	=	1.0;
			ccd_fill_ratio_y:long_name	=	"Y CCD fill ration";	
	double	ccd_saturation_level;
			ccd_saturation_level:valid_min		=	0.0;
			ccd_saturation_level:valid_max		=	1.0;
			ccd_saturation_level:long_name		=	"saturation level";
			


	//****** Initial background information *******/

	char ccd_background_type(d_chaine);
					// Possible alternative
					// uniform : uniform background with 
					//           level ccd_background_mean_level
					// gaussian: gaussian noise with a mean value
					//           equal to ccd_background_mean_level
					//           and a std. equal to ccd_background_std_noise
	double	ccd_background_mean_level;
			ccd_background_mean_level:valid_min	=	0;
			ccd_background_mean_level:long_name	=	"mean initial background level";
	double	ccd_background_std_noise;
			ccd_background_std_noise:valid_min	=	0;
			ccd_background_std_noise:long_name	=	"std. noise for initial background";

	double  ccd_pixel_horizontal_pitch;
			ccd_pixel_horizontal_pitch:valid_min		=	0.0;
			ccd_pixel_horizontal_pitch:units		=	"pixel/real";
			ccd_pixel_horizontal_pitch:long_name		=	"horizontal pixel pitch";

	double ccd_pixel_vertical_pitch;
			ccd_pixel_vertical_pitch:valid_min		=	0.0;
			ccd_pixel_vertical_pitch:units			=	"pixel/real";
			ccd_pixel_vertical_pitch:long_name		=	"vertical pixel pitch";


// *************************************************
// **********optics information ********************
// *************************************************

	double 	optic_object_distance;
			optic_object_distance:long_name		=	"object distance";

	double 	optic_image_distance;
			optic_image_distance:long_name		=	"image distance";

 	double	optic_aperture;
			optic_aperture:valid_min		=	1.;
			optic_aperture:long_name		=	"optic aperture";

  	double        optic_magnification;
			optic_magnification:valid_min		=	0.0;
			optic_magnification:long_name		=	"optic magnification";



	

// ************************************************
// ** initial seed numbers for the random generator 
// ************************************************

	int	seed_number1;
			seed_number1:valid_min	=	0;
			seed_number1:valid_max	=	30000;
			seed_number1:long_name	=	"seed number 1";

	int	seed_number2;
			seed_number2:valid_min	=	0;
			seed_number2:valid_max	=	30000;
			seed_number2:long_name	=	"seed number 2";

	int	seed_number3;
			seed_number3:valid_min	=	0;
			seed_number3:valid_max	=	30000;
			seed_number3:long_name	=	"seed number 3";
data:

 p_dimX = 2048 ;

 p_dimY = 2048 ;

 p_dimL = 0 ;

 p_dimR = 0 ;

 p_dimT = 0 ;

 p_dimB = 0 ;

 periodic_flag = "no_periodic" ;

 r_xmin = 0 ;

 r_xmax = 150;

 r_ymin = -150 ;

 r_ymax = 0 ;

 r_zmin = -0.6 ;

 r_zmax = 0.6 ;

 lsheet_type = "uniform" ;

 lsheet_rpos_z = 0 ;

 lsheet_rthickness = 1.2 ;

 lsheet_wave_length = 532e-9 ;

 part_distribution = "uniform" ;

 part_min_diam = 0.7 ;

 part_max_diam =  0.7;

 part_mean_diam = 0.7 ;

 part_std_diam = 0;

 pattern_type = "gaussian" ;

 pattern_meanx = 1.274;

 pattern_meany = 1.274 ;

 projection_type = "normal" ;

 projection_angle = 0 ;

 projection_tilt_angle = 0 ;

 ccd_fill_ratio_x = 1 ;

 ccd_fill_ratio_y = 1 ;

 ccd_saturation_level = 1 ;

 ccd_background_type = "gaussian" ;

 ccd_background_mean_level = 0 ;

 ccd_background_std_noise = 0 ;

 ccd_pixel_horizontal_pitch = 327.68 ;

 ccd_pixel_vertical_pitch = 327.68 ;

 optic_object_distance = 5000 ;

 optic_image_distance = 208.5 ;

 optic_aperture = 2 ;

 optic_magnification = 0.0417;

 seed_number1 = 1 ;

 seed_number2 = 100 ;

 seed_number3 = 10000 ;
}