Last change
on this file was
5159,
checked in by abarral, 3 months ago
|
Put dimensions.h and paramet.h into modules
|
-
Property copyright set to
Name of program: LMDZ Creation date: 1984 Version: LMDZ5 License: CeCILL version 2 Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539 See the license file in the root directory
|
File size:
1.4 KB
|
Rev | Line | |
---|
[5099] | 1 | |
---|
[1632] | 2 | ! $Header$ |
---|
[5099] | 3 | |
---|
[5105] | 4 | SUBROUTINE gr_u_scal_loc(nx,x_u,x_scal) |
---|
| 5 | !%W% %G% |
---|
| 6 | !======================================================================= |
---|
[5159] | 7 | |
---|
[5105] | 8 | ! Author: Frederic Hourdin original: 11/11/92 |
---|
| 9 | ! ------- |
---|
[5159] | 10 | |
---|
[5105] | 11 | ! Subject: |
---|
| 12 | ! ------ |
---|
[5159] | 13 | |
---|
[5105] | 14 | ! Method: |
---|
| 15 | ! -------- |
---|
[5159] | 16 | |
---|
[5105] | 17 | ! Interface: |
---|
| 18 | ! ---------- |
---|
[5159] | 19 | |
---|
[5105] | 20 | ! Input: |
---|
| 21 | ! ------ |
---|
[5159] | 22 | |
---|
[5105] | 23 | ! Output: |
---|
| 24 | ! ------- |
---|
[5159] | 25 | |
---|
[5105] | 26 | !======================================================================= |
---|
| 27 | USE parallel_lmdz |
---|
[5136] | 28 | USE lmdz_comgeom |
---|
| 29 | |
---|
[5159] | 30 | USE lmdz_dimensions, ONLY: iim, jjm, llm, ndm |
---|
| 31 | USE lmdz_paramet |
---|
[5105] | 32 | IMPLICIT NONE |
---|
| 33 | !----------------------------------------------------------------------- |
---|
| 34 | ! Declararations: |
---|
| 35 | ! --------------- |
---|
[1632] | 36 | |
---|
| 37 | |
---|
[5159] | 38 | |
---|
| 39 | |
---|
[5105] | 40 | ! Arguments: |
---|
| 41 | ! ---------- |
---|
[1632] | 42 | |
---|
[5105] | 43 | INTEGER :: nx |
---|
| 44 | REAL :: x_u(ijb_u:ije_u,nx),x_scal(ijb_u:ije_u,nx) |
---|
[1632] | 45 | |
---|
[5105] | 46 | ! Local: |
---|
| 47 | ! ------ |
---|
[1632] | 48 | |
---|
[5105] | 49 | INTEGER :: l,ij |
---|
| 50 | INTEGER :: ijb,ije |
---|
[1632] | 51 | |
---|
[5105] | 52 | !----------------------------------------------------------------------- |
---|
| 53 | ijb=ij_begin |
---|
| 54 | ije=ij_end |
---|
[1632] | 55 | |
---|
[5105] | 56 | !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
| 57 | DO l=1,nx |
---|
| 58 | DO ij=ijb+1,ije |
---|
| 59 | x_scal(ij,l)= & |
---|
| 60 | (aireu(ij)*x_u(ij,l)+aireu(ij-1)*x_u(ij-1,l)) & |
---|
| 61 | /(aireu(ij)+aireu(ij-1)) |
---|
| 62 | ENDDO |
---|
| 63 | ENDDO |
---|
[1632] | 64 | !$OMP ENDDO NOWAIT |
---|
| 65 | |
---|
[5105] | 66 | ijb=ij_begin |
---|
| 67 | ije=ij_end |
---|
[1632] | 68 | |
---|
[5105] | 69 | !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
| 70 | DO l=1,nx |
---|
| 71 | DO ij=ijb,ije-iip1+1,iip1 |
---|
| 72 | x_scal(ij,l)=x_scal(ij+iip1-1,l) |
---|
| 73 | ENDDO |
---|
| 74 | ENDDO |
---|
[1632] | 75 | !$OMP ENDDO NOWAIT |
---|
[5105] | 76 | |
---|
| 77 | |
---|
| 78 | END SUBROUTINE gr_u_scal_loc |
---|
Note: See
TracBrowser
for help on using the repository browser.