/[lmdze]/trunk/Sources/dyn3d/iniadvtrac.f
ViewVC logotype

Contents of /trunk/Sources/dyn3d/iniadvtrac.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 134 - (show annotations)
Wed Apr 29 15:47:56 2015 UTC (9 years ago) by guez
File size: 3891 byte(s)
Sources inside, compilation outside.
1 module iniadvtrac_m
2
3 ! From advtrac.h, version 1.1.1.1 2004/05/19 12:53:06
4
5 ! iq = 1 pour l'eau vapeur
6 ! iq = 2 pour l'eau liquide
7 ! et éventuellement iq = 3, ..., nqmx pour les autres traceurs
8
9 use dimens_m, only: nqmx
10
11 implicit none
12
13 private nqmx
14
15 INTEGER iadv(nqmx) ! indice du schéma d'advection pour l'eau et les traceurs
16 ! 11 means Van-Leer scheme for hadv et monotonous PPM for vadv
17
18 integer, parameter:: allowed_adv(10) = (/0, 1, 2, 10, 12, 13, 14, 16, 17, 18/)
19 ! Allowed values for hadv and vadv:
20 ! 1: schema transport type "humidite specifique LMD"
21 ! 2: schema amont
22 ! 10: schema Van-leer (retenu pour l'eau vapeur et liquide)
23 ! 12: schema Frederic Hourdin I
24 ! 13: schema Frederic Hourdin II
25 ! 14: schema Van-leer + humidite specifique
26 ! 16: schema PPM Monotone(Collela & Woodward 1984)
27 ! 17: schema PPM Semi Monotone (overshoots autorisés)
28 ! 18: schema PPM Positif Defini (overshoots undershoots autorisés)
29 ! Pour Van-Leer plus vapeur d'eau saturée : iadv(1)=4
30
31 INTEGER hadv(nqmx) ! indice schéma transport horizontal
32 INTEGER vadv(nqmx) ! indice schéma transport vertical
33
34 character(len=10) tname(nqmx)
35 ! nom du traceur pour fichiers restart et historiques
36
37 character(len=13) ttext(nqmx) ! nom long du traceur pour sorties
38
39 contains
40
41 subroutine iniadvtrac
42
43 ! From dyn3d/iniadvtrac.F, version 1.3 2005/04/13 08:58:34
44
45 ! Authors: P. Le Van, L. Fairhead, F. Hourdin, F. Codron,
46 ! F. Forget, M.-A. Filiberti
47
48 ! Initialisation des traceurs
49 ! Choix du schéma pour l'advection dans le fichier "traceur.def"
50
51 use nr_util, only: assert
52 use jumble, only: new_unit
53
54 ! Variables local to the procedure:
55
56 character(len=3) descrq(18)
57 integer iq, iostat, nq_local, unit
58
59 !-----------------------------------------------------------------------
60
61 print *, "Call sequence information: iniadvtrac"
62
63 ! Initializations:
64 descrq(10)='VL1'
65 descrq(11)='VLP'
66 descrq(12)='FH1'
67 descrq(13)='FH2'
68 descrq(14)='VLH'
69 descrq(16)='PPM'
70 descrq(17)='PPS'
71 descrq(18)='PPP'
72
73 ! Choix du schéma pour l'advection dans fichier "traceur.def"
74 call new_unit(unit)
75 open(unit, file='traceur.def', status='old', action="read", &
76 position="rewind", iostat=iostat)
77 if (iostat == 0) then
78 print *, 'Ouverture de "traceur.def" ok'
79 read(unit, fmt=*) nq_local
80 print *, 'nombre de traceurs ', nq_local
81 call assert(nq_local == nqmx, "iniadvtrac nq_local")
82
83 do iq=1, nqmx
84 read(unit, fmt=*) hadv(iq), vadv(iq), tname(iq)
85 if (.not. any(hadv(iq) == allowed_adv) &
86 .or. .not. any(vadv(iq) == allowed_adv)) then
87 print *, "bad number for advection scheme"
88 stop 1
89 end if
90 end do
91 close(unit)
92 else
93 print *, 'Problème à l''ouverture de "traceur.def"'
94 print *, 'Attention : on prend des valeurs par défaut.'
95 call assert(nqmx == 4, "iniadvtrac nqmx")
96 hadv(:4) = (/14, 10, 10, 10/)
97 vadv(:4) = hadv(:4)
98 tname(1) = 'H2Ov'
99 tname(2) = 'H2Ol'
100 tname(3) = 'RN'
101 tname(4) = 'PB'
102 do iq = 1, nqmx
103 print *, hadv(iq), vadv(iq), tname(iq)
104 end do
105 ENDIF
106
107 ! À partir du nom court du traceur et du schéma d'advection, on
108 ! détermine le nom long :
109 do iq = 1, nqmx
110 if (hadv(iq) /= vadv(iq)) then
111 if (hadv(iq) == 10 .and. vadv(iq) == 16) then
112 iadv(iq) = 11
113 else
114 print *, "Bad combination for hozizontal and vertical schemes."
115 stop 1
116 endif
117 else
118 iadv(iq) = hadv(iq)
119 endif
120
121 IF (iadv(iq) == 0) THEN
122 ttext(iq) = tname(iq)
123 ELSE
124 ttext(iq)=trim(tname(iq)) // descrq(iadv(iq))
125 endif
126 end do
127
128 END subroutine iniadvtrac
129
130 end module iniadvtrac_m

  ViewVC Help
Powered by ViewVC 1.1.21