source: trunk/SpectralModelF90/PROJECTS/SIMU_ASARO/io_params @ 11

Last change on this file since 11 was 11, checked in by xlvlod, 17 years ago

Import initial

File size: 1.4 KB
Line 
1!! file io_params.h
2!! comment lines start with !
3!! comments to right of assignments are ok
4!!===============================================================
5
6  num_netcdf_files=1
7
8!======================================================================
9
10  filename_root(1) = 'snapXZ' !! directory,processor id and time step
11!                                are appended to filenames as appropriate
12
13
14  nsteps(1) = 10              !! number of time steps btwn writes
15  mode(1) = 'new'             !! 'new' file every nsteps(:) or 'append'
16
17! 1st index --> dimension, 2nd index is id for this file
18  ilocs(1,1) = 1    !! start index for i (x) dimension
19  ilocs(2,1) = 16  !! end  index for i
20  ilocs(3,1) = 1    !! increment for i loop
21
22! collapse space diminsions like this
23  jlocs(1,1) = 1    !! start index for j (y) dimension
24  jlocs(2,1) = 1  !! end  index for j
25  jlocs(3,1) = 1    !! increment for j loop
26
27! klocs are globally indexed
28  klocs(1,1) = 1    !! start index for k (z) dimension
29  klocs(2,1) = 16    !! end  index for k
30  klocs(3,1) = 1    !! increment for k loop
31
32! 1==> write the variable, 0==> don't write the variable
33  variable_key(1,1)=1      !! write u
34  variable_key(2,1)=1      !! write v
35  variable_key(3,1)=1      !! write w
36  variable_key(4,1)=1      !! write s1
37  variable_key(5,1)=0      !! dont write s2
38  variable_key(6,1)=0      !! dont write vort_x
39  variable_key(7,1)=0      !! dont write vort_y
40  variable_key(8,1)=0      !! dont write vort_z
41
Note: See TracBrowser for help on using the repository browser.