source: trunk/LMDZ.COMMON/libf/dyn3dpar/dteta1_p.F @ 1243

Last change on this file since 1243 was 1019, checked in by emillour, 11 years ago

Common dynamics; keep up with updates (seq and ) in LMDZ5 (up tio rev 1845):

  • General stuff:
  • makelmdz_fcm: add options -j # (compile using # threads) and -full, and to keep up

with Earth model, possibility to compile with various versions of orchidee

  • bld.cfg: adaptations to enable compiling using multiple threads
  • build_gcm: adaptations to enable compiling using multiple threads
  • makelmdz: keep up with Earth model: possibility to compile with various versions of orchidee + cosmetic changes + library directory name change
  • bibio:
  • wxios.F90 : Added for possible future use of XIOS library
  • filtrez:
  • mkl_dft_type.f90 & mkl_dfti.f90 : MKL (for MKL FFT) interface definitions
  • filtreg_mod : limit use of FFT to parallel mode
  • mod_filtre_fft.F90 & mod_filtre_fft_lov.F90 : swich to use parallel_lmdz
  • dyn3d:
  • abort_gcm.F : add things for xios
  • advtrac.F90 : minor change in CFL outputs
  • ce0l.F90 : indicesol.h is now module indice_sol_mod
  • comvert.h : cosmetic change on comments
  • gcm.F : add xios and use module indice_sol_mod (for INCA)
  • inigeom.F : move two computations outside loop
  • dyn3dpar:
  • parallel.F90 => parallel_lmdz.F90 : and change all the "use parallel" into "use parallel_lmdz" in all files in dyn3dpar
  • comvert.h : cosmetic change on comments
  • gcm.F : add xios and use module indice_sol_mod (for INCA)
  • leapfrog_p.F : add xios + correction for times in Newtonian case
  • ce0l.F90 : indicesol.h is now module indice_sol_mod
  • inigeom.F : move two computations outside loop

EM

File size: 2.2 KB
Line 
1      SUBROUTINE dteta1_p ( teta, pbaru, pbarv, dteta)
2      USE parallel_lmdz
3      USE write_field_p
4      IMPLICIT NONE
5
6c=======================================================================
7c
8c   Auteur:  P. Le Van
9c   -------
10c Modif F.Forget 03/94 (on retire q et dq  pour construire dteta1)
11c
12c   ********************************************************************
13c   ... calcul du terme de convergence horizontale du flux d'enthalpie
14c        potentielle   ......
15c   ********************************************************************
16c  .. teta,pbaru et pbarv sont des arguments d'entree  pour le s-pg ....
17c     dteta               sont des arguments de sortie pour le s-pg ....
18c
19c=======================================================================
20
21
22#include "dimensions.h"
23#include "paramet.h"
24#include "logic.h"
25
26      REAL teta( ip1jmp1,llm ),pbaru( ip1jmp1,llm ),pbarv( ip1jm,llm)
27      REAL dteta( ip1jmp1,llm )
28      INTEGER   l,ij
29
30      REAL hbyv( ip1jm,llm ), hbxu( ip1jmp1,llm )
31
32c
33      INTEGER ijb,ije,jjb,jje
34
35     
36      jjb=jj_begin
37      jje=jj_end
38
39c$OMP DO SCHEDULE(STATIC,OMP_CHUNK)   
40      DO 5 l = 1,llm
41     
42      ijb=ij_begin
43      ije=ij_end
44     
45      if (pole_nord) ijb=ij_begin+iip1
46      if (pole_sud)  ije=ij_end-iip1
47     
48      DO 1  ij = ijb, ije - 1
49        hbxu(ij,l) = pbaru(ij,l) * 0.5 * ( teta(ij,l)+teta(ij+1,l) )
50   1  CONTINUE
51
52c    .... correction pour  hbxu(iip1,j,l)  .....
53c    ....   hbxu(iip1,j,l)= hbxu(1,j,l) ....
54
55CDIR$ IVDEP
56      DO 2 ij = ijb+iip1-1, ije, iip1
57        hbxu( ij, l ) = hbxu( ij - iim, l )
58   2  CONTINUE
59
60      ijb=ij_begin-iip1
61      if (pole_nord) ijb=ij_begin
62     
63      DO 3 ij = ijb,ije
64        hbyv(ij,l)= pbarv(ij, l)* 0.5 * ( teta(ij, l)+teta(ij+iip1,l) )
65   3  CONTINUE
66
67       if (.not. pole_sud) then
68          hbxu(ije+1:ije+iip1,l) = 0
69          hbyv(ije+1:ije+iip1,l) = 0
70        endif
71       
72   5  CONTINUE
73c$OMP END DO NOWAIT
74       
75       
76        CALL  convflu_p ( hbxu, hbyv, llm, dteta )
77
78
79c    stockage dans  dh de la convergence horizont. filtree' du  flux
80c                  ....                           ...........
81c           d'enthalpie potentielle .
82     
83     
84      CALL filtreg_p( dteta,jjb,jje,jjp1, llm, 2, 2, .true., 1)
85     
86     
87      RETURN
88      END
Note: See TracBrowser for help on using the repository browser.