--- trunk/Sources/dyn3d/conf_gcm.f 2016/05/09 19:56:28 191 +++ trunk/Sources/dyn3d/conf_gcm.f 2016/12/07 16:44:53 208 @@ -35,11 +35,8 @@ ! Help = Choix du schema d'integration temporel. ! y = pure Matsuno sinon c'est du Matsuno-leapfrog - INTEGER:: iflag_phys = 1 - ! contr\^ole l'appel \`a la physique : - ! 0 : pas de physique - ! 1 : physique normale (appel \`a phylmd, phymars...) (default) - ! 2 : rappel Newtonien pour la temp\'erature + friction au sol + logical:: iflag_phys = .true. ! call parameterizations of physics + INTEGER, SAVE:: lmt_pas ! number of time steps of "physics" per day contains @@ -80,6 +77,9 @@ IF (MOD(day_step, iphysiq)/= 0) call abort_gcm("conf_gcm", & 'Il faut choisir un nombre de pas par jour multiple de "iphysiq".') + lmt_pas = day_step / iphysiq + print *, 'Number of time steps of "physics" per day: ', lmt_pas + END SUBROUTINE conf_gcm end module conf_gcm_m