/[lmdze]/trunk/dyn3d/dteta1.f
ViewVC logotype

Diff of /trunk/dyn3d/dteta1.f

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/libf/dyn3d/dteta1.f revision 3 by guez, Wed Feb 27 13:16:39 2008 UTC trunk/dyn3d/dteta1.f revision 107 by guez, Thu Sep 11 15:09:15 2014 UTC
# Line 1  Line 1 
1  !  module dteta1_m
 ! $Header: /home/cvsroot/LMDZ4/libf/dyn3d/dteta1.F,v 1.1.1.1 2004/05/19 12:53:06 lmdzadmin Exp $  
 !  
       SUBROUTINE dteta1 ( teta, pbaru, pbarv, dteta)  
       use dimens_m  
       use paramet_m  
       use logic  
       IMPLICIT NONE  
2    
3  c=======================================================================    IMPLICIT NONE
 c  
 c   Auteur:  P. Le Van  
 c   -------  
 c Modif F.Forget 03/94 (on retire q et dq  pour construire dteta1)  
 c  
 c   ********************************************************************  
 c   ... calcul du terme de convergence horizontale du flux d'enthalpie  
 c        potentielle   ......  
 c   ********************************************************************  
 c  .. teta,pbaru et pbarv sont des arguments d'entree  pour le s-pg ....  
 c     dteta               sont des arguments de sortie pour le s-pg ....  
 c  
 c=======================================================================  
4    
5    contains
6    
7      SUBROUTINE dteta1(teta, pbaru, pbarv, dteta)
8    
9        REAL teta( ip1jmp1,llm ),pbaru( ip1jmp1,llm ),pbarv( ip1jm,llm)      ! From LMDZ4/libf/dyn3d/dteta1.F, version 1.1.1.1, 2004/05/19 12:53:06
10        REAL dteta( ip1jmp1,llm )      ! Authors: P. Le Van, F. Forget
       INTEGER   l,ij  
11    
12        REAL hbyv( ip1jm,llm ), hbxu( ip1jmp1,llm )      ! Calcul du terme de convergence horizontale du flux d'enthalpie
13        ! potentielle.
14    
15  c      USE dimens_m, ONLY: iim, jjm, llm
16        USE paramet_m, ONLY: iip1, iip2, ip1jm, ip1jmp1, jjp1
17        USE filtreg_m, ONLY: filtreg
18    
19        DO 5 l = 1,llm      REAL, intent(in):: teta(ip1jmp1, llm)
20        REAL, intent(in):: pbaru(ip1jmp1, llm), pbarv(ip1jm, llm)
21        REAL, intent(out):: dteta(iim + 1, jjm + 1, llm)
22    
23        DO 1  ij = iip2, ip1jm - 1      ! Local:
24        hbxu(ij,l) = pbaru(ij,l) * 0.5 * ( teta(ij,l) + teta(ij+1,l) )      INTEGER l, ij
25     1  CONTINUE      REAL hbyv(ip1jm, llm), hbxu(ip1jmp1, llm)
26    
27  c    .... correction pour  hbxu(iip1,j,l)  .....      !----------------------------------------------------------------
 c    ....   hbxu(iip1,j,l)= hbxu(1,j,l) ....  
28    
29  CDIR$ IVDEP      DO l = 1, llm
30        DO 2 ij = iip1+ iip1, ip1jm, iip1         DO ij = iip2, ip1jm - 1
31        hbxu( ij, l ) = hbxu( ij - iim, l )            hbxu(ij, l) = pbaru(ij, l) * 0.5 * (teta(ij, l) + teta(ij + 1, l))
32     2  CONTINUE         end DO
33    
34           DO ij = iip1+ iip1, ip1jm, iip1
35              hbxu(ij, l) = hbxu(ij - iim, l)
36           end DO
37    
38        DO 3 ij = 1,ip1jm         DO ij = 1, ip1jm
39        hbyv(ij,l)= pbarv(ij, l)* 0.5 * ( teta(ij, l)+ teta(ij +iip1,l) )            hbyv(ij, l)= pbarv(ij, l) * 0.5 * (teta(ij, l) + teta(ij + iip1, l))
40     3  CONTINUE         end DO
41        end DO
42    
43     5  CONTINUE      CALL convflu(hbxu, hbyv, llm, dteta)
44    
45        ! stockage dans dh de la convergence horizontale filtrée du flux
46        ! d'enthalpie potentielle
47        CALL filtreg(dteta, direct = .true., intensive = .false.)
48    
49          CALL  convflu ( hbxu, hbyv, llm, dteta )    END SUBROUTINE dteta1
50    
51    end module dteta1_m
 c    stockage dans  dh de la convergence horizont. filtree' du  flux  
 c                  ....                           ...........  
 c           d'enthalpie potentielle .  
   
       CALL filtreg( dteta, jjp1, llm, 2, 2, .true., 1)  
   
 c  
       RETURN  
       END  

Legend:
Removed from v.3  
changed lines
  Added in v.107

  ViewVC Help
Powered by ViewVC 1.1.21