1 | {\footnotesize |
---|
2 | \begin{verbatim} |
---|
3 | netcdf start { |
---|
4 | dimensions: |
---|
5 | index = 100 ; |
---|
6 | rlonu = 33 ; |
---|
7 | latitude = 25 ; |
---|
8 | longitude = 33 ; |
---|
9 | rlatv = 24 ; |
---|
10 | altitude = 18 ; |
---|
11 | interlayer = 19 ; |
---|
12 | Time = UNLIMITED ; // (1 currently) |
---|
13 | variables: |
---|
14 | float controle(index) ; |
---|
15 | controle:title = "Parametres de controle" ; |
---|
16 | float rlonu(rlonu) ; |
---|
17 | rlonu:title = "Longitudes des points U" ; |
---|
18 | float rlatu(latitude) ; |
---|
19 | rlatu:title = "Latitudes des points U" ; |
---|
20 | float rlonv(longitude) ; |
---|
21 | rlonv:title = "Longitudes des points V" ; |
---|
22 | float rlatv(rlatv) ; |
---|
23 | rlatv:title = "Latitudes des points V" ; |
---|
24 | float ap(interlayer) ; |
---|
25 | ap:title = "Coef A: hybrid pressure levels" ; |
---|
26 | float bp(interlayer) ; |
---|
27 | bp:title = "Coef B: hybrid sigma levels" ; |
---|
28 | float aps(altitude) ; |
---|
29 | aps:title = "Coef AS: hybrid pressure at midlayers" ; |
---|
30 | float bps(altitude) ; |
---|
31 | bps:title = "Coef BS: hybrid sigma at midlayers" ; |
---|
32 | float presnivs(altitude) ; |
---|
33 | float latitude(latitude) ; |
---|
34 | latitude:units = "degrees_north" ; |
---|
35 | latitude:long_name = "North latitude" ; |
---|
36 | float longitude(longitude) ; |
---|
37 | longitude:long_name = "East longitude" ; |
---|
38 | longitude:units = "degrees_east" ; |
---|
39 | float altitude(altitude) ; |
---|
40 | altitude:long_name = "pseudo-alt" ; |
---|
41 | altitude:units = "km" ; |
---|
42 | altitude:positive = "up" ; |
---|
43 | float cu(latitude, rlonu) ; |
---|
44 | cu:title = "Coefficient de passage pour U" ; |
---|
45 | float cv(rlatv, longitude) ; |
---|
46 | cv:title = "Coefficient de passage pour V" ; |
---|
47 | float aire(latitude, longitude) ; |
---|
48 | aire:title = "Aires de chaque maille" ; |
---|
49 | float phisinit(latitude, longitude) ; |
---|
50 | phisinit:title = "Geopotentiel au sol" ; |
---|
51 | float Time(Time) ; |
---|
52 | Time:title = "Temps de simulation" ; |
---|
53 | Time:units = "days since 1-01-01 00:00:00" ; |
---|
54 | float ucov(Time, altitude, latitude, rlonu) ; |
---|
55 | ucov:title = "Vitesse U" ; |
---|
56 | float vcov(Time, altitude, rlatv, longitude) ; |
---|
57 | vcov:title = "Vitesse V" ; |
---|
58 | float teta(Time, altitude, latitude, longitude) ; |
---|
59 | teta:title = "Temperature" ; |
---|
60 | float h2o_ice(Time, altitude, latitude, longitude) ; |
---|
61 | h2o_ice:title = "Traceur h2o_ice" ; |
---|
62 | float h2o_vap(Time, altitude, latitude, longitude) ; |
---|
63 | h2o_vap:title = "Traceur h2o_vap" ; |
---|
64 | float masse(Time, altitude, latitude, longitude) ; |
---|
65 | masse:title = "C est quoi ?" ; |
---|
66 | float ps(Time, latitude, longitude) ; |
---|
67 | ps:title = "Pression au sol" ; |
---|
68 | |
---|
69 | // global attributes: |
---|
70 | :title = "Dynamic start file" ; |
---|
71 | } |
---|
72 | \end{verbatim} |
---|
73 | } |
---|