source: trunk/SpectralModelF90/PROJECTS/BETA_PLANE/POMME/output_control @ 6

Last change on this file since 6 was 6, checked in by xlvlod, 18 years ago

import initial from SVN_BASE_TRUNK

File size: 1.4 KB
Line 
1# usage:
2# (x, y, z), t_write_all, filename_root
3#
4#       (x, y, z) -> the data you want to see
5#       You can specify all the data in the range of the problem
6#       using '*' as a wildcard. You can specify a range using ':'.
7#       For example, (*,*,10) represents the xy plane at z=10.
8#       (8:16,*,*) represents the line of x ranging between 8
9#       and 16 inclusively. You can also combine these, such as:
10#       (16:*,*) to represent the data from 16 to the end in the x
11#       direction, and all of the data in the y and z directions.
12#
13#       t_write_all -> how often you want to see it (in secs)
14#       This can be an integer representing the number of seconds,
15#       or an integer*dt representing the number of timesteps.
16#
17#       filename_root -> root of the filename you want the output sent to.
18#       For example, cfd3D will be used to generate outputfiles named
19#       "cfd3D_XXXXXX" where XXXXXX is an integer representing the timestep
20#       of the current output. All 3D output will be put in a directory
21#       called output/3D/, so its a good idea to give every output line below
22#       a unique filename root.
23
24# The entire cube of data, reported every 5 timesteps.
25# (*, *, *), 5*dt , cfd_3D
26
27# Samples:
28
29# The xy plane at z=10, output every 50 timesteps.
30(*,1,*),10*dt, cfd_2D
31
32# The line of data for 8<=x<=16 within the planes y=1 and z=10,
33# output every 10 timesteps.
Note: See TracBrowser for help on using the repository browser.