Line data Source code
1 : module mo_indprd
2 : use shr_kind_mod, only : r8 => shr_kind_r8
3 : private
4 : public :: indprd
5 : contains
6 0 : subroutine indprd( class, prod, nprod, y, extfrc, rxt, ncol )
7 : use chem_mods, only : gas_pcnst, extcnt, rxntot
8 : use ppgrid, only : pver
9 : implicit none
10 : !--------------------------------------------------------------------
11 : ! ... dummy arguments
12 : !--------------------------------------------------------------------
13 : integer, intent(in) :: class
14 : integer, intent(in) :: ncol
15 : integer, intent(in) :: nprod
16 : real(r8), intent(in) :: y(ncol,pver,gas_pcnst)
17 : real(r8), intent(in) :: rxt(ncol,pver,rxntot)
18 : real(r8), intent(in) :: extfrc(ncol,pver,extcnt)
19 : real(r8), intent(inout) :: prod(ncol,pver,nprod)
20 0 : end subroutine indprd
21 : end module mo_indprd
|