[1669] | 1 | module phyetat0_mod |
---|
| 2 | |
---|
| 3 | implicit none |
---|
| 4 | |
---|
[3522] | 5 | real, save :: tab_cntrl_mod(100) |
---|
| 6 | |
---|
| 7 | !$OMP THREADPRIVATE(tab_cntrl_mod) |
---|
| 8 | |
---|
[1669] | 9 | contains |
---|
| 10 | |
---|
| 11 | subroutine phyetat0 (startphy_file, & |
---|
| 12 | ngrid,nlayer,fichnom,tab0,Lmodif,nsoil,nq, & |
---|
[3335] | 13 | day_ini,time,tsurf,tsoil,emis,albedo, & |
---|
| 14 | q2,qsurf,cloudfrac,totcloudfrac,hice, & |
---|
[3397] | 15 | rnat,pctsrf_sic,tslab,tsea_ice,tice,sea_ice) |
---|
[787] | 16 | |
---|
[1709] | 17 | ! to use 'getin_p' |
---|
| 18 | use ioipsl_getin_p_mod, only: getin_p |
---|
[3100] | 19 | !! |
---|
| 20 | use write_field_phy, only: Writefield_phy |
---|
| 21 | !! |
---|
[1669] | 22 | use tabfi_mod, only: tabfi |
---|
[3100] | 23 | USE tracer_h, ONLY: noms, igcm_h2o_vap |
---|
[3335] | 24 | USE radinc_h, ONLY: L_NSPECTV |
---|
[1216] | 25 | USE surfdat_h, only: phisfi, albedodat, zmea, zstd, zsig, zgam, zthe |
---|
| 26 | use iostart, only: nid_start, open_startphy, close_startphy, & |
---|
| 27 | get_field, get_var, inquire_field, & |
---|
| 28 | inquire_dimension, inquire_dimension_length |
---|
[3100] | 29 | ! use slab_ice_h, only: noceanmx |
---|
| 30 | USE ocean_slab_mod, ONLY: nslay |
---|
[2557] | 31 | use callkeys_mod, only: CLFvarying,surfalbedo,surfemis, callsoil |
---|
[2299] | 32 | use nonoro_gwd_ran_mod, only: du_nonoro_gwd, dv_nonoro_gwd, & |
---|
| 33 | east_gwstress, west_gwstress |
---|
[1216] | 34 | implicit none |
---|
[787] | 35 | |
---|
[1216] | 36 | !====================================================================== |
---|
[135] | 37 | ! Arguments: |
---|
| 38 | ! --------- |
---|
| 39 | ! inputs: |
---|
[1669] | 40 | logical,intent(in) :: startphy_file ! .true. if reading start file |
---|
[1216] | 41 | integer,intent(in) :: ngrid |
---|
[1308] | 42 | integer,intent(in) :: nlayer |
---|
[1216] | 43 | character*(*),intent(in) :: fichnom ! "startfi.nc" file |
---|
| 44 | integer,intent(in) :: tab0 |
---|
| 45 | integer,intent(in) :: Lmodif |
---|
| 46 | integer,intent(in) :: nsoil ! # of soil layers |
---|
| 47 | integer,intent(in) :: nq |
---|
[1669] | 48 | integer,intent(out) :: day_ini |
---|
| 49 | real,intent(out) :: time |
---|
[135] | 50 | |
---|
| 51 | ! outputs: |
---|
[1216] | 52 | real,intent(out) :: tsurf(ngrid) ! surface temperature |
---|
| 53 | real,intent(out) :: tsoil(ngrid,nsoil) ! soil temperature |
---|
| 54 | real,intent(out) :: emis(ngrid) ! surface emissivity |
---|
[3335] | 55 | real,intent(out) :: albedo(ngrid,L_NSPECTV) ! albedo of the surface |
---|
[3522] | 56 | real,intent(out) :: q2(ngrid,nlayer+1) ! |
---|
[1216] | 57 | real,intent(out) :: qsurf(ngrid,nq) ! tracers on surface |
---|
| 58 | ! real co2ice(ngrid) ! co2 ice cover |
---|
[1308] | 59 | real,intent(out) :: cloudfrac(ngrid,nlayer) |
---|
[1216] | 60 | real,intent(out) :: hice(ngrid), totcloudfrac(ngrid) |
---|
[3522] | 61 | real,intent(out) :: pctsrf_sic(ngrid),tslab(ngrid,nslay) |
---|
[1297] | 62 | real,intent(out) :: tsea_ice(ngrid),sea_ice(ngrid) |
---|
| 63 | real,intent(out) :: rnat(ngrid) |
---|
[3397] | 64 | real,intent(out) :: tice(ngrid) |
---|
[135] | 65 | |
---|
| 66 | !====================================================================== |
---|
| 67 | ! Local variables: |
---|
| 68 | |
---|
| 69 | ! INTEGER radpas |
---|
| 70 | ! REAL co2_ppm |
---|
| 71 | ! REAL solaire |
---|
| 72 | |
---|
| 73 | real xmin,xmax ! to display min and max of a field |
---|
[1216] | 74 | ! |
---|
[135] | 75 | INTEGER ig,iq,lmax |
---|
| 76 | INTEGER nid, nvarid |
---|
| 77 | INTEGER ierr, i, nsrf |
---|
[3522] | 78 | ! integer isoil |
---|
[135] | 79 | ! INTEGER length |
---|
| 80 | ! PARAMETER (length=100) |
---|
| 81 | CHARACTER*7 str7 |
---|
| 82 | CHARACTER*2 str2 |
---|
| 83 | CHARACTER*1 yes |
---|
[1216] | 84 | ! |
---|
[135] | 85 | REAL p_rad,p_omeg,p_g,p_cpp,p_mugaz,p_daysec |
---|
| 86 | INTEGER nqold |
---|
| 87 | |
---|
| 88 | ! flag which identifies if 'startfi.nc' file is using old names (qsurf01,...) |
---|
[1216] | 89 | ! logical :: oldtracernames=.false. |
---|
[135] | 90 | integer :: count |
---|
| 91 | character(len=30) :: txt ! to store some text |
---|
[3522] | 92 | |
---|
[1216] | 93 | INTEGER :: indextime=1 ! index of selected time, default value=1 |
---|
| 94 | logical :: found |
---|
[3522] | 95 | |
---|
[1669] | 96 | character(len=8) :: modname="phyetat0" |
---|
[135] | 97 | |
---|
[1216] | 98 | ! |
---|
| 99 | ! ALLOCATE ARRAYS IN surfdat_h |
---|
| 100 | ! |
---|
| 101 | IF (.not. ALLOCATED(albedodat)) ALLOCATE(albedodat(ngrid)) |
---|
| 102 | IF (.not. ALLOCATED(phisfi)) ALLOCATE(phisfi(ngrid)) |
---|
| 103 | IF (.not. ALLOCATED(zmea)) ALLOCATE(zmea(ngrid)) |
---|
| 104 | IF (.not. ALLOCATED(zstd)) ALLOCATE(zstd(ngrid)) |
---|
| 105 | IF (.not. ALLOCATED(zsig)) ALLOCATE(zsig(ngrid)) |
---|
| 106 | IF (.not. ALLOCATED(zgam)) ALLOCATE(zgam(ngrid)) |
---|
| 107 | IF (.not. ALLOCATED(zthe)) ALLOCATE(zthe(ngrid)) |
---|
[787] | 108 | |
---|
[1669] | 109 | if (startphy_file) then |
---|
| 110 | ! open physics initial state file: |
---|
| 111 | call open_startphy(fichnom) |
---|
[1297] | 112 | |
---|
[1669] | 113 | ! possibility to modify tab_cntrl in tabfi |
---|
| 114 | write(*,*) |
---|
| 115 | write(*,*) 'TABFI in phyeta0: Lmodif=',Lmodif," tab0=",tab0 |
---|
| 116 | call tabfi (ngrid,nid_start,Lmodif,tab0,day_ini,lmax,p_rad, & |
---|
| 117 | p_omeg,p_g,p_cpp,p_mugaz,p_daysec,time) |
---|
[135] | 118 | |
---|
[1669] | 119 | else ! "academic" initialization of planetary parameters via tabfi |
---|
| 120 | call tabfi (ngrid,0,0,0,day_ini,lmax,p_rad, & |
---|
[1216] | 121 | p_omeg,p_g,p_cpp,p_mugaz,p_daysec,time) |
---|
[1669] | 122 | endif ! of if (startphy_file) |
---|
[135] | 123 | |
---|
[1669] | 124 | if (startphy_file) then |
---|
| 125 | ! Load surface geopotential: |
---|
| 126 | call get_field("phisfi",phisfi,found) |
---|
| 127 | if (.not.found) then |
---|
| 128 | call abort_physic(modname,"Failed loading <phisfi>",1) |
---|
| 129 | endif |
---|
[1216] | 130 | else |
---|
[1709] | 131 | phisfi(:)=0. |
---|
[1669] | 132 | endif ! of if (startphy_file) |
---|
| 133 | write(*,*) "phyetat0: surface geopotential <phisfi> range:", & |
---|
| 134 | minval(phisfi), maxval(phisfi) |
---|
[253] | 135 | |
---|
[1669] | 136 | if (startphy_file) then |
---|
[3335] | 137 | ! Load bare ground albedo: (will be stored in surfdat_h) |
---|
[1669] | 138 | call get_field("albedodat",albedodat,found) |
---|
| 139 | if (.not.found) then |
---|
| 140 | call abort_physic(modname,"Failed loading <albedodat>",1) |
---|
| 141 | endif |
---|
[1216] | 142 | else |
---|
[1709] | 143 | ! If no startfi file, use parameter surfalbedo in def file |
---|
| 144 | surfalbedo=0.5 |
---|
| 145 | call getin_p("surfalbedo",surfalbedo) |
---|
| 146 | print*,"surfalbedo",surfalbedo |
---|
| 147 | albedodat(:)=surfalbedo |
---|
[1669] | 148 | endif ! of if (startphy_file) |
---|
| 149 | write(*,*) "phyetat0: Bare ground albedo <albedodat> range:", & |
---|
[1216] | 150 | minval(albedodat), maxval(albedodat) |
---|
[253] | 151 | |
---|
[3335] | 152 | if (startphy_file) then |
---|
| 153 | ! Load surface albedo (for now assume it is spectrally homogeneous) |
---|
| 154 | call get_field("albedo",albedo(:,1),found) |
---|
| 155 | if (.not.found) then |
---|
| 156 | write(*,*) modname//": Failed loading <albedo>" |
---|
| 157 | write(*,*) " setting it to bare ground albedo" |
---|
| 158 | albedo(1:ngrid,1)=albedodat(1:ngrid) |
---|
| 159 | endif |
---|
| 160 | ! copy value to all spectral bands |
---|
| 161 | do i=2,L_NSPECTV |
---|
| 162 | albedo(1:ngrid,i)=albedo(1:ngrid,1) |
---|
| 163 | enddo |
---|
| 164 | else |
---|
| 165 | ! If no startfi file, use bare ground value |
---|
| 166 | do i=1,L_NSPECTV |
---|
| 167 | albedo(1:ngrid,i)=albedodat(1:ngrid) |
---|
| 168 | enddo |
---|
| 169 | endif ! of if (startphy_file) |
---|
| 170 | write(*,*) "phyetat0: Surface albedo <albedo> range:", & |
---|
| 171 | minval(albedo), maxval(albedo) |
---|
| 172 | |
---|
[1216] | 173 | ! ZMEA |
---|
[1669] | 174 | if (startphy_file) then |
---|
| 175 | call get_field("ZMEA",zmea,found) |
---|
| 176 | if (.not.found) then |
---|
| 177 | call abort_physic(modname,"Failed loading <ZMEA>",1) |
---|
| 178 | endif |
---|
[1216] | 179 | else |
---|
[1709] | 180 | zmea(:)=0. |
---|
[1669] | 181 | endif ! of if (startphy_file) |
---|
| 182 | write(*,*) "phyetat0: <ZMEA> range:", & |
---|
[1216] | 183 | minval(zmea), maxval(zmea) |
---|
[253] | 184 | |
---|
[1216] | 185 | ! ZSTD |
---|
[1669] | 186 | if (startphy_file) then |
---|
| 187 | call get_field("ZSTD",zstd,found) |
---|
| 188 | if (.not.found) then |
---|
| 189 | call abort_physic(modname,"Failed loading <ZSTD>",1) |
---|
| 190 | endif |
---|
[1216] | 191 | else |
---|
[1709] | 192 | zstd(:)=0. |
---|
[1669] | 193 | endif ! of if (startphy_file) |
---|
| 194 | write(*,*) "phyetat0: <ZSTD> range:", & |
---|
[1216] | 195 | minval(zstd), maxval(zstd) |
---|
[253] | 196 | |
---|
[1216] | 197 | ! ZSIG |
---|
[1669] | 198 | if (startphy_file) then |
---|
| 199 | call get_field("ZSIG",zsig,found) |
---|
| 200 | if (.not.found) then |
---|
| 201 | call abort_physic(modname,"Failed loading <ZSIG>",1) |
---|
| 202 | endif |
---|
[1216] | 203 | else |
---|
[1709] | 204 | zsig(:)=0. |
---|
[1669] | 205 | endif ! of if (startphy_file) |
---|
| 206 | write(*,*) "phyetat0: <ZSIG> range:", & |
---|
[1216] | 207 | minval(zsig), maxval(zsig) |
---|
[253] | 208 | |
---|
[1216] | 209 | ! ZGAM |
---|
[1669] | 210 | if (startphy_file) then |
---|
| 211 | call get_field("ZGAM",zgam,found) |
---|
| 212 | if (.not.found) then |
---|
| 213 | call abort_physic(modname,"Failed loading <ZGAM>",1) |
---|
| 214 | endif |
---|
[1216] | 215 | else |
---|
[1709] | 216 | zgam(:)=0. |
---|
[1669] | 217 | endif ! of if (startphy_file) |
---|
| 218 | write(*,*) "phyetat0: <ZGAM> range:", & |
---|
[1216] | 219 | minval(zgam), maxval(zgam) |
---|
[253] | 220 | |
---|
[1216] | 221 | ! ZTHE |
---|
[1669] | 222 | if (startphy_file) then |
---|
| 223 | call get_field("ZTHE",zthe,found) |
---|
| 224 | if (.not.found) then |
---|
| 225 | call abort_physic(modname,"Failed loading <ZTHE>",1) |
---|
| 226 | endif |
---|
[1216] | 227 | else |
---|
[1709] | 228 | zthe(:)=0. |
---|
[1669] | 229 | endif ! of if (startphy_file) |
---|
| 230 | write(*,*) "phyetat0: <ZTHE> range:", & |
---|
[1216] | 231 | minval(zthe), maxval(zthe) |
---|
[253] | 232 | |
---|
[1216] | 233 | ! Surface temperature : |
---|
[1669] | 234 | if (startphy_file) then |
---|
| 235 | call get_field("tsurf",tsurf,found,indextime) |
---|
| 236 | if (.not.found) then |
---|
| 237 | call abort_physic(modname,"Failed loading <tsurf>",1) |
---|
| 238 | endif |
---|
[1216] | 239 | else |
---|
[1709] | 240 | tsurf(:)=0. ! will be updated afterwards in physiq ! |
---|
[1669] | 241 | endif ! of if (startphy_file) |
---|
| 242 | write(*,*) "phyetat0: Surface temperature <tsurf> range:", & |
---|
[1216] | 243 | minval(tsurf), maxval(tsurf) |
---|
[135] | 244 | |
---|
[1216] | 245 | ! Surface emissivity |
---|
[1669] | 246 | if (startphy_file) then |
---|
| 247 | call get_field("emis",emis,found,indextime) |
---|
| 248 | if (.not.found) then |
---|
| 249 | call abort_physic(modname,"Failed loading <emis>",1) |
---|
| 250 | endif |
---|
[1216] | 251 | else |
---|
[1709] | 252 | ! If no startfi file, use parameter surfemis in def file |
---|
| 253 | surfemis=1.0 |
---|
| 254 | call getin_p("surfemis",surfemis) |
---|
| 255 | print*,"surfemis",surfemis |
---|
| 256 | emis(:)=surfemis |
---|
[1669] | 257 | endif ! of if (startphy_file) |
---|
| 258 | write(*,*) "phyetat0: Surface emissivity <emis> range:", & |
---|
[1216] | 259 | minval(emis), maxval(emis) |
---|
[135] | 260 | |
---|
[1216] | 261 | ! Cloud fraction (added by BC 2010) |
---|
[1421] | 262 | if (CLFvarying) then |
---|
[1669] | 263 | if (startphy_file) then |
---|
| 264 | call get_field("cloudfrac",cloudfrac,found,indextime) |
---|
| 265 | if (.not.found) then |
---|
| 266 | call abort_physic(modname,"Failed loading <cloudfrac>",1) |
---|
| 267 | endif |
---|
| 268 | else |
---|
[1709] | 269 | cloudfrac(:,:)=0.0 |
---|
[1669] | 270 | endif ! of if (startphy_file) |
---|
[1216] | 271 | write(*,*) "phyetat0: Cloud fraction <cloudfrac> range:", & |
---|
[1669] | 272 | minval(cloudfrac), maxval(cloudfrac) |
---|
[1421] | 273 | else |
---|
[1669] | 274 | cloudfrac(:,:)=0.0 |
---|
| 275 | endif ! of if (CLFvarying) |
---|
[1216] | 276 | |
---|
| 277 | ! Total cloud fraction (added by BC 2010) |
---|
[1421] | 278 | if (CLFvarying) then |
---|
[1669] | 279 | if (startphy_file) then |
---|
| 280 | call get_field("totcloudfrac",totcloudfrac,found,indextime) |
---|
| 281 | if (.not.found) then |
---|
| 282 | call abort_physic(modname,"Failed loading <totcloudfrac>",1) |
---|
| 283 | endif |
---|
| 284 | else |
---|
[1709] | 285 | totcloudfrac(:)=0.0 |
---|
[1669] | 286 | endif ! of if (startphy_file) |
---|
[1216] | 287 | write(*,*) "phyetat0: Total cloud fraction <totcloudfrac> range:", & |
---|
| 288 | minval(totcloudfrac), maxval(totcloudfrac) |
---|
[1421] | 289 | else |
---|
[1669] | 290 | totcloudfrac(:)=0.0 |
---|
| 291 | endif ! of if (CLFvarying) |
---|
[1216] | 292 | |
---|
| 293 | ! Height of oceanic ice (added by BC 2010) |
---|
[1669] | 294 | if (startphy_file) then |
---|
| 295 | call get_field("hice",hice,found,indextime) |
---|
| 296 | if (.not.found) then |
---|
| 297 | write(*,*) "phyetat0: Failed loading <hice>" |
---|
| 298 | ! call abort |
---|
[1709] | 299 | hice(:)=0. |
---|
[1669] | 300 | endif |
---|
[1216] | 301 | else |
---|
[1709] | 302 | hice(:)=0. |
---|
[1669] | 303 | endif ! of if (startphy_file) |
---|
| 304 | write(*,*) "phyetat0: Height of oceanic ice <hice> range:", & |
---|
[1216] | 305 | minval(hice), maxval(hice) |
---|
| 306 | |
---|
[1297] | 307 | ! SLAB OCEAN (added by BC 2014) |
---|
[1669] | 308 | if (startphy_file) then |
---|
| 309 | ! nature of the surface |
---|
| 310 | call get_field("rnat",rnat,found,indextime) |
---|
| 311 | if (.not.found) then |
---|
| 312 | write(*,*) "phyetat0: Failed loading <rnat>" |
---|
| 313 | rnat(1:ngrid)=1. |
---|
| 314 | else |
---|
[1297] | 315 | do ig=1,ngrid |
---|
| 316 | if((nint(rnat(ig)).eq.2).or.(nint(rnat(ig)).eq.0))then |
---|
| 317 | rnat(ig)=0. |
---|
| 318 | else |
---|
| 319 | rnat(ig)=1. |
---|
[3522] | 320 | endif |
---|
[1297] | 321 | enddo |
---|
[1669] | 322 | endif ! of if (.not.found) |
---|
| 323 | else |
---|
[1709] | 324 | rnat(:)=1. |
---|
[1669] | 325 | endif ! of if (startphy_file) |
---|
| 326 | write(*,*) "phyetat0: Nature of surface <rnat> range:", & |
---|
| 327 | minval(rnat), maxval(rnat) |
---|
[1297] | 328 | |
---|
[1669] | 329 | if (startphy_file) then |
---|
| 330 | ! Pourcentage of sea ice cover |
---|
| 331 | call get_field("pctsrf_sic",pctsrf_sic,found,indextime) |
---|
| 332 | if (.not.found) then |
---|
| 333 | write(*,*) "phyetat0: Failed loading <pctsrf_sic>" |
---|
| 334 | pctsrf_sic(1:ngrid)=0. |
---|
| 335 | endif |
---|
[1297] | 336 | else |
---|
[1709] | 337 | pctsrf_sic(:)=0. |
---|
[1669] | 338 | endif ! of if (startphy_file) |
---|
| 339 | write(*,*) "phyetat0: Pourcentage of sea ice cover <pctsrf_sic> range:", & |
---|
[1297] | 340 | minval(pctsrf_sic), maxval(pctsrf_sic) |
---|
[1669] | 341 | |
---|
| 342 | if (startphy_file) then |
---|
| 343 | ! Slab ocean temperature (2 layers) |
---|
| 344 | call get_field("tslab",tslab,found,indextime) |
---|
| 345 | if (.not.found) then |
---|
| 346 | write(*,*) "phyetat0: Failed loading <tslab>" |
---|
[3100] | 347 | do iq=1,nslay |
---|
[1669] | 348 | tslab(1:ngrid,iq)=tsurf(1:ngrid) |
---|
| 349 | enddo |
---|
| 350 | endif |
---|
[1297] | 351 | else |
---|
[3100] | 352 | do iq=1,nslay |
---|
[1669] | 353 | tslab(1:ngrid,iq)=tsurf(1:ngrid) |
---|
| 354 | enddo |
---|
| 355 | endif ! of if (startphy_file) |
---|
| 356 | write(*,*) "phyetat0: Slab ocean temperature <tslab> range:", & |
---|
[1297] | 357 | minval(tslab), maxval(tslab) |
---|
[1669] | 358 | |
---|
| 359 | if (startphy_file) then |
---|
| 360 | ! Oceanic ice temperature |
---|
| 361 | call get_field("tsea_ice",tsea_ice,found,indextime) |
---|
| 362 | if (.not.found) then |
---|
| 363 | write(*,*) "phyetat0: Failed loading <tsea_ice>" |
---|
| 364 | tsea_ice(1:ngrid)=273.15-1.8 |
---|
| 365 | endif |
---|
[1297] | 366 | else |
---|
[1669] | 367 | tsea_ice(1:ngrid)=273.15-1.8 |
---|
| 368 | endif ! of if (startphy_file) |
---|
[3397] | 369 | write(*,*) "phyetat0: Oceanic ice/snow temperature <tsea_ice> range:", & |
---|
[1297] | 370 | minval(tsea_ice), maxval(tsea_ice) |
---|
[1669] | 371 | |
---|
[3397] | 372 | if (startphy_file) then |
---|
[3100] | 373 | ! Oceanic ice temperature |
---|
[3397] | 374 | call get_field("tice",tice,found,indextime) |
---|
| 375 | if (.not.found) then |
---|
| 376 | write(*,*) "phyetat0: Failed loading <tice>" |
---|
| 377 | tice(1:ngrid)=273.15-1.8 |
---|
| 378 | endif |
---|
| 379 | else |
---|
| 380 | tice(1:ngrid)=273.15-1.8 |
---|
| 381 | endif ! of if (startphy_file) |
---|
| 382 | write(*,*) "phyetat0: Oceanic ice surface temperature <tice> range:", & |
---|
| 383 | minval(tice), maxval(tice) |
---|
[3100] | 384 | |
---|
[1669] | 385 | if (startphy_file) then |
---|
| 386 | ! Oceanic ice quantity (kg/m^2) |
---|
| 387 | call get_field("sea_ice",sea_ice,found,indextime) |
---|
| 388 | if (.not.found) then |
---|
| 389 | write(*,*) "phyetat0: Failed loading <sea_ice>" |
---|
[1763] | 390 | sea_ice(1:ngrid)=0. |
---|
[1669] | 391 | endif |
---|
[1297] | 392 | else |
---|
[1763] | 393 | sea_ice(1:ngrid)=0. |
---|
[1669] | 394 | endif ! of if (startphy_file) |
---|
| 395 | write(*,*) "phyetat0: Oceanic ice quantity <sea_ice> range:", & |
---|
[1297] | 396 | minval(sea_ice), maxval(sea_ice) |
---|
| 397 | |
---|
| 398 | |
---|
[1216] | 399 | ! pbl wind variance |
---|
[1669] | 400 | if (startphy_file) then |
---|
| 401 | call get_field("q2",q2,found,indextime) |
---|
| 402 | if (.not.found) then |
---|
| 403 | call abort_physic(modname,"Failed loading <q2>",1) |
---|
| 404 | endif |
---|
[1216] | 405 | else |
---|
[1709] | 406 | q2(:,:)=0. |
---|
[1669] | 407 | endif ! of if (startphy_file) |
---|
| 408 | write(*,*) "phyetat0: PBL wind variance <q2> range:", & |
---|
[1216] | 409 | minval(q2), maxval(q2) |
---|
| 410 | |
---|
| 411 | ! tracer on surface |
---|
| 412 | if (nq.ge.1) then |
---|
| 413 | do iq=1,nq |
---|
[1621] | 414 | txt=noms(iq) |
---|
[1669] | 415 | if (startphy_file) then |
---|
| 416 | call get_field(txt,qsurf(:,iq),found,indextime) |
---|
| 417 | if (.not.found) then |
---|
| 418 | write(*,*) "phyetat0: Failed loading <",trim(txt),">" |
---|
| 419 | write(*,*) " ",trim(txt)," is set to zero" |
---|
| 420 | qsurf(:,iq) = 0. |
---|
| 421 | endif |
---|
[1216] | 422 | else |
---|
[1709] | 423 | qsurf(:,iq)=0. |
---|
[1669] | 424 | endif ! of if (startphy_file) |
---|
| 425 | write(*,*) "phyetat0: Surface tracer <",trim(txt),"> range:", & |
---|
[1216] | 426 | minval(qsurf(:,iq)), maxval(qsurf(:,iq)) |
---|
[1669] | 427 | enddo! of do iq=1,nq |
---|
[1216] | 428 | endif ! of if (nq.ge.1) |
---|
| 429 | |
---|
[3100] | 430 | !!call WriteField_phy("in_phyetat0_qsurf",qsurf(1:ngrid,igcm_h2o_vap),1) |
---|
[1297] | 431 | |
---|
[1669] | 432 | if (startphy_file) then |
---|
| 433 | ! Call to soil_settings, in order to read soil temperatures, |
---|
| 434 | ! as well as thermal inertia and volumetric heat capacity |
---|
[2557] | 435 | if (callsoil) then |
---|
| 436 | call soil_settings(nid_start,ngrid,nsoil,tsurf,tsoil,indextime) |
---|
| 437 | endif |
---|
[1669] | 438 | endif ! of if (startphy_file) |
---|
[2299] | 439 | |
---|
[3522] | 440 | ! Non-orographic gravity waves |
---|
[2299] | 441 | if (startphy_file) then |
---|
| 442 | call get_field("du_nonoro_gwd",du_nonoro_gwd,found,indextime) |
---|
| 443 | if (.not.found) then |
---|
| 444 | write(*,*) "phyetat0: <du_nonoro_gwd> not in file" |
---|
| 445 | du_nonoro_gwd(:,:)=0. |
---|
| 446 | else |
---|
| 447 | write(*,*) "phyetat0: Memory of zonal wind tendency due to non-orographic GW" |
---|
| 448 | write(*,*) " <du_nonoro_gwd> range:", & |
---|
| 449 | minval(du_nonoro_gwd), maxval(du_nonoro_gwd) |
---|
| 450 | endif |
---|
| 451 | endif ! of if (startphy_file) |
---|
| 452 | if (startphy_file) then |
---|
| 453 | call get_field("dv_nonoro_gwd",dv_nonoro_gwd,found,indextime) |
---|
| 454 | if (.not.found) then |
---|
| 455 | write(*,*) "phyetat0: <dv_nonoro_gwd> not in file" |
---|
| 456 | dv_nonoro_gwd(:,:)=0. |
---|
| 457 | else |
---|
| 458 | write(*,*) "phyetat0: Memory of meridional wind tendency due to non-orographic GW" |
---|
| 459 | write(*,*) " <dv_nonoro_gwd> range:", & |
---|
| 460 | minval(dv_nonoro_gwd), maxval(dv_nonoro_gwd) |
---|
| 461 | endif |
---|
| 462 | endif ! of if (startphy_file) |
---|
| 463 | if (startphy_file) then |
---|
| 464 | call get_field("east_gwstress",east_gwstress,found,indextime) |
---|
| 465 | if (.not.found) then |
---|
| 466 | write(*,*) "phyetat0: <east_gwstress> not in file" |
---|
| 467 | east_gwstress(:,:)=0. |
---|
| 468 | else |
---|
| 469 | write(*,*) "phyetat0: Memory of eastward stress profile due to non-orographic GW" |
---|
| 470 | write(*,*) " <east_gwstress> range:", & |
---|
| 471 | minval(east_gwstress), maxval(east_gwstress) |
---|
| 472 | endif |
---|
| 473 | endif ! of if (startphy_file) |
---|
| 474 | if (startphy_file) then |
---|
| 475 | call get_field("west_gwstress",west_gwstress,found,indextime) |
---|
| 476 | if (.not.found) then |
---|
| 477 | write(*,*) "phyetat0: <west_gwstress> not in file" |
---|
| 478 | west_gwstress(:,:)=0. |
---|
| 479 | else |
---|
| 480 | write(*,*) "phyetat0: Memory of westward stress profile due to non-orographic GW" |
---|
| 481 | write(*,*) " <west_gwstress> range:", & |
---|
| 482 | minval(west_gwstress), maxval(west_gwstress) |
---|
| 483 | endif |
---|
| 484 | endif ! of if (startphy_file) |
---|
[1216] | 485 | ! |
---|
| 486 | ! close file: |
---|
| 487 | ! |
---|
[1669] | 488 | if (startphy_file) call close_startphy |
---|
[1216] | 489 | |
---|
[1669] | 490 | end subroutine phyetat0 |
---|
| 491 | |
---|
[3522] | 492 | !====================================================================== |
---|
| 493 | subroutine ini_tab_controle_dyn_xios(idayref) |
---|
| 494 | |
---|
| 495 | use comcstfi_mod, only: g, mugaz, omeg, rad, rcp |
---|
| 496 | use time_phylmdz_mod, only: daysec, dtphys |
---|
| 497 | use mod_grid_phy_lmdz, only: nbp_lon, nbp_lat, nbp_lev |
---|
| 498 | |
---|
| 499 | implicit none |
---|
| 500 | |
---|
| 501 | integer*4, intent(in) :: idayref ! date (initial date for this run) |
---|
| 502 | |
---|
| 503 | integer :: length, l |
---|
| 504 | parameter (length = 100) |
---|
| 505 | real :: tab_cntrl(length) ! run parameters are stored in this array |
---|
| 506 | |
---|
| 507 | do l = 1,length |
---|
| 508 | tab_cntrl(l) = 0. |
---|
| 509 | enddo |
---|
| 510 | tab_cntrl(1) = real(nbp_lon) |
---|
| 511 | tab_cntrl(2) = real(nbp_lat-1) |
---|
| 512 | tab_cntrl(3) = real(nbp_lev) |
---|
| 513 | tab_cntrl(4) = real(idayref) |
---|
| 514 | tab_cntrl(5) = rad |
---|
| 515 | tab_cntrl(6) = omeg |
---|
| 516 | tab_cntrl(7) = g |
---|
| 517 | tab_cntrl(8) = mugaz |
---|
| 518 | tab_cntrl(9) = rcp |
---|
| 519 | tab_cntrl(10) = daysec |
---|
| 520 | tab_cntrl(11) = dtphys |
---|
| 521 | |
---|
| 522 | tab_cntrl_mod = tab_cntrl |
---|
| 523 | |
---|
| 524 | end subroutine ini_tab_controle_dyn_xios |
---|
| 525 | |
---|
[1669] | 526 | end module phyetat0_mod |
---|