Last change
on this file since 3825 was
3825,
checked in by ymipsl, 10 years ago
|
Reorganize geometry and grid modules. Prepare physics for unstructutured grid support. Simplify initialization of physics from dynamic.
Compiled only with dynd3dmem, but not tested for moment.
YM
|
File size:
457 bytes
|
Line | |
---|
1 | SUBROUTINE print_debug_phys (i,debug_lev,text) |
---|
2 | |
---|
3 | use dimphy |
---|
4 | use phys_local_var_mod |
---|
5 | use phys_state_var_mod |
---|
6 | use geometry_mod, ONLY : lon_degrees, lat_degrees |
---|
7 | IMPLICIT NONE |
---|
8 | integer i,debug_lev |
---|
9 | CHARACTER*(*) text |
---|
10 | |
---|
11 | |
---|
12 | integer k |
---|
13 | |
---|
14 | print*,'PLANTAGE POUR LE POINT i=',i,text |
---|
15 | print*,'l u, v, T, q, ql' |
---|
16 | DO k = 1, klev |
---|
17 | write(*,'(i3,2f8.4,3f14.4,2e14.2)') k,lon_degrees(i),lat_degrees(i),u_seri(i,k),v_seri(i,k),t_seri(i,k),q_seri(i,k),ql_seri(i,k) |
---|
18 | ENDDO |
---|
19 | |
---|
20 | RETURN |
---|
21 | END |
---|
Note: See
TracBrowser
for help on using the repository browser.