Changeset 1926 for trunk/LMDZ.TITAN/libf/muphytitan/mmp_gcm.f90
- Timestamp:
- May 28, 2018, 11:47:03 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.TITAN/libf/muphytitan/mmp_gcm.f90
r1897 r1926 93 93 INTEGER :: i 94 94 TYPE(cfgparser) :: cparser 95 CHARACTER(len=st_slen) :: spcpath,pssfile,mqfile 95 CHARACTER(len=st_slen) :: spcpath,pssfile,mqfile,opt_file 96 96 CHARACTER(len=st_slen), DIMENSION(:), ALLOCATABLE :: species 97 97 REAL(kind=mm_wp), DIMENSION(:), ALLOCATABLE :: tmp … … 138 138 err = mm_check_opt(cfg_get_value(cparser,"haze_coag_interactions",coag_choice),coag_choice,7,mm_log) 139 139 140 ! optic look-up table file path. 141 mmp_optic_file = '' 142 opt_file = '' 143 err = mm_check_opt(cfg_get_value(cparser,"optics/optic_file",opt_file),opt_file,'',mm_log) 144 IF (err /= 0) THEN 145 WRITE(*,'(a)') "Warning: I was unable to retrieve the path of the optic look-up table file:" 146 WRITE(*,'(a)') " The GCM may abort if it uses YAMMS optical properties calculation module !" 147 ELSE 148 mmp_optic_file = TRIM(opt_file) 149 ENDIF 150 140 151 ! Retrieve clouds species configuration file 141 152 spcpath = ''
Note: See TracChangeset
for help on using the changeset viewer.