source: LMDZ5/branches/LMDZ6_rc0/libf/phylmd/print_debug_phys.F90 @ 2283

Last change on this file since 2283 was 1910, checked in by Laurent Fairhead, 11 years ago

Merged trunk changes r1860:1909 into testing branch

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
  • 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.