source: CONFIG/publications/ICOLMDZORINCA_CO2_Transport_GMD_2023/INCA/build/ppsrc/INCA_PP/adjrxt.f90 @ 6610

Last change on this file since 6610 was 6610, checked in by acosce, 9 months ago

INCA used for ICOLMDZORINCA_CO2_Transport_GMD_2023

File size: 2.1 KB
Line 
1
2
3
4
5
6
7
8
9
10
11
12                                                                       
13subroutine ADJRXT( rate, inv, m)                                       
14! Stacy Walters, NCAR, 1998.                                           
15                                                                       
16      use INCA_dim                                                     
17      implicit none                                                     
18                                                                       
19!--------------------------------------------------------------------   
20!       ... Dummy args                                                 
21!--------------------------------------------------------------------   
22      real, intent(in) ::      inv(PLNPLV,12)                         
23      real, intent(in) ::      m(PLNPLV)                               
24      real, intent(inout) ::   rate(PLNPLV,12)                     
25                                                                       
26!--------------------------------------------------------------------   
27!       ... Local variables                                             
28!--------------------------------------------------------------------   
29      real    ::  im(PLNPLV)                                           
30                                                                       
31      rate(:,  3) = rate(:,  3) * inv(:, 6)                             
32      rate(:,  5) = rate(:,  5) * inv(:, 6)                             
33      rate(:,  7) = rate(:,  7) * inv(:,10)                             
34      rate(:,  8) = rate(:,  8) * inv(:,10)                             
35      rate(:,  9) = rate(:,  9) * inv(:, 6)                             
36      rate(:, 10) = rate(:, 10) * inv(:,10)                             
37      rate(:, 11) = rate(:, 11) * inv(:,10)                             
38      rate(:, 12) = rate(:, 12) * inv(:,10)                             
39                                                                       
40      end subroutine ADJRXT                                             
Note: See TracBrowser for help on using the repository browser.