--- trunk/libf/dyn3d/etat0_lim.f90 2011/01/25 15:11:05 39 +++ trunk/libf/dyn3d/etat0_lim.f90 2012/01/30 12:54:02 57 @@ -4,14 +4,19 @@ 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 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