Changeset 97 for trunk/libf/dyn3dpar/conf_gcm.F
- Timestamp:
- Mar 22, 2011, 5:25:44 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libf/dyn3dpar/conf_gcm.F
r7 r97 4 4 c 5 5 c 6 SUBROUTINE conf_gcm( tapedef, etatinit , clesphy0)6 SUBROUTINE conf_gcm( tapedef, etatinit ) 7 7 c 8 8 #ifdef CPP_IOIPSL … … 26 26 c etatinit : = TRUE , on ne compare pas les valeurs des para- 27 27 c -metres du zoom avec celles lues sur le fichier start . 28 c clesphy0 : sortie .29 28 c 30 29 LOGICAL etatinit 31 30 INTEGER tapedef 32 31 33 INTEGER longcles34 PARAMETER( longcles = 20 )35 REAL clesphy0( longcles )36 c37 32 c Declarations : 38 33 c -------------- … … 157 152 CALL getin('raz_date', raz_date) 158 153 154 !Config Key = resetvarc 155 !Config Desc = Reinit des variables de controle 156 !Config Def = n 157 !Config Help = Reinit des variables de controle 158 resetvarc = .false. 159 CALL getin('resetvarc',resetvarc) 160 159 161 !Config Key = nday 160 162 !Config Desc = Nombre de jours d'integration … … 164 166 nday = 10 165 167 CALL getin('nday',nday) 168 169 !Config Key = less1day 170 !Config Desc = Possibilite d'integrer moins d'un jour 171 !Config Def = n 172 !Config Help = Possibilite d'integrer moins d'un jour 173 less1day = .false. 174 CALL getin('less1day',less1day) 175 176 !Config Key = fractday 177 !Config Desc = integration sur une fraction de jour 178 !Config Def = 0.01 179 !Config Help = integration sur une fraction de jour 180 fractday = 0.01 181 CALL getin('fractday',fractday) 166 182 167 183 !Config Key = day_step … … 628 644 write(lunout,*)' anneeref = ', anneeref 629 645 write(lunout,*)' nday = ', nday 646 if (less1day) then 647 write(lunout,*)' Run only for a fraction of day ! ' 648 write(lunout,*)' fractday = ', fractday 649 endif 630 650 write(lunout,*)' day_step = ', day_step 631 651 write(lunout,*)' iperiod = ', iperiod
Note: See TracChangeset
for help on using the changeset viewer.