Last change
on this file since 5021 was
985,
checked in by Laurent Fairhead, 16 years ago
|
Mise a jour de dyn3dpar par rapport a dyn3d, inclusion OpenMP et filtre FFT YM
LF
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.5 KB
|
Rev | Line | |
---|
[630] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
| 4 | SUBROUTINE gr_v_scal_p(nx,x_v,x_scal) |
---|
| 5 | c%W% %G% |
---|
| 6 | c======================================================================= |
---|
| 7 | c |
---|
| 8 | c Author: Frederic Hourdin original: 11/11/92 |
---|
| 9 | c ------- |
---|
| 10 | c |
---|
| 11 | c Subject: |
---|
| 12 | c ------ |
---|
| 13 | c |
---|
| 14 | c Method: |
---|
| 15 | c -------- |
---|
| 16 | c |
---|
| 17 | c Interface: |
---|
| 18 | c ---------- |
---|
| 19 | c |
---|
| 20 | c Input: |
---|
| 21 | c ------ |
---|
| 22 | c |
---|
| 23 | c Output: |
---|
| 24 | c ------- |
---|
| 25 | c |
---|
| 26 | c======================================================================= |
---|
| 27 | USE parallel |
---|
| 28 | IMPLICIT NONE |
---|
| 29 | c----------------------------------------------------------------------- |
---|
| 30 | c Declararations: |
---|
| 31 | c --------------- |
---|
| 32 | |
---|
| 33 | #include "dimensions.h" |
---|
| 34 | #include "paramet.h" |
---|
| 35 | #include "comgeom.h" |
---|
| 36 | |
---|
| 37 | c Arguments: |
---|
| 38 | c ---------- |
---|
| 39 | |
---|
| 40 | INTEGER nx |
---|
| 41 | REAL x_v(ip1jm,nx),x_scal(ip1jmp1,nx) |
---|
| 42 | |
---|
| 43 | c Local: |
---|
| 44 | c ------ |
---|
| 45 | |
---|
| 46 | INTEGER l,ij |
---|
| 47 | INTEGER :: ijb,ije |
---|
| 48 | c----------------------------------------------------------------------- |
---|
| 49 | ijb=ij_begin |
---|
| 50 | ije=ij_end |
---|
[985] | 51 | if (pole_nord) ijb=ij_begin+iip1 |
---|
| 52 | if (pole_sud) ije=ij_end-iip1 |
---|
[630] | 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.