Changeset 3604


Ignore:
Timestamp:
Jan 29, 2025, 10:04:35 AM (28 hours ago)
Author:
jbclement
Message:

Mars PCM:
Bug correction introduced in r3574: the program has to be in a fixed-form Fortran format.
JBC

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/dyn3dpar/gcm.F

    r3574 r3604  
    166166                  stop
    167167              case default
    168                   error stop 'The argument given to the program '
    169      &//'is unknown!'
     168                  error stop 'The argument given to the program is '
     169     &//'unknown!'
    170170          end select
    171171      endif
  • trunk/LMDZ.MARS/changelog.txt

    r3586 r3604  
    47644764- Albedo is now set properly in every situation given the presence of CO2/H2O ice and frost + water albedo is done solely in "physiq".
    47654765- Small update to make the display of code version status/diff clearer.
     4766
     4767== 29/01/2025 == JBC
     4768Bug 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  
    213213
    214214
    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
    225226
    226227c sortie visu pour les champs dynamiques
Note: See TracChangeset for help on using the changeset viewer.