Last change
on this file since 2054 was
2,
checked in by lmdz, 25 years ago
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.2 KB
|
Rev | Line | |
---|
[2] | 1 | SUBROUTINE vitvert ( convm , w ) |
---|
| 2 | c |
---|
| 3 | IMPLICIT NONE |
---|
| 4 | |
---|
| 5 | c======================================================================= |
---|
| 6 | c |
---|
| 7 | c Auteurs: P. Le Van , F. Hourdin . |
---|
| 8 | c ------- |
---|
| 9 | c |
---|
| 10 | c Objet: |
---|
| 11 | c ------ |
---|
| 12 | c |
---|
| 13 | c ******************************************************************* |
---|
| 14 | c .... calcul de la vitesse verticale aux niveaux sigma .... |
---|
| 15 | c ******************************************************************* |
---|
| 16 | c convm est un argument d'entree pour le s-pg ...... |
---|
| 17 | c w est un argument de sortie pour le s-pg ...... |
---|
| 18 | c |
---|
| 19 | c la vitesse verticale est orientee de haut en bas . |
---|
| 20 | c au sol, au niveau sigma(1), w(i,j,1) = 0. |
---|
| 21 | c au sommet, au niveau sigma(llm+1) , la vit.verticale est aussi |
---|
| 22 | c egale a 0. et n'est pas stockee dans le tableau w . |
---|
| 23 | c |
---|
| 24 | c |
---|
| 25 | c======================================================================= |
---|
| 26 | |
---|
| 27 | #include "dimensions.h" |
---|
| 28 | #include "paramet.h" |
---|
| 29 | #include "comvert.h" |
---|
| 30 | |
---|
| 31 | REAL w(ip1jmp1,llm),convm(ip1jmp1,llm) |
---|
| 32 | INTEGER l, ij |
---|
| 33 | |
---|
| 34 | |
---|
| 35 | |
---|
| 36 | DO 2 l = 1,llmm1 |
---|
| 37 | |
---|
| 38 | DO 1 ij = 1,ip1jmp1 |
---|
| 39 | w( ij, l+1 ) = convm( ij, l+1 ) - bp(l+1) * convm( ij, 1 ) |
---|
| 40 | 1 CONTINUE |
---|
| 41 | |
---|
| 42 | 2 CONTINUE |
---|
| 43 | |
---|
| 44 | DO 5 ij = 1,ip1jmp1 |
---|
| 45 | w(ij,1) = 0. |
---|
| 46 | 5 CONTINUE |
---|
| 47 | |
---|
| 48 | RETURN |
---|
| 49 | END |
---|
Note: See
TracBrowser
for help on using the repository browser.