source: trunk/MESOSCALE_DEV/WORK/wrf_correc @ 740

Last change on this file since 740 was 258, checked in by aslmd, 13 years ago

MESOSCALE: user manual. finished nesting + tracers + LES. only postproc is missing.

  • Property svn:executable set to *
File size: 1.2 KB
Line 
1- reference state need to be hydrostatically balanced
2- reference state function of height only
3(- reference state satisfy the governing equations for an atmosphere at rest)
4- use ref state of idealized stuff ?
5
6attention dans start_em
7
8c'est l'avant-dernier level qui compte
9
10problem
11- souci de temperature negative parce que base_lapse trop eleve
12- repartition verticale pas bonne, meilleure avec exponentielle
13
14
15fin de compute_eta (plus rajouter des -2)
16
17         !  Add those 2 levels back into the middle, just above the 8 levels
18         !  that semi define a boundary layer.  After we open up the levels,
19         !  then we just linearly interpolate in znw.  So now levels 1-8 are
20         !  specified as the fixed boundary layer levels given in this routine.
21         !  The top levels, 12 through kte are those computed.  The middle
22         !  levels 9, 10, and 11 are equi-spaced in znw, and are each 1/2 the
23         !  the znw thickness of levels 11 through 12.
24
25         DO k = kte-2 , 9 , -1
26            znw(k+2) = znw(k)
27         END DO
28
29         znw( 9) = 0.75 * znw( 8) + 0.25 * znw(12)
30         znw(10) = 0.50 * znw( 8) + 0.50 * znw(12)
31         znw(11) = 0.25 * znw( 8) + 0.75 * znw(12)
Note: See TracBrowser for help on using the repository browser.