1 | SUBROUTINE rotat_nfil (klevel, x, y, rot ) |
---|
2 | c |
---|
3 | c Auteur : P.Le Van |
---|
4 | c************************************************************** |
---|
5 | c. Calcule le rotationnel non filtre , |
---|
6 | c a tous les niveaux d'1 vecteur de comp. x et y .. |
---|
7 | c x et y etant des composantes covariantes ... |
---|
8 | c******************************************************************** |
---|
9 | c klevel, x et y sont des arguments d'entree pour le s-prog |
---|
10 | c rot est un argument de sortie pour le s-prog |
---|
11 | c |
---|
12 | IMPLICIT NONE |
---|
13 | c |
---|
14 | #include "dimensions.h" |
---|
15 | #include "paramet.h" |
---|
16 | #include "comgeom.h" |
---|
17 | c |
---|
18 | c ..... variables en arguments ...... |
---|
19 | c |
---|
20 | INTEGER klevel |
---|
21 | REAL rot( ip1jm,klevel ) |
---|
22 | REAL x( ip1jmp1,klevel ), y( ip1jm,klevel ) |
---|
23 | c |
---|
24 | c ... variables locales ... |
---|
25 | c |
---|
26 | INTEGER l, ij |
---|
27 | c |
---|
28 | c |
---|
29 | DO 10 l = 1,klevel |
---|
30 | c |
---|
31 | DO ij = 1, ip1jm - 1 |
---|
32 | rot( ij,l ) = y( ij+1 , l ) - y( ij,l ) + |
---|
33 | * x(ij +iip1, l ) - x( ij,l ) |
---|
34 | ENDDO |
---|
35 | c |
---|
36 | c .... correction pour rot( iip1,j,l) .... |
---|
37 | c .... rot(iip1,j,l)= rot(1,j,l) ... |
---|
38 | CDIR$ IVDEP |
---|
39 | DO ij = iip1, ip1jm, iip1 |
---|
40 | rot( ij,l ) = rot( ij -iim,l ) |
---|
41 | ENDDO |
---|
42 | c |
---|
43 | 10 CONTINUE |
---|
44 | |
---|
45 | RETURN |
---|
46 | END |
---|