Changeset 3836 for trunk/LMDZ.GENERIC/libf/dynphy_lonlat/phystd
- Timestamp:
- Jul 7, 2025, 2:46:43 PM (5 weeks ago)
- Location:
- trunk/LMDZ.GENERIC/libf/dynphy_lonlat/phystd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/dynphy_lonlat/phystd/newstart.F
r3621 r3836 50 50 & latitude, ! latitudes (rad) 51 51 & cell_area ! physics grid area (m2) 52 use version_info_mod, only: print_version_info52 use parse_args_mod, only: parse_args 53 53 54 54 implicit none … … 192 192 193 193 194 if (command_argument_count() > 0) then ! Get the number of command-line arguments 195 call get_command_argument(1,txt) ! Read the argument given to the program 196 select case (trim(adjustl(txt))) 197 case('version') 198 call print_version_info() 199 stop 200 case default 201 error stop 'The argument given to the program is ' 202 &//'unknown!' 203 end select 204 endif 194 ! Parse command-line options 195 call parse_args() 205 196 206 197 c sortie visu pour les champs dynamiques -
trunk/LMDZ.GENERIC/libf/dynphy_lonlat/phystd/start2archive.F
r3576 r3836 39 39 & east_gwstress, west_gwstress 40 40 use exner_hyb_m, only: exner_hyb 41 use version_info_mod, only: print_version_info41 use parse_args_mod, only: parse_args 42 42 43 43 implicit none … … 148 148 c Initialisations 149 149 c----------------------------------------------------------------------- 150 if (command_argument_count() > 0) then ! Get the number of command-line arguments 151 call get_command_argument(1,txt) ! Read the argument given to the program 152 select case (trim(adjustl(txt))) 153 case('version') 154 call print_version_info() 155 stop 156 case default 157 error stop 'The argument given to the program is ' 158 &//'unknown!' 159 end select 160 endif 150 ! Parse command-line options 151 call parse_args() 161 152 162 153 CALL defrun_new(99, .TRUE. )
Note: See TracChangeset
for help on using the changeset viewer.