- Timestamp:
- Jul 18, 2025, 6:36:32 PM (3 days ago)
- Location:
- trunk/LMDZ.COMMON/libf/evolution
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/changelog.txt
r3859 r3860 752 752 == 18/07/2025 == JBC 753 753 Setting up an automatic selection of the XIOS output file for the PEM according to the number of slopes. 754 755 == 18/07/2025 == JBC 756 - Correction of "visu_evol_layering.py" to compute Lsp variations. 757 - Few cleanings to open files throughout the PEM. -
trunk/LMDZ.COMMON/libf/evolution/conf_pem.F90
r3821 r3860 43 43 44 44 ! #---------- Martian years parameters from launching script 45 open(100,file = 'info_PEM.txt',status = 'old',form = 'formatted', iostat = ierr)45 open(100,file = 'info_PEM.txt',status = 'old',form = 'formatted',action = 'read',iostat = ierr) 46 46 if (ierr /= 0) then 47 47 write(*,*) 'Cannot find required file "info_PEM.txt"!' -
trunk/LMDZ.COMMON/libf/evolution/deftank/visu_evol_layering.py
r3851 r3860 969 969 970 970 eccentricity = (aphelion - perihelion) / (aphelion + perihelion) 971 ls_perihelion = mars_ls( 972 date_peri_day, 973 date_peri_day, 974 eccentricity, 975 year_day 976 ) 971 ls_perihelion = mars_ls(date_peri_day,0.,eccentricity,year_day) 977 972 978 973 return dates_yr, obliquity, eccentricity, ls_perihelion -
trunk/LMDZ.COMMON/libf/evolution/lask_param_mod.F90
r3571 r3860 29 29 30 30 nlask = 0 31 open(1,file = 'obl_ecc_lsp.asc' )31 open(1,file = 'obl_ecc_lsp.asc',status = 'old',action = 'read') 32 32 do 33 33 read(1,*,iostat = ierr) -
trunk/LMDZ.COMMON/libf/evolution/orbit_param_criterion_mod.F90
r3791 r3860 75 75 76 76 ! We read the file 77 open(73,file = 'obl_ecc_lsp.asc' )77 open(73,file = 'obl_ecc_lsp.asc',status = 'old',action = 'read') 78 78 last_ilask = 0 79 79 do ilask = 1,size(yearlask,1) -
trunk/LMDZ.COMMON/libf/evolution/writediagpem.F90
r3603 r3860 130 130 !$OMP MASTER 131 131 ! Open diagpem.def definition file if there is one: 132 open(99,file="diagpem.def",status='old',form='formatted', iostat=ierr2)132 open(99,file="diagpem.def",status='old',form='formatted',action = 'read',iostat=ierr2) 133 133 134 134 if (ierr2 == 0) then
Note: See TracChangeset
for help on using the changeset viewer.