Changeset 57 for LMDZ.3.3/trunk/libf/dyn3d
- Timestamp:
- Feb 18, 2000, 2:53:27 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ.3.3/trunk/libf/dyn3d/gcm.F
r49 r57 1 1 2 2 PROGRAM gcm 3 4 USE IOIPSL 3 5 4 6 IMPLICIT NONE … … 115 117 116 118 119 INTEGER fluxid, fluxvid,fluxdid 117 120 integer histid, histvid, histaveid 118 121 real time_step, t_wrt, t_ops … … 123 126 124 127 LOGICAL offline ! Controle du stockage ds "fluxmass" 125 PARAMETER (offline=. false.)128 PARAMETER (offline=.true.) 126 129 127 130 character*80 dynhist_file, dynhistave_file 128 131 character*20 modname 129 132 character*80 abort_message 133 134 C Calendrier 135 LOGICAL true_calendar 136 PARAMETER (true_calendar = .false.) 130 137 131 138 c----------------------------------------------------------------------- … … 138 145 dynhist_file = 'dyn_hist.nc' 139 146 dynhistave_file = 'dyn_hist_ave.nc' 147 148 if (true_calendar) then 149 call ioconf_calendar('gregorian') 150 else 151 call ioconf_calendar('360d') 152 endif 140 153 c----------------------------------------------------------------------- 141 154 c … … 372 385 IF (offline) THEN 373 386 Cmaf stokage du flux de masse pour traceurs OFF-LINE 374 CALL fluxstoke(pbaru,pbarv,masse,teta,phi,phis) 387 388 CALL fluxstokenc(pbaru,pbarv,masse,teta,phi,phis, 389 . time_step, itau,fluxid, fluxvid,fluxdid ) 390 375 391 ENDIF 376 392 c
Note: See TracChangeset
for help on using the changeset viewer.