|
Last change
on this file since 269 was
2,
checked in by lmdz, 26 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
|
| Line | |
|---|
| 1 | SUBROUTINE inirappel(teq) |
|---|
| 2 | c%W% %G% |
|---|
| 3 | c======================================================================= |
|---|
| 4 | c |
|---|
| 5 | c Author: Frederic Hourdin original: 15/01/93 |
|---|
| 6 | c ------- |
|---|
| 7 | c |
|---|
| 8 | c Subject: |
|---|
| 9 | c ------ |
|---|
| 10 | c |
|---|
| 11 | c Method: |
|---|
| 12 | c -------- |
|---|
| 13 | c |
|---|
| 14 | c Interface: |
|---|
| 15 | c ---------- |
|---|
| 16 | c |
|---|
| 17 | c Input: |
|---|
| 18 | c ------ |
|---|
| 19 | c |
|---|
| 20 | c Output: |
|---|
| 21 | c ------- |
|---|
| 22 | c |
|---|
| 23 | c======================================================================= |
|---|
| 24 | IMPLICIT NONE |
|---|
| 25 | c----------------------------------------------------------------------- |
|---|
| 26 | c Declararations: |
|---|
| 27 | c --------------- |
|---|
| 28 | |
|---|
| 29 | #include "dimensions.h" |
|---|
| 30 | #include "paramet.h" |
|---|
| 31 | #include "comvert.h" |
|---|
| 32 | #include "comconst.h" |
|---|
| 33 | #include "comgeom.h" |
|---|
| 34 | |
|---|
| 35 | c Arguments: |
|---|
| 36 | c ---------- |
|---|
| 37 | |
|---|
| 38 | REAL teq(iip1,jjp1,llm) |
|---|
| 39 | |
|---|
| 40 | c Local: |
|---|
| 41 | c ------ |
|---|
| 42 | |
|---|
| 43 | REAL dsin,teqj,teql |
|---|
| 44 | INTEGER i,j,l |
|---|
| 45 | |
|---|
| 46 | c----------------------------------------------------------------------- |
|---|
| 47 | |
|---|
| 48 | DO l=1,llm |
|---|
| 49 | teql=1./8.*(-log(s(l))/kappa-.5) |
|---|
| 50 | DO j=1,jjp1 |
|---|
| 51 | dsin=sin(rlatu(j))-sin(pi/20.) |
|---|
| 52 | teqj=cpp/1000.**kappa* |
|---|
| 53 | s 300.*(1+1./18.*(1.-3.*dsin*dsin)+teql) |
|---|
| 54 | PRINT*,j,l,teqj |
|---|
| 55 | DO i=1,iip1 |
|---|
| 56 | teq(i,j,l)=teqj |
|---|
| 57 | ENDDO |
|---|
| 58 | ENDDO |
|---|
| 59 | ENDDO |
|---|
| 60 | RETURN |
|---|
| 61 | END |
|---|
Note: See
TracBrowser
for help on using the repository browser.