[135] | 1 | SUBROUTINE callsedim(ngrid,nlay, ptimestep, |
---|
| 2 | $ pplev,zlev, pt, |
---|
[253] | 3 | & pq, pdqfi, pdqsed,pdqs_sed,nq,rfall) |
---|
[787] | 4 | |
---|
| 5 | USE tracer_h |
---|
| 6 | |
---|
[135] | 7 | IMPLICIT NONE |
---|
| 8 | |
---|
| 9 | !================================================================== |
---|
| 10 | ! |
---|
| 11 | ! Purpose |
---|
| 12 | ! ------- |
---|
| 13 | ! Calculates sedimentation of aerosols depending on their |
---|
| 14 | ! density and radius. |
---|
| 15 | ! |
---|
| 16 | ! Authors |
---|
| 17 | ! ------- |
---|
| 18 | ! F. Forget (1999) |
---|
| 19 | ! Tracer generalisation by E. Millour (2009) |
---|
| 20 | ! |
---|
| 21 | !================================================================== |
---|
| 22 | |
---|
| 23 | c----------------------------------------------------------------------- |
---|
| 24 | c declarations: |
---|
| 25 | c ------------- |
---|
| 26 | |
---|
| 27 | #include "dimensions.h" |
---|
| 28 | #include "dimphys.h" |
---|
| 29 | #include "comcstfi.h" |
---|
| 30 | #include "callkeys.h" |
---|
| 31 | |
---|
| 32 | c arguments: |
---|
| 33 | c ---------- |
---|
| 34 | |
---|
| 35 | INTEGER ngrid ! number of horizontal grid points |
---|
| 36 | INTEGER nlay ! number of atmospheric layers |
---|
| 37 | REAL ptimestep ! physics time step (s) |
---|
| 38 | REAL pplev(ngrid,nlay+1) ! pressure at inter-layers (Pa) |
---|
| 39 | REAL pt(ngrid,nlay) ! temperature at mid-layer (K) |
---|
| 40 | REAL zlev(ngrid,nlay+1) ! altitude at layer boundaries |
---|
| 41 | |
---|
| 42 | |
---|
| 43 | c Traceurs : |
---|
| 44 | integer nq ! number of tracers |
---|
| 45 | real pq(ngrid,nlay,nq) ! tracers (kg/kg) |
---|
| 46 | real pdqfi(ngrid,nlay,nq) ! tendency before sedimentation (kg/kg.s-1) |
---|
| 47 | real pdqsed(ngrid,nlay,nq) ! tendency due to sedimentation (kg/kg.s-1) |
---|
| 48 | real pdqs_sed(ngrid,nq) ! flux at surface (kg.m-2.s-1) |
---|
| 49 | |
---|
| 50 | c local: |
---|
| 51 | c ------ |
---|
| 52 | |
---|
| 53 | INTEGER l,ig, iq |
---|
| 54 | |
---|
[787] | 55 | real zqi(ngrid,nlayermx,nq) ! to locally store tracers |
---|
| 56 | real masse (ngrid,nlayermx) ! Layer mass (kg.m-2) |
---|
| 57 | real epaisseur (ngrid,nlayermx) ! Layer thickness (m) |
---|
| 58 | real wq(ngrid,nlayermx+1) ! displaced tracer mass (kg.m-2) |
---|
| 59 | c real dens(ngrid,nlayermx) ! Mean density of the ice part. accounting for dust core |
---|
| 60 | real rfall(ngrid,nlayermx) |
---|
[135] | 61 | |
---|
| 62 | |
---|
| 63 | LOGICAL firstcall |
---|
| 64 | SAVE firstcall |
---|
| 65 | DATA firstcall/.true./ |
---|
| 66 | |
---|
| 67 | c ** un petit test de coherence |
---|
| 68 | c -------------------------- |
---|
| 69 | |
---|
| 70 | IF (firstcall) THEN |
---|
| 71 | firstcall=.false. |
---|
| 72 | ENDIF ! of IF (firstcall) |
---|
[486] | 73 | |
---|
[135] | 74 | !======================================================================= |
---|
| 75 | ! Preliminary calculation of the layer characteristics |
---|
| 76 | ! (mass (kg.m-2), thickness (m), etc. |
---|
| 77 | |
---|
| 78 | do l=1,nlay |
---|
| 79 | do ig=1, ngrid |
---|
| 80 | masse(ig,l)=(pplev(ig,l) - pplev(ig,l+1)) /g |
---|
| 81 | epaisseur(ig,l)= zlev(ig,l+1) - zlev(ig,l) |
---|
| 82 | end do |
---|
| 83 | end do |
---|
| 84 | |
---|
[486] | 85 | !====================================================================== |
---|
| 86 | ! Calculate the transport due to sedimentation for each tracer |
---|
| 87 | ! [This has been rearranged by L. Kerber to allow the sedimentation |
---|
| 88 | ! of general tracers.] |
---|
| 89 | |
---|
[787] | 90 | zqi(1:ngrid,1:nlay,1:nq) = 0. |
---|
[486] | 91 | do iq=1,nq |
---|
| 92 | if((radius(iq).gt.1.e-9).and.(iq.ne.igcm_co2_ice)) then |
---|
| 93 | ! (no sedim for gases; co2_ice sedim is done elsewhere) |
---|
[135] | 94 | |
---|
[486] | 95 | ! store locally updated tracers |
---|
[135] | 96 | |
---|
[486] | 97 | do l=1,nlay |
---|
[787] | 98 | do ig=1, ngrid |
---|
[486] | 99 | zqi(ig,l,iq)=pq(ig,l,iq)+pdqfi(ig,l,iq)*ptimestep |
---|
[135] | 100 | enddo |
---|
| 101 | enddo ! of do l=1,nlay |
---|
[486] | 102 | |
---|
| 103 | !====================================================================== |
---|
| 104 | ! Sedimentation |
---|
| 105 | !====================================================================== |
---|
| 106 | ! Water |
---|
| 107 | if (water.and.(iq.eq.igcm_h2o_ice)) then |
---|
| 108 | call newsedim(ngrid,nlay,ngrid*nlay,ptimestep, |
---|
| 109 | & pplev,masse,epaisseur,pt,rfall,rho_q(iq),zqi,wq) |
---|
[135] | 110 | |
---|
[486] | 111 | ! General Case |
---|
| 112 | else |
---|
| 113 | call newsedim(ngrid,nlay,1,ptimestep, |
---|
| 114 | & pplev,masse,epaisseur,pt,radius(iq),rho_q(iq), |
---|
| 115 | & zqi,wq) |
---|
| 116 | endif |
---|
[253] | 117 | |
---|
[135] | 118 | !======================================================================= |
---|
| 119 | ! Calculate the tendencies |
---|
[486] | 120 | !====================================================================== |
---|
[135] | 121 | |
---|
[787] | 122 | do ig=1,ngrid |
---|
[135] | 123 | ! Ehouarn: with new way of tracking tracers by name, this is simply |
---|
[486] | 124 | pdqs_sed(ig,iq) = wq(ig,1)/ptimestep |
---|
[135] | 125 | end do |
---|
| 126 | |
---|
| 127 | DO l = 1, nlay |
---|
| 128 | DO ig=1,ngrid |
---|
[486] | 129 | pdqsed(ig,l,iq)=(zqi(ig,l,iq)- |
---|
| 130 | & (pq(ig,l,iq) + pdqfi(ig,l,iq)*ptimestep))/ptimestep |
---|
[135] | 131 | ENDDO |
---|
| 132 | ENDDO |
---|
[486] | 133 | endif ! of no gases no co2_ice |
---|
| 134 | enddo ! of do iq=1,nq |
---|
[253] | 135 | return |
---|
| 136 | end |
---|