Changeset 3088 for trunk/LMDZ.MARS/deftank
- Timestamp:
- Oct 16, 2023, 10:31:19 AM (14 months ago)
- Location:
- trunk/LMDZ.MARS/deftank/pem
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/deftank/pem/README
r3038 r3088 23 23 Bash script file to modify orbital parameters in the file "startfi.nc" (obliquity, eccentricity, Ls perihelion and possibly initial Ls). They should be consistent with Laskar data in "obl_ecc_lsp.asc" to start the chained simulation. 24 24 25 # concat_diagpem.sh: 26 Bash script file to concatenate along the variable 'Time' all the "diagfi.nc" files of the PEM into one NetCDF file. 'Time' is reindexed with the numbering of Martian years simulated by the PEM. 27 25 28 Note: 26 29 To run the chained simulation, be careful to have: -
trunk/LMDZ.MARS/deftank/pem/launch_pem.sh
r3076 r3088 179 179 # Copy data files and prepare the next run 180 180 mv out_runPEM${iPEM} out_PEM/run${iPEM} 181 mv diag fi.nc diags/diagfi_PEM${iPEM}.nc182 cp restart fi_PEM.nc starts/startfi_PEM${iPEM}.nc183 mv restart fi_PEM.nc startfi_PEM.nc181 mv diagpem.nc diags/diagpem_${iPEM}.nc 182 cp restartpem.nc starts/startpem_${iPEM}.nc 183 mv restartpem.nc startpem.nc 184 184 cp restartfi_evol.nc starts/startfi_postPEM${iPEM}.nc 185 185 mv restartfi_evol.nc startfi.nc -
trunk/LMDZ.MARS/deftank/pem/modify_startfi_orbit.sh
r3046 r3088 1 1 #!/bin/bash 2 ###################################################################### 3 ### Script to modify the orbital parameters of a file "startfi.nc" ### 4 ###################################################################### 2 5 3 # Bash script to modify the orbital parameters of a file "startfi.nc"6 #Name of the file to be modified 4 7 name_file="startfi.nc" 5 8 9 # New values for the orbital parameters 6 10 new_obl=25.18941689 7 11 new_ecc=0.09340902 … … 49 53 -s "controle(16)=$peri_day" \ 50 54 -s "controle(2)=$new_inisol" \ 51 $name_file $name_file.temp 52 53 # Rename the temporary file back to the original filename 54 mv $name_file.temp $name_file 55 $name_file $name_file 55 56 56 57 echo "In \"$name_file\":"
Note: See TracChangeset
for help on using the changeset viewer.