--- trunk/libf/dyn3d/etat0_lim.f90 2008/02/27 13:16:39 3 +++ trunk/dyn3d/ce0l.f 2014/03/05 14:57:53 82 @@ -1,19 +1,22 @@ -PROGRAM etat0_lim +PROGRAM ce0l ! 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.txt", status="replace", action="write") CALL conf_gcm CALL etat0 CALL limit + close(unit_nml) -END PROGRAM etat0_lim +END PROGRAM ce0l