/[lmdze]/trunk/dyn3d/adaptdt.f
ViewVC logotype

Contents of /trunk/dyn3d/adaptdt.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 81 - (show annotations)
Wed Mar 5 14:38:41 2014 UTC (10 years, 2 months ago) by guez
Original Path: trunk/dyn3d/adaptdt.f90
File size: 1177 byte(s)
 Converted to free source form files which were still in fixed source
form. The conversion was done using the polish mode of the NAG Fortran
Compiler.

In addition to converting to free source form, the processing of the
files also:

-- indented the code (including comments);

-- set Fortran keywords to uppercase, and set all other identifiers
to lower case;

-- added qualifiers to end statements (for example "end subroutine
conflx", instead of "end");

-- changed the terminating statements of all DO loops so that each
loop ends with an ENDDO statement (instead of a labeled continue).

1
2 ! $Header: /home/cvsroot/LMDZ4/libf/dyn3d/adaptdt.F,v 1.1.1.1 2004/05/19
3 ! 12:53:05 lmdzadmin Exp $
4
5 SUBROUTINE adaptdt(nadv, dtbon, n, pbaru, masse)
6
7 USE dimens_m
8 USE paramet_m
9 USE comconst
10 USE disvert_m
11 USE conf_gcm_m
12 USE conf_gcm_m
13 USE comgeom
14 USE temps
15 USE ener
16 IMPLICIT NONE
17
18
19 ! ----------------------------------------------------------
20 ! Arguments
21 ! ----------------------------------------------------------
22 INTEGER n, nadv
23 REAL dtbon
24 REAL, INTENT (IN) :: pbaru(iip1, jjp1, llm)
25 REAL masse(iip1, jjp1, llm)
26 ! ----------------------------------------------------------
27 ! Local
28 ! ----------------------------------------------------------
29 INTEGER i, j, l
30 REAL cflmax, aaa, bbb
31
32 cflmax = 0.
33 DO l = 1, llm
34 DO j = 2, jjm
35 DO i = 1, iim
36 aaa = pbaru(i, j, l)*dtvr/masse(i, j, l)
37 cflmax = max(cflmax, aaa)
38 bbb = -pbaru(i, j, l)*dtvr/masse(i+1, j, l)
39 cflmax = max(cflmax, bbb)
40 END DO
41 END DO
42 END DO
43 n = int(cflmax) + 1
44 ! pour reproduire cas VL du code qui appele x,y,z,y,x
45 ! if (nadv.eq.30) n=n/2 ! Pour Prather
46 dtbon = dtvr/n
47
48 RETURN
49 END SUBROUTINE adaptdt
50
51
52
53
54
55
56

  ViewVC Help
Powered by ViewVC 1.1.21