Changeset 2475 for LMDZ5/trunk/libf/dyn3dmem/inithist_loc.F
- Timestamp:
- Mar 22, 2016, 1:19:13 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/dyn3dmem/inithist_loc.F
r1907 r2475 153 153 154 154 ddid=(/ 1,2 /) 155 dsg=(/ iip1,jj p1/)155 dsg=(/ iip1,jjm /) 156 156 dsl=(/ iip1,jjn /) 157 157 dpf=(/ 1,jjb /) … … 170 170 171 171 ! Grille U 172 173 do jj = 1, jjp1 174 do ii = 1, iip1 175 rlong(ii,jj) = rlonu(ii) * 180. / pi 176 rlat(ii,jj) = rlatu(jj) * 180. / pi 177 enddo 178 enddo 172 179 173 180 jjb=jj_begin … … 210 217 C Vents U 211 218 C 212 call histdef(histuid, 'u', 'vent u moyen ', 213 . 'm/s', iip1, jjp1, uhoriid, llm, 1, llm, zvertiidu, 214 . 32, 'ave(X)', t_ops, t_wrt) 219 jjn=jj_nb 220 call histdef(histuid, 'u', 'vent u', 221 . 'm/s', iip1, jjn, uhoriid, llm, 1, llm, zvertiidu, 222 . 32, 'inst(X)', t_ops, t_wrt) 215 223 216 224 C 217 225 C Vents V 218 226 C 219 call histdef(histvid, 'v', 'vent v moyen', 220 . 'm/s', iip1, jjm, vhoriid, llm, 1, llm, zvertiidv, 221 . 32, 'ave(X)', t_ops, t_wrt) 227 if (pole_sud) jjn=jj_nb-1 228 call histdef(histvid, 'v', 'vent v', 229 . 'm/s', iip1, jjn, vhoriid, llm, 1, llm, zvertiidv, 230 . 32, 'inst(X)', t_ops, t_wrt) 222 231 223 232 C 224 233 C Temperature 225 234 C 226 call histdef(histid, 'temp', 'temperature moyenne', 'K', 227 . iip1, jjp1, thoriid, llm, 1, llm, zvertiid, 228 . 32, 'ave(X)', t_ops, t_wrt) 235 jjn=jj_nb 236 call histdef(histid, 'temp', 'temperature', 'K', 237 . iip1, jjn, thoriid, llm, 1, llm, zvertiid, 238 . 32, 'inst(X)', t_ops, t_wrt) 229 239 C 230 240 C Temperature potentielle 231 241 C 232 242 call histdef(histid, 'theta', 'temperature potentielle', 'K', 233 . iip1, jj p1, thoriid, llm, 1, llm, zvertiid,234 . 32, ' ave(X)', t_ops, t_wrt)243 . iip1, jjn, thoriid, llm, 1, llm, zvertiid, 244 . 32, 'inst(X)', t_ops, t_wrt) 235 245 236 246 … … 238 248 C Geopotentiel 239 249 C 240 call histdef(histid, 'phi', 'geopotentiel moyen', '-',241 . iip1, jj p1, thoriid, llm, 1, llm, zvertiid,242 . 32, ' ave(X)', t_ops, t_wrt)250 call histdef(histid, 'phi', 'geopotentiel', '-', 251 . iip1, jjn, thoriid, llm, 1, llm, zvertiid, 252 . 32, 'inst(X)', t_ops, t_wrt) 243 253 C 244 254 C Traceurs … … 247 257 ! call histdef(histid, ttext(iq), ttext(iq), '-', 248 258 ! . iip1, jjn, thoriid, llm, 1, llm, zvertiid, 249 ! . 32, ' ave(X)', t_ops, t_wrt)259 ! . 32, 'inst(X)', t_ops, t_wrt) 250 260 ! enddo 251 261 C … … 253 263 C 254 264 call histdef(histid, 'masse', 'masse', 'kg', 255 . iip1, jj p1, thoriid, llm, 1, llm, zvertiid,256 . 32, ' ave(X)', t_ops, t_wrt)265 . iip1, jjn, thoriid, llm, 1, llm, zvertiid, 266 . 32, 'inst(X)', t_ops, t_wrt) 257 267 C 258 268 C Pression au sol 259 269 C 260 270 call histdef(histid, 'ps', 'pression naturelle au sol', 'Pa', 261 . iip1, jj p1, thoriid, 1, 1, 1, -99,262 . 32, ' ave(X)', t_ops, t_wrt)263 C 264 C Pressionau sol271 . iip1, jjn, thoriid, 1, 1, 1, -99, 272 . 32, 'inst(X)', t_ops, t_wrt) 273 C 274 C Geopotentiel au sol 265 275 C 266 276 ! call histdef(histid, 'phis', 'geopotentiel au sol', '-', 267 277 ! . iip1, jjn, thoriid, 1, 1, 1, -99, 268 ! . 32, ' ave(X)', t_ops, t_wrt)278 ! . 32, 'inst(X)', t_ops, t_wrt) 269 279 C 270 280 C Fin … … 274 284 call histend(histvid) 275 285 #else 276 write(lunout,*)'init dynav_p: Needs IOIPSL to function'286 write(lunout,*)'inithist_loc: Needs IOIPSL to function' 277 287 #endif 278 288 ! #endif of #ifdef CPP_IOIPSL 279 return280 289 end
Note: See TracChangeset
for help on using the changeset viewer.