- Timestamp:
- Nov 21, 2019, 4:43:45 PM (5 years ago)
- Location:
- LMDZ6/branches/Ocean_skin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Ocean_skin
-
LMDZ6/branches/Ocean_skin/libf/phylmd/flott_gwd_rando_m.F90
-
Property
svn:keywords
set to
Id
r3198 r3605 1 ! 2 ! $Id$ 3 ! 1 4 module FLOTT_GWD_rando_m 2 5 … … 20 23 USE ioipsl_getin_p_mod, ONLY : getin_p 21 24 USE vertical_layers_mod, ONLY : presnivs 25 CHARACTER (LEN=20) :: modname='flott_gwd_rando' 26 CHARACTER (LEN=80) :: abort_message 22 27 23 28 include "YOMCST.h" … … 115 120 LOGICAL, SAVE :: firstcall = .TRUE. 116 121 !$OMP THREADPRIVATE(firstcall,gwd_reproductibilite_mpiomp) 117 118 CHARACTER (LEN=20) :: modname='flott_gwd_rando'119 CHARACTER (LEN=80) :: abort_message120 121 122 122 123 … … 198 199 199 200 IF(DELTAT < DTIME)THEN 200 PRINT *,'flott_gwd_rando: deltat < dtime!'201 STOP 1201 abort_message='flott_gwd_rando: deltat < dtime!' 202 CALL abort_physic(modname,abort_message,1) 202 203 ENDIF 203 204 204 205 IF (KLEV < NW) THEN 205 PRINT *,'flott_gwd_rando: you will have problem with random numbers'206 STOP 1206 abort_message='flott_gwd_rando: you will have problem with random numbers' 207 CALL abort_physic(modname,abort_message,1) 207 208 ENDIF 208 209 -
Property
svn:keywords
set to
Note: See TracChangeset
for help on using the changeset viewer.