| 1 | SUBROUTINE laplacien_rot ( klevel, rotin, rotout,ghx,ghy ) |
|---|
| 2 | c |
|---|
| 3 | c P. Le Van |
|---|
| 4 | c |
|---|
| 5 | c ************************************************************ |
|---|
| 6 | c ... calcul de ( rotat x nxgrad ) du rotationnel rotin . |
|---|
| 7 | c ************************************************************ |
|---|
| 8 | c |
|---|
| 9 | c klevel et rotin sont des arguments d'entree pour le s-prog |
|---|
| 10 | c rotout 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 | |
|---|
| 18 | c |
|---|
| 19 | c .......... variables en arguments ............. |
|---|
| 20 | c |
|---|
| 21 | INTEGER klevel |
|---|
| 22 | REAL rotin( ip1jm,klevel ), rotout( ip1jm,klevel ) |
|---|
| 23 | c |
|---|
| 24 | c .......... variables locales ................ |
|---|
| 25 | c |
|---|
| 26 | REAL ghy(ip1jm,klevel), ghx(ip1jmp1,klevel) |
|---|
| 27 | c ........................................................ |
|---|
| 28 | c |
|---|
| 29 | EXTERNAL filtreg, nxgrad, rotatf |
|---|
| 30 | c |
|---|
| 31 | CALL filtreg ( rotin , jjm, klevel, 2, 1, .FALSE., 1 ) |
|---|
| 32 | |
|---|
| 33 | CALL nxgrad ( klevel, rotin, ghx , ghy ) |
|---|
| 34 | CALL rotatf ( klevel, ghx , ghy , rotout ) |
|---|
| 35 | c |
|---|
| 36 | RETURN |
|---|
| 37 | END |
|---|