Ignore:
Timestamp:
Oct 18, 2018, 9:59:39 AM (7 years ago)
Author:
flefevre
Message:

Suppression de l'ancien code photochimique (euler-backward)

Location:
trunk/LMDZ.MARS/libf/aeronomars
Files:
1 deleted
3 moved

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/aeronomars/calchim.F90

    r2006 r2007  
    1       subroutine calchim_asis(ngrid,nlayer,nq,                              &
     1      subroutine calchim(ngrid,nlayer,nq,                                   &
    22                         ptimestep,pplay,pplev,pt,pdt,dist_sol,mu0,         &
    33                         zzlev,zzlay,zday,pq,pdq,dqchim,dqschim,dqcloud,    &
     
    658658         if (photochem) then
    659659
    660             call photochemistry_asis(nlayer,nq,                       &
     660            call photochemistry(nlayer,nq,                            &
    661661                                ig,lswitch,zycol,szacol,ptimestep,    &
    662662                                zpress,ztemp,zdens,zmmean,dist_sol,   &
  • trunk/LMDZ.MARS/libf/aeronomars/photochemistry.F90

    r2006 r2007  
    1313!*****************************************************************
    1414
    15 subroutine photochemistry_asis(nlayer, nq,                            &
     15subroutine photochemistry(nlayer, nq,                                 &
    1616                          ig, lswitch, zycol, sza, ptimestep, press,  &
    1717                          temp, dens, zmmean, dist_sol, surfdust1d,   &
     
    141141!===================================================================
    142142
    143 call photolysis_asis(nlayer, lswitch, press, temp, sza, tau, zmmean, dist_sol, &
    144                      rm(:,i_co2), rm(:,i_o3), v_phot)
     143call photolysis(nlayer, lswitch, press, temp, sza, tau, zmmean, dist_sol, &
     144                rm(:,i_co2), rm(:,i_o3), v_phot)
    145145
    146146! save o3 photolysis for output
     
    226226   call dgesv(nesp,1,mat,nesp,indx,cnew,nesp,code)
    227227#else
    228    write(*,*) "photochemistry_asis error, missing LAPACK routine dgesv"
     228   write(*,*) "photochemistry error, missing LAPACK routine dgesv"
    229229   stop
    230230#endif
     
    345345      call dgesv(nesp,1,mat,nesp,indx,cnew,nesp,code)
    346346#else
    347    write(*,*) "photochemistry_asis error, missing LAPACK routine dgesv"
     347   write(*,*) "photochemistry error, missing LAPACK routine dgesv"
    348348   stop
    349349#endif
     
    18501850      end subroutine chimtogcm
    18511851
    1852 end subroutine photochemistry_asis
    1853 
     1852end subroutine photochemistry
     1853
  • trunk/LMDZ.MARS/libf/aeronomars/photolysis.F90

    r2006 r2007  
    11!==========================================================================
    22
    3       subroutine photolysis_asis(nlayer,                              &
    4                                  lswitch, press, temp, sza, tauref,   &
    5                                  zmmean, dist_sol, rmco2, rmo3, v_phot)
     3      subroutine photolysis(nlayer,                              &
     4                            lswitch, press, temp, sza, tauref,   &
     5                            zmmean, dist_sol, rmco2, rmo3, v_phot)
    66
    77!==========================================================================
Note: See TracChangeset for help on using the changeset viewer.