Changeset 2207
- Timestamp:
- Feb 13, 2015, 9:40:30 AM (10 years ago)
- Location:
- LMDZ5/trunk/libf/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/cv3a_uncompress.F90
r1992 r2207 6 6 , clw, elij, evap, ep, epmlmmm, eplamm & ! RomP 7 7 , wdtraina, wdtrainm & ! RomP 8 , qtc, sigt & 8 9 9 10 , iflag1, kbas1, ktop1, precip1, cbmf1, plcl1, plfc1, wbeff1, sig1, w01, & … … 13 14 , da1, phi1, mp1, phi21, d1a1, dam1, sigij1 & ! RomP+AC+jyg 14 15 , clw1, elij1, evap1, ep1, epmlmmm1, eplamm1 & ! RomP 15 , wdtraina1, wdtrainm1) ! RomP 16 , wdtraina1, wdtrainm1 & ! RomP 17 , qtc1, sigt1) 16 18 17 19 ! ************************************************************** … … 56 58 REAL evap(nloc, nd), ep(nloc, nd) !RomP 57 59 REAL epmlmmm(nloc, nd, nd), eplamm(nloc, nd) !RomP+jyg 60 REAL qtc(nloc, nd), sigt(nloc, nd) !RomP 58 61 REAL wdtraina(nloc, nd), wdtrainm(nloc, nd) !RomP 59 62 … … 84 87 REAL evap1(len, nd), ep1(len, nd) !RomP 85 88 REAL epmlmmm1(len, nd, nd), eplamm1(len, nd) !RomP+jyg 89 REAL qtc1(len, nd), sigt1(len, nd) !RomP 86 90 REAL wdtraina1(len, nd), wdtrainm1(len, nd) !RomP 87 91 … … 141 145 wdtraina1(idcum(i), k) = wdtraina(i, k) !RomP 142 146 wdtrainm1(idcum(i), k) = wdtrainm(i, k) !RomP 147 qtc1(idcum(i), k) = qtc(i, k) 148 sigt1(idcum(i), k) = sigt(i, k) 143 149 144 150 END DO -
LMDZ5/trunk/libf/phylmd/cva_driver.F90
r2205 r2207 24 24 da1, phi1, mp1, phi21, d1a1, dam1, sigij1, wghti1, & ! RomP, RL 25 25 clw1, elij1, evap1, ep1, epmlmMm1, eplaMm1, & ! RomP, RL 26 wdtrainA1, wdtrainM1, qtc , sigt, tau_cld_cv, &26 wdtrainA1, wdtrainM1, qtc1, sigt1, tau_cld_cv, & 27 27 coefw_cld_cv) ! RomP, AJ 28 28 ! ************************************************************** … … 122 122 ! phi1 Real Output used in tracer transport (cvltr) 123 123 ! mp1 Real Output used in tracer transport (cvltr) 124 ! qtc 125 ! sigt 124 ! qtc1 Real Output specific humidity in convection 125 ! sigt1 Real Output surface fraction in adiabatic updrafts 126 126 ! phi21 Real Output used in tracer transport (cvltr) 127 127 … … 232 232 REAL asupmaxmin1(len) 233 233 INTEGER lalim_conv(len) 234 REAL qtc1(len, nd) ! cld 235 REAL sigt1(len, nd) ! cld 236 234 237 ! RomP >>> 235 238 REAL wdtrainA1(len, nd), wdtrainM1(len, nd) … … 485 488 REAL ftra(nloc, klev, ntra), traent(nloc, klev, klev, ntra) 486 489 REAL qcondc(nloc, klev) ! cld 487 REAL qtc(nloc, klev) ! cld488 REAL sigt(nloc, klev) ! cld489 490 REAL wd(nloc) ! gust 490 491 REAL Plim1(nloc), plim2(nloc) … … 497 498 REAL hnk(nloc), unk(nloc), vnk(nloc) 498 499 500 REAL qtc(nloc, klev) ! cld 501 REAL sigt(nloc, klev) ! cld 502 499 503 ! RomP >>> 500 504 REAL wdtrainA(nloc, klev), wdtrainM(nloc, klev) … … 603 607 604 608 ! RomP >>> 609 sigt1(:, :) = 0. 610 qtc1(:, :) = 0. 605 611 wdtrainA1(:, :) = 0. 606 612 wdtrainM1(:, :) = 0. … … 1042 1048 clw, elij, evap, ep, epmlmMm, eplaMm, & ! RomP 1043 1049 wdtrainA, wdtrainM, & ! RomP 1050 qtc, sigt, & 1044 1051 iflag1, kbas1, ktop1, & 1045 1052 precip1, cbmf1, plcl1, plfc1, wbeff1, sig1, w01, ptop21, & … … 1053 1060 da1, phi1, mp1, phi21, d1a1, dam1, sigij1, & ! RomP 1054 1061 clw1, elij1, evap1, ep1, epmlmMm1, eplaMm1, & ! RomP 1055 wdtrainA1, wdtrainM1) ! RomP 1062 wdtrainA1, wdtrainM1, & ! RomP 1063 qtc1, sigt1) 1056 1064 END IF 1057 1065
Note: See TracChangeset
for help on using the changeset viewer.