--- trunk/libf/dyn3d/etat0.f90 2008/07/25 19:59:34 13 +++ trunk/libf/dyn3d/etat0.f90 2010/12/02 17:11:04 36 @@ -6,6 +6,8 @@ IMPLICIT NONE REAL pctsrf(klon, nbsrf) + ! ("pctsrf(i, :)" is the composition of the surface at horizontal + ! position "i") private nbsrf, klon @@ -15,36 +17,40 @@ ! From "etat0_netcdf.F", version 1.3 2005/05/25 13:10:09 - ! This subroutine creates "masque". + ! This subroutine creates "mask". - USE ioipsl, only: flinget, flinclo, flinopen_nozoom, flininfo, histclo - - USE start_init_orog_m, only: start_init_orog, masque, phis - use start_init_phys_m, only: qsol_2d - use startdyn, only: start_inter_3d, start_init_dyn - use dimens_m, only: iim, jjm, llm, nqmx - use paramet_m, only: ip1jm, ip1jmp1 + use caldyn0_m, only: caldyn0 use comconst, only: dtvr, daysec, cpp, kappa, pi - use comdissnew, only: lstardis, nitergdiv, nitergrot, niterh, & - tetagdiv, tetagrot, tetatemp - use indicesol, only: is_oce, is_sic, is_ter, is_lic, epsfra - use comvert, only: ap, bp, preff, pa - use dimphy, only: zmasq - use conf_gcm_m, only: day_step, iphysiq, dayref, anneeref use comgeom, only: rlatu, rlonv, rlonu, rlatv, aire_2d, apoln, apols, & cu_2d, cv_2d - use serre, only: alphax + use comvert, only: ap, bp, preff, pa + use conf_gcm_m, only: day_step, iphysiq, dayref, anneeref + use dimens_m, only: iim, jjm, llm, nqmx + use dimphy, only: zmasq use dimsoil, only: nsoilmx - use temps, only: itau_dyn, itau_phy, annee_ref, day_ref, dt + use dynredem0_m, only: dynredem0 + use dynredem1_m, only: dynredem1 + use exner_hyb_m, only: exner_hyb use grid_atob, only: grille_m use grid_change, only: init_dyn_phy, dyn_phy - use q_sat_m, only: q_sat - use exner_hyb_m, only: exner_hyb - use advtrac_m, only: iniadvtrac + use indicesol, only: is_oce, is_sic, is_ter, is_lic, epsfra + use iniadvtrac_m, only: iniadvtrac + use inidissip_m, only: inidissip + use inigeom_m, only: inigeom + USE flincom, only: flinclo, flinopen_nozoom, flininfo + use flinget_m, only: flinget + use histcom, only: histclo + use paramet_m, only: ip1jm, ip1jmp1 + use phyredem_m, only: phyredem use pressure_var, only: pls, p3d - use dynredem0_m, only: dynredem0 + use q_sat_m, only: q_sat use regr_lat_time_coefoz_m, only: regr_lat_time_coefoz use regr_pr_o3_m, only: regr_pr_o3 + use serre, only: alphax + USE start_init_orog_m, only: start_init_orog, mask, phis + use start_init_phys_m, only: qsol_2d + use startdyn, only: start_inter_3d, start_init_dyn + use temps, only: itau_phy, annee_ref, day_ref ! Variables local to the procedure: @@ -102,16 +108,17 @@ REAL pbaru(ip1jmp1, llm), pbarv(ip1jm, llm) REAL w(ip1jmp1, llm) REAL phystep + real trash !--------------------------------- print *, "Call sequence information: etat0" - ! Construct a grid: - dtvr = daysec / real(day_step) print *, 'dtvr = ', dtvr + ! Construct a grid: + pa = 5e4 CALL iniconst CALL inigeom @@ -128,33 +135,33 @@ lonfi(klon) = 0. call start_init_orog(relief, zstd_2d, zsig_2d, zgam_2d, zthe_2d, zpic_2d, & - zval_2d) ! also compute "masque" and "phis" + zval_2d) ! also compute "mask" and "phis" call init_dyn_phy ! define the mask "dyn_phy" for distinct grid points - zmasq = pack(masque, dyn_phy) + zmasq = pack(mask, dyn_phy) PRINT *, 'Masque construit' CALL start_init_dyn(tsol_2d, psol) ! also compute "qsol_2d" ! Compute pressure on intermediate levels: - forall(l = 1: llm + 1) p3d(:, :, l) = ap(l) + bp(l) * psol(:, :) + forall(l = 1: llm + 1) p3d(:, :, l) = ap(l) + bp(l) * psol CALL exner_hyb(psol, p3d, pks, pk) IF (MINVAL(pk) == MAXVAL(pk)) stop '"pk" should not be constant' - pls(:, :, :) = preff * (pk(:, :, :) / cpp)**(1. / kappa) - PRINT *, "minval(pls(:, :, :)) = ", minval(pls(:, :, :)) - print *, "maxval(pls(:, :, :)) = ", maxval(pls(:, :, :)) + pls = preff * (pk / cpp)**(1. / kappa) + PRINT *, "minval(pls) = ", minval(pls) + print *, "maxval(pls) = ", maxval(pls) - uvent(:, :, :) = start_inter_3d('U', rlonv, rlatv, pls) + call start_inter_3d('U', rlonv, rlatv, pls, uvent) forall (l = 1: llm) uvent(:iim, :, l) = uvent(:iim, :, l) * cu_2d(:iim, :) uvent(iim+1, :, :) = uvent(1, :, :) - vvent(:, :, :) = start_inter_3d('V', rlonu, rlatu(:jjm), pls(:, :jjm, :)) + call start_inter_3d('V', rlonu, rlatu(:jjm), pls(:, :jjm, :), vvent) forall (l = 1: llm) vvent(:iim, :, l) = vvent(:iim, :, l) * cv_2d(:iim, :) vvent(iim + 1, :, :) = vvent(1, :, :) - t3d(:, :, :) = start_inter_3d('TEMP', rlonu, rlatv, pls) - PRINT *, 'minval(t3d(:, :, :)) = ', minval(t3d(:, :, :)) - print *, "maxval(t3d(:, :, :)) = ", maxval(t3d(:, :, :)) + call start_inter_3d('TEMP', rlonu, rlatv, pls, t3d) + PRINT *, 'minval(t3d) = ', minval(t3d) + print *, "maxval(t3d) = ", maxval(t3d) tpot(:iim, :, :) = t3d(:iim, :, :) * cpp / pk(:iim, :, :) tpot(iim + 1, :, :) = tpot(1, :, :) @@ -165,13 +172,14 @@ ENDDO ! Calcul de l'humidité à saturation : - qsat(:, :, :) = q_sat(t3d, pls) - PRINT *, "minval(qsat(:, :, :)) = ", minval(qsat(:, :, :)) - print *, "maxval(qsat(:, :, :)) = ", maxval(qsat(:, :, :)) + qsat = q_sat(t3d, pls) + PRINT *, "minval(qsat) = ", minval(qsat) + print *, "maxval(qsat) = ", maxval(qsat) IF (MINVAL(qsat) == MAXVAL(qsat)) stop '"qsat" should not be constant' ! Water vapor: - q3d(:, :, :, 1) = 0.01 * start_inter_3d('R', rlonu, rlatv, pls) * qsat + call start_inter_3d('R', rlonu, rlatv, pls, q3d(:, :, :, 1)) + q3d(:, :, :, 1) = 0.01 * q3d(:, :, :, 1) * qsat WHERE (q3d(:, :, :, 1) < 0.) q3d(:, :, :, 1) = 1E-10 DO l = 1, llm q3d(:, 1, l, 1) = SUM(aire_2d(:, 1) * q3d(:, 1, l, 1)) / apoln @@ -214,8 +222,8 @@ ALLOCATE(dlon_lic(iml_lic)) ALLOCATE(dlat_lic(jml_lic)) ALLOCATE(fraclic(iml_lic, jml_lic)) - CALL flinopen_nozoom("landiceref.nc", iml_lic, jml_lic, & - llm_tmp, lon_lic, lat_lic, lev, ttm_tmp, itaul, date, dt, & + CALL flinopen_nozoom(iml_lic, jml_lic, & + llm_tmp, lon_lic, lat_lic, lev, ttm_tmp, itaul, date, trash, & fid) CALL flinget(fid, 'landice', iml_lic, jml_lic, llm_tmp, ttm_tmp & , 1, 1, fraclic) @@ -227,11 +235,11 @@ print *, "jml_lic = ", jml_lic ! Si les coordonnées sont en degrés, on les transforme : - IF (MAXVAL( lon_lic(:, :) ) > pi) THEN - lon_lic(:, :) = lon_lic(:, :) * pi / 180. + IF (MAXVAL( lon_lic ) > pi) THEN + lon_lic = lon_lic * pi / 180. ENDIF - IF (maxval( lat_lic(:, :) ) > pi) THEN - lat_lic(:, :) = lat_lic(:, :) * pi/ 180. + IF (maxval( lat_lic ) > pi) THEN + lat_lic = lat_lic * pi/ 180. ENDIF dlon_lic = lon_lic(:, 1) @@ -242,7 +250,7 @@ flic_tmp(iim + 1, :) = flic_tmp(1, :) ! Passage sur la grille physique - pctsrf(:, :)=0. + pctsrf = 0. pctsrf(:, is_lic) = pack(flic_tmp, dyn_phy) ! Adéquation avec le maque terre/mer WHERE (pctsrf(:, is_lic) < EPSFRA ) pctsrf(:, is_lic) = 0. @@ -267,8 +275,10 @@ WHERE (pctsrf(:, is_oce) < EPSFRA) pctsrf(:, is_oce) = 0. ! Vérification que somme des sous-surfaces vaut 1: - ji = count(abs(sum(pctsrf(:, :), dim = 2) - 1. ) > EPSFRA) - IF (ji /= 0) PRINT *, 'Problème répartition sous maille pour', ji, 'points' + ji = count(abs(sum(pctsrf, dim = 2) - 1.) > EPSFRA) + IF (ji /= 0) then + PRINT *, 'Problème répartition sous maille pour ', ji, 'points' + end IF ! Calcul intermédiaire: CALL massdair(p3d, masse) @@ -283,22 +293,18 @@ ! Initialisation pour traceurs: call iniadvtrac - ! Ecriture: - CALL inidissip(lstardis, nitergdiv, nitergrot, niterh, tetagdiv, & - tetagrot, tetatemp) - itau_dyn = 0 + CALL inidissip itau_phy = 0 day_ref = dayref annee_ref = anneeref - CALL geopot(ip1jmp1, tpot, pk , pks, phis , phi) - CALL caldyn0(0, uvent, vvent, tpot, psol, masse, pk, phis, phi, w, & - pbaru, pbarv, 0) + CALL geopot(ip1jmp1, tpot, pk , pks, phis, phi) + CALL caldyn0(uvent, vvent, tpot, psol, masse, pk, phis, phi, w, pbaru, & + pbarv) CALL dynredem0("start.nc", dayref, phis) - CALL dynredem1("start.nc", 0., vvent, uvent, tpot, q3d, masse, psol) + CALL dynredem1("start.nc", vvent, uvent, tpot, q3d, masse, psol, itau=0) ! Ecriture état initial physique: - print *, 'dtvr = ', dtvr print *, "iphysiq = ", iphysiq phystep = dtvr * REAL(iphysiq) print *, 'phystep = ', phystep @@ -317,7 +323,7 @@ albe(:, is_oce) = 0.5 albe(:, is_sic) = 0.6 alblw = albe - evap(:, :) = 0. + evap = 0. qsolsrf(:, is_ter) = 150. qsolsrf(:, is_lic) = 150. qsolsrf(:, is_oce) = 150.