--- trunk/libf/dyn3d/etat0_lim.f90 2008/02/27 13:16:39 3 +++ trunk/libf/dyn3d/etat0_lim.f90 2012/01/30 12:54:02 57 @@ -2,18 +2,21 @@ ! This program sets the initial and boundary values. - use comconst, only: initialize use conf_gcm_m, only: conf_gcm use etat0_mod, only: etat0 + use jumble, only: new_unit use limit_mod, only: limit + use unit_nml_m, only: unit_nml implicit none !------------------------------------- - call initialize + call new_unit(unit_nml) + open(unit_nml, file="used_namelists", status="replace", action="write") CALL conf_gcm CALL etat0 CALL limit + close(unit_nml) END PROGRAM etat0_lim