source: LMDZ5/trunk/libf/phylmd/print_debug_phys.F90 @ 1907

Last change on this file since 1907 was 1907, checked in by lguez, 10 years ago

Added a copyright property to every file of the distribution, except
for the fcm files (which have their own copyright). Use svn propget on
a file to see the copyright. For instance:

$ svn propget copyright libf/phylmd/physiq.F90
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

Also added the files defining the CeCILL version 2 license, in French
and English, at the top of the LMDZ tree.

  • 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.