Changeset 3119


Ignore:
Timestamp:
Nov 9, 2023, 9:41:47 AM (13 months ago)
Author:
mwolff
Message:

Small updates to aeroptical and simu_MCS (in LMDZ.MARS/util) to make
Mac OSX gfortran happy.

Location:
trunk/LMDZ.MARS/util
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/util/aeroptical.F90

    r2904 r3119  
    170170
    171171  ! 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)
    173174enddo
    174175
     
    14741475! 3.2 CASE 2: try to use the GCM altitude dimension
    14751476!=========================================================================
    1476   IF (is_zlev.eq..false.) THEN
     1477! (mjw)  IF (is_zlev.eq..false.) THEN
     1478  IF (is_zlev.eqv..false.) THEN
    14771479    ! Get the field in GCM file
    14781480    ierr=nf90_inq_varid(gcmfid,"altitude",tmpvarid)
  • trunk/LMDZ.MARS/util/simu_MCS.F90

    r2979 r3119  
    16511651          ! Compute optical depths where both GCM and OBS have non-missing values
    16521652          ! (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
    16541656            OBS_rho = OBSalt(k) / (r_atm*OBS_temp(i,j,k,l))
    16551657           
Note: See TracChangeset for help on using the changeset viewer.