source: dynamico_lmdz/simple_physics/phyparam/param/inifrict.F @ 4176

Last change on this file since 4176 was 4176, checked in by dubos, 5 years ago

simple_physics : copy code from FH

File size: 1.7 KB
Line 
1      SUBROUTINE inifrict(timestep)
2      USE comgeomfi, ONLY : ngridmax,nlayermx
3      USE constlim
4      IMPLICIT NONE
5c=======================================================================
6c
7c   Calcul des coefficients de ls diffusion verticale
8c
9c=======================================================================
10c-----------------------------------------------------------------------
11c   Declarations:
12c   -------------
13
14#include "comcstfi.h"
15! include "comvert.h"
16
17c   local:
18c   ------
19
20      REAL dgrad,cpr,rl2,rrr,timestep
21      INTEGER l,ij
22
23c-----------------------------------------------------------------------
24
25      call initconstlim
26
27      dtradia=timestep
28      PRINT*,'DTPHYS',dtradia
29      lmixmin=100.
30      ais1    = 1.
31      ais2    = ais1 - 1.
32      print*,'ais1',ais1,'ais2',ais2
33      cdzmin  = 1.e-6
34      OPEN(99,file='cdzmin',status='old',err=9999)
35      READ(99,*) cdzmin
369999  CLOSE(99)
37      PRINT*,'cdzmin=',cdzmin
38
39      cpr     = cpp/ r
40      ccdzh   = 2.5*g
41c!!!  cpgam   = 5.e-3*cpp
42      cpgam=0.
43
44c-----------------------------------------------------------------------
45c   coefficient de diffusion dans l'atmosphere:
46c   -------------------------------------------
47
48      rl2=lmixmin**2
49      cdzconst(1)= 0.
50      DO 15 l=1,nlayermx - 1
51         cdzconst(l+1)= dtradia*g*g*cpr*rl2
52         print*,'cdzconst(',l+1,')  =  ',cdzconst(l+1)
53  15  CONTINUE
54
55c-----------------------------------------------------------------------
56c   couche limite de surface:
57c   -------------------------
58
59      cdrat   = 2.e-3
60      dgrad   = dtradia*g*cpp/r
61      DO 16 ij = 1, ngridmax
62         dgcdrag( ij ) = cdrat * dgrad
63  16  CONTINUE
64
65      RETURN
66      END
Note: See TracBrowser for help on using the repository browser.