Ignore:
Timestamp:
Apr 27, 2022, 2:37:49 PM (3 years ago)
Author:
emillour
Message:

Mars GCM:
Fixed option to initialize chemistry in testphys1d (inichim_newstart call
arguments were wrong).
Turned inichim_newstart.F90 into a module.
EM

File:
1 edited

Legend:

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

    r2636 r2672  
     1module inichim_newstart_mod
     2
     3implicit none
     4
     5contains
     6
    17      subroutine inichim_newstart(ngrid, nq, pq, qsurf, ps, &
    28                                  flagh2o, flagthermo)
     
    4955! outputs :
    5056
    51       real,intent(out) :: pq(nbp_lon+1,nbp_lat,nbp_lev,nq)  ! advected fields, ie chemical species
     57      real,intent(inout) :: pq(nbp_lon+1,nbp_lat,nbp_lev,nq)  ! advected fields, ie chemical species
    5258      real,intent(out) :: qsurf(ngrid,nq)     ! surface values (kg/m2) of tracers
    5359
     
    810816      deallocate(vmrint)
    811817
    812       end
     818      end subroutine inichim_newstart
     819
     820end module inichim_newstart_mod
Note: See TracChangeset for help on using the changeset viewer.