Changeset 3604
- Timestamp:
- Jan 29, 2025, 10:04:35 AM (28 hours ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/dyn3dpar/gcm.F
r3574 r3604 166 166 stop 167 167 case default 168 error stop 'The argument given to the program '169 &//' isunknown!'168 error stop 'The argument given to the program is ' 169 &//'unknown!' 170 170 end select 171 171 endif -
trunk/LMDZ.MARS/changelog.txt
r3586 r3604 4764 4764 - Albedo is now set properly in every situation given the presence of CO2/H2O ice and frost + water albedo is done solely in "physiq". 4765 4765 - Small update to make the display of code version status/diff clearer. 4766 4767 == 29/01/2025 == JBC 4768 Bug correction introduced in r3574: the program has to be in a fixed-form Fortran format. -
trunk/LMDZ.MARS/libf/dynphy_lonlat/phymars/newstart.F
r3576 r3604 213 213 214 214 215 if (command_argument_count() > 0) then ! Get the number of command-line arguments 216 call get_command_argument(1,txt) ! Read the argument given to the program 217 select case (trim(adjustl(txt))) 218 case('version') 219 call print_version_info() 220 stop 221 case default 222 error stop 'The argument given to the program is unknown!' 223 end select 224 endif 215 if (command_argument_count() > 0) then ! Get the number of command-line arguments 216 call get_command_argument(1,txt) ! Read the argument given to the program 217 select case (trim(adjustl(txt))) 218 case('version') 219 call print_version_info() 220 stop 221 case default 222 error stop 'The argument given to the program is ' 223 &//'unknown!' 224 end select 225 endif 225 226 226 227 c sortie visu pour les champs dynamiques
Note: See TracChangeset
for help on using the changeset viewer.