Changeset 4091 for trunk/LMDZ.COMMON/libf/evolution/config.F90
- Timestamp:
- Feb 27, 2026, 3:54:06 PM (3 days ago)
- File:
-
- 1 edited
-
trunk/LMDZ.COMMON/libf/evolution/config.F90 (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/config.F90
r4074 r4091 24 24 25 25 character(7), parameter :: rundef_name = 'run.def' 26 character(11), parameter :: run PCMdef_name = 'run_pcm.def'26 character(11), parameter :: run_pcmdef_name = 'run_pcm.def' 27 27 character(12), parameter :: callphys_name = 'callphys.def' 28 28 … … 350 350 ! CODE 351 351 ! ---- 352 inquire(file = run PCMdef_name,exist = here)353 if (.not. here) call stop_clean(__FILE__,__LINE__,'cannot find required file "'//run PCMdef_name//'"!',1)354 call print_msg('> Reading "'//run PCMdef_name//'"')355 open(newunit = funit,file = run PCMdef_name,status = 'old',form = 'formatted',action = 'read',iostat = ierr)356 if (ierr /= 0) call stop_clean(__FILE__,__LINE__,'error opening file "'//run PCMdef_name//'"!',ierr)352 inquire(file = run_pcmdef_name,exist = here) 353 if (.not. here) call stop_clean(__FILE__,__LINE__,'cannot find required file "'//run_pcmdef_name//'"!',1) 354 call print_msg('> Reading "'//run_pcmdef_name//'"') 355 open(newunit = funit,file = run_pcmdef_name,status = 'old',form = 'formatted',action = 'read',iostat = ierr) 356 if (ierr /= 0) call stop_clean(__FILE__,__LINE__,'error opening file "'//run_pcmdef_name//'"!',ierr) 357 357 358 358 found = .false. … … 385 385 close(funit) 386 386 387 if (.not. found) call print_msg('Warning: key ''hybrid'' not found in the file "'//run PCMdef_name//'"!')387 if (.not. found) call print_msg('Warning: key ''hybrid'' not found in the file "'//run_pcmdef_name//'"!') 388 388 if (hybrid .eqv. hybrid_in) call print_msg('USING DEFAULTS : hybrid = '//bool2str(hybrid_in)) 389 389
Note: See TracChangeset
for help on using the changeset viewer.
