Changeset 3370 for trunk/LMDZ.GENERIC
- Timestamp:
- Jun 12, 2024, 1:34:30 PM (6 months ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/changelog.txt
r3364 r3370 1961 1961 Added dt_gm (Gent-McWilliams) in the calculation for fluxgrdocean (GND) and in 1962 1962 ocean_slab_get_vars. 1963 1964 == 12/06/2024 == YJ 1965 Change directory path for photochem stellar spectra 1966 Just to organize datagcm 1967 Now in datagcm/stellar_spectra/photochem_stellar_spectra/ -
trunk/LMDZ.GENERIC/libf/aeronostd/photolysis_mod.F90
r3309 r3370 509 509 ! look for a " stellarflux= ..." option in def files 510 510 write(*,*) "Input stellar spectra files for photolysis online is:" 511 stellarflux = " Claire_SunModern_tuv.txt" ! default511 stellarflux = "Sun_Claire2012_0.0Ga.txt" ! default 512 512 call getin_p("stellarflux",stellarflux) ! default path 513 513 write(*,*) " stellarflux = ",trim(stellarflux) … … 515 515 516 516 ! Opening file 517 fil = trim(datadir)//'/stellar_spectra/ '//stellarflux517 fil = trim(datadir)//'/stellar_spectra/photochem_stellar_spectra/'//stellarflux 518 518 print*, 'solar flux : ', fil 519 519 OPEN(UNIT=kin,FILE=fil,STATUS='old',iostat=ierr) … … 521 521 if (ierr /= 0) THEN 522 522 write(*,*)'Error : cannot open stellarflux file ', trim(stellarflux) 523 write(*,*)'It should be in :',trim(datadir),'/stellar_spectra/ '523 write(*,*)'It should be in :',trim(datadir),'/stellar_spectra/photochem_stellar_spectra/' 524 524 write(*,*)'1) You can change the data directory in callphys.def' 525 525 write(*,*)' with:'
Note: See TracChangeset
for help on using the changeset viewer.