Changeset 3205 for trunk/LMDZ.MARS/libf
- Timestamp:
- Feb 8, 2024, 11:05:11 AM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/dyn1d/testphys1d.F90
r3203 r3205 131 131 132 132 therestart1D = .false. ! Default value 133 inquire(file = 'start1D.txt',exist = therestart1D)134 if (startfiles_1D .and. .not. therestart1D) then135 write(*,*) 'There is no "start1D.txt" file!'136 write(*,*) 'Initialization is done with default values.'137 endif138 133 therestartfi = .false. ! Default value 139 inquire(file = 'startfi.nc',exist = therestartfi) 140 if (.not. therestartfi) then 141 write(*,*) 'There is no "startfi.nc" file!' 142 write(*,*) 'Initialization is done with default values.' 134 if (startfiles_1D) then 135 inquire(file = 'start1D.txt',exist = therestart1D) 136 if (startfiles_1D .and. .not. therestart1D) then 137 write(*,*) 'There is no "start1D.txt" file!' 138 write(*,*) 'Initialization is done with default values.' 139 endif 140 inquire(file = 'startfi.nc',exist = therestartfi) 141 if (.not. therestartfi) then 142 write(*,*) 'There is no "startfi.nc" file!' 143 write(*,*) 'Initialization is done with default values.' 144 endif 143 145 endif 144 146
Note: See TracChangeset
for help on using the changeset viewer.