source: trunk/LMDZ.COMMON/libf/dyn3dpar/gr_v_scal_p.F @ 2902

Last change on this file since 2902 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: 1.5 KB
RevLine 
[1]1!
2! $Header$
3!
4      SUBROUTINE gr_v_scal_p(nx,x_v,x_scal)
5c%W%    %G%
6c=======================================================================
7c
8c   Author:    Frederic Hourdin      original: 11/11/92
9c   -------
10c
11c   Subject:
12c   ------
13c
14c   Method:
15c   --------
16c
17c   Interface:
18c   ----------
19c
20c      Input:
21c      ------
22c
23c      Output:
24c      -------
25c
26c=======================================================================
[1019]27      USE parallel_lmdz
[1]28      IMPLICIT NONE
29c-----------------------------------------------------------------------
30c   Declararations:
31c   ---------------
32
33#include "dimensions.h"
34#include "paramet.h"
35#include "comgeom.h"
36
37c   Arguments:
38c   ----------
39
40      INTEGER nx
41      REAL x_v(ip1jm,nx),x_scal(ip1jmp1,nx)
42
43c   Local:
44c   ------
45
46      INTEGER l,ij
47      INTEGER :: ijb,ije
48c-----------------------------------------------------------------------
49      ijb=ij_begin
50      ije=ij_end
51      if (pole_nord) ijb=ij_begin+iip1
52      if (pole_sud)  ije=ij_end-iip1
53     
54      DO l=1,nx
55         DO ij=ijb,ije
56            x_scal(ij,l)=
57     s      (airev(ij-iip1)*x_v(ij-iip1,l)+airev(ij)*x_v(ij,l))
58     s      /(airev(ij-iip1)+airev(ij))
59         ENDDO
60      ENDDO
61     
62      if (pole_nord) then
63        DO l=1,nx
64           DO ij=1,iip1
65              x_scal(ij,l)=0.
66           ENDDO
67        ENDDO
68      endif
69   
70      if (pole_sud) then
71        DO l=1,nx
72           DO ij=ip1jm+1,ip1jmp1
73              x_scal(ij,l)=0.
74           ENDDO
75        ENDDO
76      endif
77
78      RETURN
79      END
Note: See TracBrowser for help on using the repository browser.