source: LMDZ4/branches/LMDZ4V5.0-dev/libf/phylmd/print_debug_phys.F90 @ 1388

Last change on this file since 1388 was 941, checked in by lmdzadmin, 16 years ago

Ajout coordonnees geographiques pour les plantages
IM

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 393 bytes
Line 
1SUBROUTINE print_debug_phys (i,debug_lev,text)
2
3use dimphy
4use phys_local_var_mod
5use phys_state_var_mod
6IMPLICIT NONE
7integer i,debug_lev
8CHARACTER*(*) text
9
10
11integer k
12
13print*,'PLANTAGE POUR LE POINT i=',i,text
14print*,'l    u, v, T, q, ql'
15DO k = 1, klev
16   write(*,'(i3,2f8.4,3f14.4,2e14.2)') k,rlon(i),rlat(i),u_seri(i,k),v_seri(i,k),t_seri(i,k),q_seri(i,k),ql_seri(i,k)
17ENDDO
18
19RETURN
20END
Note: See TracBrowser for help on using the repository browser.