Changeset 3576 for trunk/LMDZ.GENERIC/libf/dynphy_lonlat/phystd/newstart.F
- Timestamp:
- Jan 14, 2025, 4:05:38 PM (2 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/dynphy_lonlat/phystd/newstart.F
r3423 r3576 49 49 use geometry_mod, only: longitude, ! longitudes (rad) 50 50 & latitude, ! latitudes (rad) 51 & cell_area ! physics grid area (m2) 51 & cell_area ! physics grid area (m2) 52 use version_info_mod, only: print_version_info 53 52 54 implicit none 53 55 … … 189 191 real fact2 190 192 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 191 205 192 206 c sortie visu pour les champs dynamiques
Note: See TracChangeset
for help on using the changeset viewer.