[135] | 1 | !Mars importe directement de la version martienne |
---|
| 2 | subroutine groupeun(jjmax,llmax,q) |
---|
| 3 | implicit none |
---|
| 4 | |
---|
| 5 | c ********************************************************* |
---|
| 6 | c lissage fort des champs aux poles pour permettre |
---|
| 7 | c de tourner avec plafond haut. |
---|
| 8 | c F. Hourdin, 1997. |
---|
| 9 | c (commentaire et test sur ngroup par Francois Forget, 05/2000) |
---|
| 10 | c |
---|
| 11 | c Technique : |
---|
| 12 | c |
---|
| 13 | c 1) Les points sont regroupes par paquet de 2**ngroup |
---|
| 14 | c aux poles (e.g. ngroup=3 -> paquet de 8), puis 2**(ngroup-1) |
---|
| 15 | c 2**(ngroup-2), etc... aux latitude plus basse en s'eloignant du pole |
---|
| 16 | c |
---|
| 17 | c 2) Plus ngroup est eleve, plus le lissage est efficace |
---|
| 18 | c |
---|
| 19 | c 3) MAIS, il faut iim divisible par 2**ngroup !!! |
---|
| 20 | c |
---|
| 21 | c |
---|
| 22 | c ********************************************************* |
---|
| 23 | |
---|
| 24 | #include "dimensions.h" |
---|
| 25 | #include "paramet.h" |
---|
| 26 | #include "comconst.h" |
---|
| 27 | #include "comgeom2.h" |
---|
| 28 | |
---|
| 29 | integer jjmax,llmax |
---|
| 30 | real q(iip1,jjmax,llmax) |
---|
| 31 | |
---|
| 32 | integer ngroup |
---|
| 33 | parameter (ngroup=2) |
---|
| 34 | |
---|
| 35 | logical intensive |
---|
| 36 | |
---|
| 37 | real airen,airecn,qn |
---|
| 38 | real aires,airecs,qs |
---|
| 39 | |
---|
| 40 | integer i,j,l,ig,j1,j2,i0,jd |
---|
| 41 | logical firstcall |
---|
| 42 | DATA firstcall/.true./ |
---|
| 43 | |
---|
| 44 | c ------------------------------------------------------- |
---|
| 45 | c test sur ngroup : |
---|
| 46 | |
---|
| 47 | if (firstcall) then |
---|
| 48 | IF(MOD(iim,2**ngroup).NE.0) then |
---|
| 49 | write(*,*) 'Problem in groupeun.F' |
---|
| 50 | write(*,*) 'iim= ', iim, ' ngroup=', ngroup |
---|
| 51 | write(*,*) 'iim must be divisible by par 2**ngroup= ', |
---|
| 52 | & 2**ngroup |
---|
| 53 | write(*,*) ' YOU must change ngroup in groupeun.F' |
---|
| 54 | write(*,*) ' Have fun... ' |
---|
| 55 | stop |
---|
| 56 | END IF |
---|
| 57 | write(*,*) 'in groupeun.F, ngroup=', ngroup |
---|
| 58 | firstcall = .false. |
---|
| 59 | end if |
---|
| 60 | |
---|
| 61 | |
---|
| 62 | c Champs 3D |
---|
| 63 | intensive=.true. |
---|
| 64 | if (intensive) then |
---|
| 65 | jd=jjp1-jjmax |
---|
| 66 | do l=1,llmax |
---|
| 67 | j1=1+jd |
---|
| 68 | j2=2 |
---|
| 69 | do ig=1,ngroup |
---|
| 70 | do j=j1-jd,j2-jd |
---|
| 71 | c print*,'groupe ',ig,' j= ',j,2**(ngroup-ig+1),'pts groupes' |
---|
| 72 | do i0=1,iim,2**(ngroup-ig+1) |
---|
| 73 | airen=0. |
---|
| 74 | airecn=0. |
---|
| 75 | qn=0. |
---|
| 76 | aires=0. |
---|
| 77 | airecs=0. |
---|
| 78 | qs=0. |
---|
| 79 | do i=i0,i0+2**(ngroup-ig+1)-1 |
---|
| 80 | airen=airen+aire(i,j) |
---|
| 81 | aires=aires+aire(i,jjp1-j+1) |
---|
| 82 | qn=qn+q(i,j,l)*aire(i,j) |
---|
| 83 | qs=qs+q(i,jjp1-j+1-jd,l)*aire(i,jjp1-j+1) |
---|
| 84 | enddo |
---|
| 85 | airecn=0. |
---|
| 86 | airecs=0. |
---|
| 87 | do i=i0,i0+2**(ngroup-ig+1)-1 |
---|
| 88 | q(i,j,l)=qn/airen |
---|
| 89 | q(i,jjp1-j+1-jd,l)=qs/aires |
---|
| 90 | enddo |
---|
| 91 | enddo |
---|
| 92 | q(iip1,j,l)=q(1,j,l) |
---|
| 93 | q(iip1,jjp1-j+1-jd,l)=q(1,jjp1-j+1-jd,l) |
---|
| 94 | enddo |
---|
| 95 | j1=j2+1 |
---|
| 96 | j2=j2+2**ig |
---|
| 97 | enddo |
---|
| 98 | enddo |
---|
| 99 | |
---|
| 100 | c --------------- |
---|
| 101 | else |
---|
| 102 | c Cas sans multiplication par les aires. |
---|
| 103 | c --------------- |
---|
| 104 | |
---|
| 105 | jd=jjp1-jjmax |
---|
| 106 | do l=1,llmax |
---|
| 107 | j1=1+jd |
---|
| 108 | j2=2 |
---|
| 109 | do ig=1,ngroup |
---|
| 110 | do j=j1-jd,j2-jd |
---|
| 111 | c print*,'groupe ',ig,' j= ',j,2**(ngroup-ig+1),'pts groupes' |
---|
| 112 | do i0=1,iim,2**(ngroup-ig+1) |
---|
| 113 | airen=0. |
---|
| 114 | airecn=0. |
---|
| 115 | qn=0. |
---|
| 116 | aires=0. |
---|
| 117 | airecs=0. |
---|
| 118 | qs=0. |
---|
| 119 | do i=i0,i0+2**(ngroup-ig+1)-1 |
---|
| 120 | airen=airen+aire(i,j) |
---|
| 121 | aires=aires+aire(i,jjp1-j+1) |
---|
| 122 | qn=qn+q(i,j,l) |
---|
| 123 | qs=qs+q(i,jjp1-j+1-jd,l) |
---|
| 124 | enddo |
---|
| 125 | airecn=0. |
---|
| 126 | airecs=0. |
---|
| 127 | do i=i0,i0+2**(ngroup-ig+1)-1 |
---|
| 128 | q(i,j,l)=qn*aire(i,j)/airen |
---|
| 129 | q(i,jjp1-j+1-jd,l)=qs*aire(i,jjp1-j+1)/aires |
---|
| 130 | enddo |
---|
| 131 | enddo |
---|
| 132 | q(iip1,j,l)=q(1,j,l) |
---|
| 133 | q(iip1,jjp1-j+1-jd,l)=q(1,jjp1-j+1-jd,l) |
---|
| 134 | enddo |
---|
| 135 | j1=j2+1 |
---|
| 136 | j2=j2+2**ig |
---|
| 137 | enddo |
---|
| 138 | enddo |
---|
| 139 | |
---|
| 140 | endif |
---|
| 141 | |
---|
| 142 | c print*,'On groupe jusque j=',j1-1,rlatu(j1-1)*180./pi |
---|
| 143 | |
---|
| 144 | return |
---|
| 145 | end |
---|