Last change
on this file since 5204 was
5099,
checked in by abarral, 4 months ago
|
Replace most uses of CPP_DUST by the corresponding logical defined in lmdz_cppkeys_wrapper.F90
Convert several files from .F to .f90 to allow Dust to compile w/o rrtm/ecrad
Create lmdz_yoerad.f90
(lint) Remove "!" on otherwise empty line
|
-
Property svn:keywords set to
Id
|
File size:
498 bytes
|
Line | |
---|
1 | |
---|
2 | ! $Id: minmaxsimple.F90 5099 2024-07-22 19:29:09Z fairhead $ |
---|
3 | |
---|
4 | SUBROUTINE minmaxsimple(zq,qmin,qmax,comment) |
---|
5 | USE dimphy |
---|
6 | IMPLICIT NONE |
---|
7 | |
---|
8 | ! Entrees |
---|
9 | REAL,DIMENSION(klon,klev), INTENT(IN) :: zq |
---|
10 | REAL,INTENT(IN) :: qmin,qmax |
---|
11 | CHARACTER(LEN=*),INTENT(IN) :: comment |
---|
12 | |
---|
13 | ! Local |
---|
14 | REAL zmin, zmax |
---|
15 | |
---|
16 | zmin=MINVAL(zq) |
---|
17 | zmax=MAXVAL(zq) |
---|
18 | PRINT *, "qmin qmax=", zmin, zmax, comment |
---|
19 | ! IF (zmin.LT.qmin.OR.zmax.GT.qmax) THEN |
---|
20 | ! WRITE(*,*) "qmin qmax=", zmin, zmax, comment |
---|
21 | ! ENDIF |
---|
22 | |
---|
23 | END SUBROUTINE minmaxsimple |
---|
Note: See
TracBrowser
for help on using the repository browser.