1 | module phyredem |
---|
2 | |
---|
3 | implicit none |
---|
4 | |
---|
5 | contains |
---|
6 | |
---|
7 | subroutine physdem0(filename,lonfi,latfi,nsoil,ngrid,nlay,nq, & |
---|
8 | phystep,day_ini,time,airefi, & |
---|
9 | alb,ith,pzmea,pzstd,pzsig,pzgam,pzthe) |
---|
10 | ! create physics restart file and write time-independent variables |
---|
11 | use comsoil_h, only: volcapa, mlayer |
---|
12 | use comgeomfi_h, only: area |
---|
13 | use surfdat_h, only: zmea, zstd, zsig, zgam, zthe, & |
---|
14 | albedice, emisice, emissiv, & |
---|
15 | iceradius, dtemisice, phisfi |
---|
16 | use iostart, only : open_restartphy, close_restartphy, & |
---|
17 | put_var, put_field, length |
---|
18 | use mod_grid_phy_lmdz, only : klon_glo |
---|
19 | use planete_mod, only: year_day, periastr, apoastr, peri_day, & |
---|
20 | obliquit, z0, lmixmin, emin_turb |
---|
21 | use comcstfi_mod, only: rad, omeg, g, mugaz, rcp, daysec |
---|
22 | |
---|
23 | implicit none |
---|
24 | |
---|
25 | character(len=*), intent(in) :: filename |
---|
26 | real,intent(in) :: lonfi(ngrid) |
---|
27 | real,intent(in) :: latfi(ngrid) |
---|
28 | integer,intent(in) :: nsoil |
---|
29 | integer,intent(in) :: ngrid |
---|
30 | integer,intent(in) :: nlay |
---|
31 | integer,intent(in) :: nq |
---|
32 | real,intent(in) :: phystep |
---|
33 | real,intent(in) :: day_ini |
---|
34 | real,intent(in) :: time |
---|
35 | real,intent(in) :: airefi(ngrid) |
---|
36 | real,intent(in) :: alb(ngrid) |
---|
37 | real,intent(in) :: ith(ngrid,nsoil) |
---|
38 | real,intent(in) :: pzmea(ngrid) |
---|
39 | real,intent(in) :: pzstd(ngrid) |
---|
40 | real,intent(in) :: pzsig(ngrid) |
---|
41 | real,intent(in) :: pzgam(ngrid) |
---|
42 | real,intent(in) :: pzthe(ngrid) |
---|
43 | |
---|
44 | real :: tab_cntrl(length) ! nb "length=100" defined in iostart module |
---|
45 | |
---|
46 | ! Create physics start file |
---|
47 | call open_restartphy(filename) |
---|
48 | |
---|
49 | ! tab_cntrl() contains run parameters |
---|
50 | tab_cntrl(:)=0 ! initialization |
---|
51 | !cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc |
---|
52 | ! Fill control array tab_cntrl(:) with paramleters for this run |
---|
53 | !cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc |
---|
54 | ! Informations on the physics grid |
---|
55 | tab_cntrl(1) = float(klon_glo) ! number of nodes on physics grid |
---|
56 | tab_cntrl(2) = float(nlay) ! number of atmospheric layers |
---|
57 | tab_cntrl(3) = day_ini + int(time) ! final day |
---|
58 | tab_cntrl(4) = time -int(time) ! final time of day |
---|
59 | |
---|
60 | ! Informations about Mars, used by dynamics and physics |
---|
61 | tab_cntrl(5) = rad ! radius of Mars (m) ~3397200 |
---|
62 | tab_cntrl(6) = omeg ! rotation rate (rad.s-1) |
---|
63 | tab_cntrl(7) = g ! gravity (m.s-2) ~3.72 |
---|
64 | tab_cntrl(8) = mugaz ! Molar mass of the atmosphere (g.mol-1) ~43.49 |
---|
65 | tab_cntrl(9) = rcp ! = r/cp ~0.256793 (=kappa dans dynamique) |
---|
66 | tab_cntrl(10) = daysec ! length of a sol (s) ~88775 |
---|
67 | |
---|
68 | tab_cntrl(11) = phystep ! time step in the physics |
---|
69 | tab_cntrl(12) = 0. |
---|
70 | tab_cntrl(13) = 0. |
---|
71 | |
---|
72 | ! Informations about Mars, only for physics |
---|
73 | tab_cntrl(14) = year_day ! length of year (sols) ~668.6 |
---|
74 | tab_cntrl(15) = periastr ! min. star-planet distance (AU) |
---|
75 | tab_cntrl(16) = apoastr ! max. star-planet distance (AU) |
---|
76 | tab_cntrl(17) = peri_day ! date of periastron (sols since N. spring) |
---|
77 | tab_cntrl(18) = obliquit ! Obliquity of the planet (deg) ~23.98 |
---|
78 | |
---|
79 | ! Boundary layer and turbulence |
---|
80 | tab_cntrl(19) = z0 ! surface roughness (m) ~0.01 |
---|
81 | tab_cntrl(20) = lmixmin ! mixing length ~100 |
---|
82 | tab_cntrl(21) = emin_turb ! minimal energy ~1.e-8 |
---|
83 | |
---|
84 | ! Optical properties of polar caps and ground emissivity |
---|
85 | tab_cntrl(22) = albedice(1) ! Albedo of northern cap ~0.5 |
---|
86 | tab_cntrl(23) = albedice(2) ! Albedo of southern cap ~0.5 |
---|
87 | tab_cntrl(24) = emisice(1) ! Emissivity of northern cap ~0.95 |
---|
88 | tab_cntrl(25) = emisice(2) ! Emissivity of southern cap ~0.95 |
---|
89 | tab_cntrl(26) = emissiv ! Emissivity of martian soil ~.95 |
---|
90 | tab_cntrl(31) = iceradius(1) ! mean scat radius of CO2 snow (north) |
---|
91 | tab_cntrl(32) = iceradius(2) ! mean scat radius of CO2 snow (south) |
---|
92 | tab_cntrl(33) = dtemisice(1) ! time scale for snow metamorphism (north) |
---|
93 | tab_cntrl(34) = dtemisice(2) ! time scale for snow metamorphism (south) |
---|
94 | |
---|
95 | tab_cntrl(28) = 0. |
---|
96 | tab_cntrl(29) = 0. |
---|
97 | tab_cntrl(30) = 0. |
---|
98 | |
---|
99 | ! Soil properties: |
---|
100 | tab_cntrl(35) = volcapa ! soil volumetric heat capacity |
---|
101 | |
---|
102 | call put_var("controle","Control parameters",tab_cntrl) |
---|
103 | |
---|
104 | ! Write the mid-layer depths |
---|
105 | call put_var("soildepth","Soil mid-layer depth",mlayer) |
---|
106 | |
---|
107 | ! Write longitudes |
---|
108 | call put_field("longitude","Longitudes of physics grid",lonfi) |
---|
109 | |
---|
110 | ! Write latitudes |
---|
111 | call put_field("latitude","Latitudes of physics grid",latfi) |
---|
112 | |
---|
113 | ! Write mesh areas |
---|
114 | call put_field("area","Mesh area",area) |
---|
115 | |
---|
116 | ! Write surface geopotential |
---|
117 | call put_field("phisfi","Geopotential at the surface",phisfi) |
---|
118 | |
---|
119 | ! Write surface albedo |
---|
120 | call put_field("albedodat","Albedo of bare ground",alb) |
---|
121 | |
---|
122 | ! Subgrid topogaphy variables |
---|
123 | call put_field("ZMEA","Relief: mean relief",zmea) |
---|
124 | call put_field("ZSTD","Relief: standard deviation",zstd) |
---|
125 | call put_field("ZSIG","Relief: sigma parameter",zsig) |
---|
126 | call put_field("ZGAM","Relief: gamma parameter",zgam) |
---|
127 | call put_field("ZTHE","Relief: theta parameter",zthe) |
---|
128 | |
---|
129 | ! Soil thermal inertia |
---|
130 | call put_field("inertiedat","Soil thermal inertia",ith) |
---|
131 | |
---|
132 | ! Close file |
---|
133 | call close_restartphy |
---|
134 | |
---|
135 | end subroutine physdem0 |
---|
136 | |
---|
137 | subroutine physdem1(filename,nsoil,ngrid,nlay,nq, & |
---|
138 | phystep,time,tsurf,tsoil,emis,q2,qsurf, & |
---|
139 | cloudfrac,totcloudfrac,hice, & |
---|
140 | rnat,pctsrf_sic,tslab,tsea_ice,sea_ice) |
---|
141 | ! write time-dependent variable to restart file |
---|
142 | use iostart, only : open_restartphy, close_restartphy, & |
---|
143 | put_var, put_field |
---|
144 | use infotrac, only: tname |
---|
145 | use slab_ice_h, only: noceanmx |
---|
146 | use callkeys_mod, only: ok_slab_ocean |
---|
147 | |
---|
148 | implicit none |
---|
149 | |
---|
150 | character(len=*),intent(in) :: filename |
---|
151 | integer,intent(in) :: nsoil |
---|
152 | integer,intent(in) :: ngrid |
---|
153 | integer,intent(in) :: nlay |
---|
154 | integer,intent(in) :: nq |
---|
155 | real,intent(in) :: phystep |
---|
156 | real,intent(in) :: time |
---|
157 | real,intent(in) :: tsurf(ngrid) |
---|
158 | real,intent(in) :: tsoil(ngrid,nsoil) |
---|
159 | real,intent(in) :: emis(ngrid) |
---|
160 | real,intent(in) :: q2(ngrid,nlay+1) |
---|
161 | real,intent(in) :: qsurf(ngrid,nq) |
---|
162 | real,intent(in) :: cloudfrac(ngrid,nlay) |
---|
163 | real,intent(in) :: totcloudfrac(ngrid) |
---|
164 | real,intent(in) :: hice(ngrid) |
---|
165 | real,intent(in) :: rnat(ngrid) |
---|
166 | real,intent(in) :: pctsrf_sic(ngrid) |
---|
167 | real,intent(in) :: tslab(ngrid,noceanmx) |
---|
168 | real,intent(in) :: tsea_ice(ngrid) |
---|
169 | real,intent(in) :: sea_ice(ngrid) |
---|
170 | |
---|
171 | integer :: iq |
---|
172 | |
---|
173 | ! Open file |
---|
174 | call open_restartphy(filename) |
---|
175 | |
---|
176 | ! First variable to write must be "Time", in order to correctly |
---|
177 | ! set time counter in file |
---|
178 | !call put_var("Time","Temps de simulation",time) |
---|
179 | |
---|
180 | ! Surface temperature |
---|
181 | call put_field("tsurf","Surface temperature",tsurf) |
---|
182 | |
---|
183 | ! Soil temperature |
---|
184 | call put_field("tsoil","Soil temperature",tsoil) |
---|
185 | |
---|
186 | ! Emissivity of the surface |
---|
187 | call put_field("emis","Surface emissivity",emis) |
---|
188 | |
---|
189 | ! Planetary Boundary Layer |
---|
190 | call put_field("q2","pbl wind variance",q2) |
---|
191 | |
---|
192 | ! cloud fraction and sea ice (NB: these should be optional... to be improved) |
---|
193 | call put_field("cloudfrac","Cloud fraction",cloudfrac) |
---|
194 | call put_field("totcloudfrac","Total fraction",totcloudfrac) |
---|
195 | call put_field("hice","Height of oceanic ice",hice) |
---|
196 | |
---|
197 | !Slab ocean |
---|
198 | if(ok_slab_ocean) then |
---|
199 | call put_field("rnat","Nature of surface",rnat) |
---|
200 | call put_field("pctsrf_sic","Pourcentage sea ice",pctsrf_sic) |
---|
201 | call put_field("tslab","Temperature slab ocean",tslab) |
---|
202 | call put_field("tsea_ice","Temperature sea ice",tsea_ice) |
---|
203 | call put_field("sea_ice","Sea ice mass",sea_ice) |
---|
204 | endif!(ok_slab_ocean) |
---|
205 | |
---|
206 | |
---|
207 | ! tracers |
---|
208 | if (nq>0) then |
---|
209 | do iq=1,nq |
---|
210 | call put_field(tname(iq),"tracer on surface",qsurf(:,iq)) |
---|
211 | enddo |
---|
212 | endif ! of if (nq>0) |
---|
213 | |
---|
214 | ! close file |
---|
215 | CALL close_restartphy |
---|
216 | !$OMP BARRIER |
---|
217 | |
---|
218 | end subroutine physdem1 |
---|
219 | |
---|
220 | end module phyredem |
---|