Last change
on this file since 5285 was
5285,
checked in by abarral, 4 days ago
|
As discussed internally, remove generic ONLY: ... for new _mod_h 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
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.1 KB
|
Rev | Line | |
---|
[524] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
[5246] | 4 | SUBROUTINE gr_u_scal(nx,x_u,x_scal) |
---|
| 5 | !%W% %G% |
---|
| 6 | !======================================================================= |
---|
| 7 | ! |
---|
| 8 | ! Author: Frederic Hourdin original: 11/11/92 |
---|
| 9 | ! ------- |
---|
| 10 | ! |
---|
| 11 | ! Subject: |
---|
| 12 | ! ------ |
---|
| 13 | ! |
---|
| 14 | ! Method: |
---|
| 15 | ! -------- |
---|
| 16 | ! |
---|
| 17 | ! Interface: |
---|
| 18 | ! ---------- |
---|
| 19 | ! |
---|
| 20 | ! Input: |
---|
| 21 | ! ------ |
---|
| 22 | ! |
---|
| 23 | ! Output: |
---|
| 24 | ! ------- |
---|
| 25 | ! |
---|
| 26 | !======================================================================= |
---|
[5281] | 27 | USE comgeom_mod_h |
---|
[5271] | 28 | USE dimensions_mod, ONLY: iim, jjm, llm, ndm |
---|
[5285] | 29 | USE paramet_mod_h |
---|
[5271] | 30 | IMPLICIT NONE |
---|
[5246] | 31 | !----------------------------------------------------------------------- |
---|
| 32 | ! Declararations: |
---|
| 33 | ! --------------- |
---|
[524] | 34 | |
---|
[5271] | 35 | |
---|
[5272] | 36 | |
---|
[524] | 37 | |
---|
[5246] | 38 | ! Arguments: |
---|
| 39 | ! ---------- |
---|
[524] | 40 | |
---|
[5246] | 41 | INTEGER :: nx |
---|
| 42 | REAL :: x_u(ip1jmp1,nx),x_scal(ip1jmp1,nx) |
---|
[524] | 43 | |
---|
[5246] | 44 | ! Local: |
---|
| 45 | ! ------ |
---|
[524] | 46 | |
---|
[5246] | 47 | INTEGER :: l,ij |
---|
[524] | 48 | |
---|
[5246] | 49 | !----------------------------------------------------------------------- |
---|
[524] | 50 | |
---|
[5246] | 51 | DO l=1,nx |
---|
| 52 | DO ij=ip1jmp1,2,-1 |
---|
| 53 | x_scal(ij,l)= & |
---|
| 54 | (aireu(ij)*x_u(ij,l)+aireu(ij-1)*x_u(ij-1,l)) & |
---|
| 55 | /(aireu(ij)+aireu(ij-1)) |
---|
| 56 | ENDDO |
---|
| 57 | ENDDO |
---|
[524] | 58 | |
---|
[5246] | 59 | CALL SCOPY(nx*jjp1,x_scal(iip1,1),iip1,x_scal(1,1),iip1) |
---|
[524] | 60 | |
---|
[5246] | 61 | RETURN |
---|
| 62 | END SUBROUTINE gr_u_scal |
---|
Note: See
TracBrowser
for help on using the repository browser.