Ignore:
Timestamp:
Jul 23, 2024, 3:29:36 PM (4 months ago)
Author:
abarral
Message:

Handle CPP_INLANDSIS in lmdz_cppkeys_wrapper.F90
Remove obsolete key wrgrads_thermcell, _ADV_HALO, _ADV_HALLO, isminmax
Remove redundant uses of CPPKEY_INCA (thanks acozic)
Remove obsolete misc/write_field.F90
Remove unused ioipsl_* wrappers
Remove calls to WriteField_u with wrong signature
Convert .F -> .[fF]90
(lint) uppercase fortran operators
[note: 1d and iso still broken - working on it]

Location:
LMDZ6/branches/Amaury_dev/libf/phylmd/StratAer
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/StratAer/nucleation_tstep_mod.F90

    r5101 r5103  
    135135
    136136
    137   !    Fortran 90 subroutine binapara
     137  !    Fortran 90 SUBROUTINE binapara
    138138
    139139  !    Calculates parametrized values of nucleation rate,
     
    299299     kinetic_n,kinetic_i)
    300300
    301   !    Fortran 90 subroutine newbinapara
     301  !    Fortran 90 SUBROUTINE newbinapara
    302302
    303303  !    Calculates parametrized values for neutral and ion-induced sulfuric acid-water particle formation rate
     
    614614     kinrhotresi=EXP(kinrhotresi) !1/cm3
    615615     
    616      IF (kinrhotresi<rhoali) kinetic_i=.true.
     616     IF (kinrhotresi<rhoali) kinetic_i=.TRUE.
    617617     
    618618     IF (kinetic_i) THEN   
  • LMDZ6/branches/Amaury_dev/libf/phylmd/StratAer/stratH2O_methox.F90

    r5101 r5103  
    3030  LOGICAL, INTENT(IN) :: debutphy   ! flag for first physiq step
    3131! Output variables
    32 ! tendency buffer used in add_phys_tend subroutine (in physiq_mod)
     32! tendency buffer used in add_phys_tend SUBROUTINE (in physiq_mod)
    3333  REAL, INTENT(INOUT), DIMENSION(klon,klev)  :: dq_ch4mmr
    3434 
  • LMDZ6/branches/Amaury_dev/libf/phylmd/StratAer/sulfate_aer_mod.F90

    r5101 r5103  
    7272!        include conversion from molec/cm3 to Pa
    7373!        ph2so4=solh2so4(temp,xa)*(1.38065e-16*temp)/10.
    74 !        print*,' ph2so4=',ph2so4,temp,R2SO4(ilon,ilev)
     74!        PRINT*,' ph2so4=',ph2so4,temp,R2SO4(ilon,ilev)
    7575!        good match with Martin, et Ayers, not with Gmitro (the famous 0.086)
    7676
     
    135135      (R2SO4B(ilon,ilev,IK)*1.e-2))**third
    136136
    137 !             print*,'R,Rwet(m),kelvin,h2so4(%),ro=',RRSI(ik),radwet,fkelvin, &
     137!             PRINT*,'R,Rwet(m),kelvin,h2so4(%),ro=',RRSI(ik),radwet,fkelvin, &
    138138!              &  R2SO4B(ilon,ilev,IK),DENSO4B(ilon,ilev,IK)
    139 !             print*,' equil.h2so4(molec/cm3), &
     139!             PRINT*,' equil.h2so4(molec/cm3), &
    140140!              & sigma',solh2so4(temp,xa),surftension(temp,xa)
    141141
     
    830830         psh2o_out=100.*exp(psh2o_out)
    831831      end if
    832 !      print*,psh2o_out
     832!      PRINT*,psh2o_out
    833833     
    834834       return
     
    993993!        h2so4 weight precent
    994994         wph2so4_out = 9800.*sulfmolal/(98.*sulfmolal+1000.)
    995 !         print*,rh,pph2o,psh2o(T),vpice(T)
    996 !         print*,T,aw,sulfmolal,wph2so4_out
     995!         PRINT*,rh,pph2o,psh2o(T),vpice(T)
     996!         PRINT*,T,aw,sulfmolal,wph2so4_out
    997997         wph2so4_out = max(wph2so4_out,15.)
    998998         wph2so4_out = min(wph2so4_out,99.999)
Note: See TracChangeset for help on using the changeset viewer.