Changeset 1369 for LMDZ4/branches
- Timestamp:
- Apr 22, 2010, 2:53:08 PM (15 years ago)
- Location:
- LMDZ4/branches/LMDZ4V5.0-dev/libf/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/branches/LMDZ4V5.0-dev/libf/phylmd/physiq.F
r1356 r1369 1228 1228 & alp_offset) 1229 1229 call phys_state_var_init(read_climoz) 1230 call phys_output_var_init 1231 1230 1232 print*, '=================================================' 1231 1233 cIM for NMC files … … 1247 1249 c pmflxr=0. 1248 1250 c pmflxs=0. 1251 itau_con=0 1249 1252 first=.false. 1250 1253 … … 2157 2160 pmfu(:,:)=upwd(:,:)+dnwd(:,:) 2158 2161 2162 do i = 1, klon 2163 if (iflagctrl(i).le.1) itau_con(i)=itau_con(i)+1 2164 enddo 2165 2159 2166 ELSE ! ok_cvl 2160 2167 c MAF conema3 ne contient pas les traceurs -
LMDZ4/branches/LMDZ4V5.0-dev/libf/phylmd/surf_landice_mod.F90
r1146 r1369 24 24 USE cpl_mod, ONLY : cpl_send_landice_fields 25 25 USE calcul_fluxs_mod 26 USE phys_output_var_mod 26 27 27 28 INCLUDE "indicesol.h" … … 74 75 REAL, DIMENSION(klon) :: radsol 75 76 REAL, DIMENSION(klon) :: u0, v0, u1_lay, v1_lay 77 INTEGER :: i,j 76 78 77 79 ! End definition … … 175 177 ENDIF 176 178 179 !**************************************************************************************** 180 snow_o=0. 181 zfra_o = 0. 182 DO j = 1, knon 183 i = knindex(j) 184 snow_o(i) = snow(j) 185 zfra_o(i) = zfra(j) 186 ENDDO 187 177 188 178 189 END SUBROUTINE surf_landice
Note: See TracChangeset
for help on using the changeset viewer.