--- trunk/dyn3d/conf_gcm.f 2014/07/15 13:43:24 102 +++ trunk/dyn3d/conf_gcm.f 2014/09/18 19:56:46 113 @@ -42,13 +42,6 @@ ! Help = Choix du schema d'integration temporel. ! y = pure Matsuno sinon c'est du Matsuno-leapfrog - logical:: fxyhypb = .TRUE. - ! fonction f(y) à dérivée tangente hyperbolique, sinon à dérivée - ! sinusoïdale - - logical:: ysinus = .TRUE. - ! (Fonction f(y) avec y = Sin(latit.) si = .true. sinon y = latit.) - logical:: ok_guide= .FALSE. ! guidage INTEGER:: iflag_phys = 1 @@ -65,25 +58,21 @@ ! Version du 29/04/97 ! On ne compare pas les paramètres du zoom (grossismx, grossismy, - ! clon, clat, fxyhypb) lus sur le fichier start avec ceux lus dans + ! clon, clat) lus sur le fichier start avec ceux lus dans ! une namelist, au début de gcm. Ces paramètres définissent entre ! autres la grille et doivent être identiques, sinon il y aura ! divergence du gcm. use abort_gcm_m, only: abort_gcm use comdissnew, only: read_comdissnew - use serre, only: clon, clat, grossismx, grossismy, alphax, alphay, & - dzoomx, dzoomy, taux, tauy use unit_nml_m, only: unit_nml namelist /conf_gcm_nml/dayref, anneeref, raz_date, nday, day_step, & - iperiod, iapp_tracvl, iconser, iecri, periodav, & - iphysiq, clon, clat, grossismx, grossismy, dzoomx, dzoomy, taux, & - tauy, offline + iperiod, iapp_tracvl, iconser, iecri, periodav, iphysiq, offline namelist /iniprint_nml/prt_level - namelist /logic_nml/ purmats, fxyhypb, ysinus, ok_guide, iflag_phys + namelist /logic_nml/ purmats, ok_guide, iflag_phys !------------------------------------ @@ -117,21 +106,6 @@ abort_gcm(modname = "conf_gcm", & message = 'ok_guide day_step iperiod', ierr = 1) - IF (grossismx < 1.) THEN - PRINT *, 'Error: grossismx < 1' - STOP 1 - ELSE - alphax = 1. - 1. / grossismx - ENDIF - IF (grossismy < 1.) THEN - PRINT *, 'Error: grossismy < 1' - STOP 1 - ELSE - alphay = 1. - 1. / grossismy - ENDIF - PRINT *, 'alphax = ', alphax - PRINT *, 'alphay = ', alphay - END SUBROUTINE conf_gcm end module conf_gcm_m