Last change
on this file since 1243 was
11,
checked in by aslmd, 14 years ago
|
spiga@svn-planeto:ajoute le modele meso-echelle martien
|
File size:
1.7 KB
|
Line | |
---|
1 | DO n = 1, num_nests |
---|
2 | |
---|
3 | Initialize input of static fields (input_init) |
---|
4 | Initialize storage module (storage_init) |
---|
5 | |
---|
6 | Read global attributes (read_global_attrs) |
---|
7 | |
---|
8 | Read a static field (read_next_field) |
---|
9 | Store static field (storage_put_field) |
---|
10 | ... |
---|
11 | Read a static field (read_next_field) |
---|
12 | Store static field (storage_put_field) |
---|
13 | |
---|
14 | Close input of static fields (input_close) |
---|
15 | |
---|
16 | DO t = 1, num_times |
---|
17 | |
---|
18 | FOREACH degribbed field |
---|
19 | Read degribbed field for time t (???) |
---|
20 | Interpolate field to model grid (???) |
---|
21 | Store interpolated field (storage_put_field) |
---|
22 | END |
---|
23 | |
---|
24 | Initialize output for nest/time (output_init) |
---|
25 | |
---|
26 | Write nest global attributes (write_global_attrs) |
---|
27 | |
---|
28 | Retrieve an interpolated field for output (storage_get_field) |
---|
29 | Write the field to I/O API (write_field) |
---|
30 | ... |
---|
31 | Retrieve an interpolated field for output (storage_get_field) |
---|
32 | Write the field to I/O API (write_field) |
---|
33 | |
---|
34 | Close output for nest/time (output_close) |
---|
35 | |
---|
36 | Clear all time-dependent data from storage (storage_delete_all_td) |
---|
37 | |
---|
38 | END DO |
---|
39 | |
---|
40 | Clear all time-independent data from storage (storage_delete_all) |
---|
41 | |
---|
42 | END DO |
---|
Note: See
TracBrowser
for help on using the repository browser.