Changeset 3119
- Timestamp:
- Nov 9, 2023, 9:41:47 AM (13 months ago)
- Location:
- trunk/LMDZ.MARS/util
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/util/aeroptical.F90
r2904 r3119 170 170 171 171 ! Read next line 172 read(*,*,iostat=read_ok) name_aer(naerkind+1),mmrname_aer(naerkind+1),reffname_aer(naerkind+1),rho_aer(naerkind+1),optpropfile_aer(naerkind+1) 172 read(*,*,iostat=read_ok) name_aer(naerkind+1),mmrname_aer(naerkind+1),& 173 reffname_aer(naerkind+1),rho_aer(naerkind+1),optpropfile_aer(naerkind+1) 173 174 enddo 174 175 … … 1474 1475 ! 3.2 CASE 2: try to use the GCM altitude dimension 1475 1476 !========================================================================= 1476 IF (is_zlev.eq..false.) THEN 1477 ! (mjw) IF (is_zlev.eq..false.) THEN 1478 IF (is_zlev.eqv..false.) THEN 1477 1479 ! Get the field in GCM file 1478 1480 ierr=nf90_inq_varid(gcmfid,"altitude",tmpvarid) -
trunk/LMDZ.MARS/util/simu_MCS.F90
r2979 r3119 1651 1651 ! Compute optical depths where both GCM and OBS have non-missing values 1652 1652 ! (especially above the highest (in altitude) of the lowest (in altitude) valid values in the GCM and Observer profile) 1653 IF ((out_dztau(i,j,k,l).ne.OBSmiss_val).and.(OBS_dztau(i,j,k,l).ne.OBSmiss_val).and.(OBS_temp(i,j,k,l).ne.OBSmiss_val)) then 1653 IF ((out_dztau(i,j,k,l).ne.OBSmiss_val).and.& 1654 (OBS_dztau(i,j,k,l).ne.OBSmiss_val).and.& 1655 (OBS_temp(i,j,k,l).ne.OBSmiss_val)) then 1654 1656 OBS_rho = OBSalt(k) / (r_atm*OBS_temp(i,j,k,l)) 1655 1657
Note: See TracChangeset
for help on using the changeset viewer.