source: LMDZ6/trunk/libf/grid/fxy_new.h @ 3981

Last change on this file since 3981 was 1907, checked in by lguez, 10 years ago

Added a copyright property to every file of the distribution, except
for the fcm files (which have their own copyright). Use svn propget on
a file to see the copyright. For instance:

$ svn propget copyright libf/phylmd/physiq.F90
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

Also added the files defining the CeCILL version 2 license, in French
and English, at the top of the LMDZ tree.

  • 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: 915 bytes
Line 
1!
2! $Header$
3!
4c--------------------------------------------------------------
5         REAL ripx
6         REAL fx,fxprim,fy,fyprim,ri,rj,bigy
7c
8c....stretching in x...
9c
10        ripx(  ri )= (ri-1.0) *2.*pi/REAL(iim) 
11        fx  (  ri )= ripx(ri) + transx  +
12     *         alphax * SIN( ripx(ri)+transx-pxo ) - pi
13        fxprim(ri) = 2.*pi/REAL(iim)  *
14     *        ( 1.+ alphax * COS( ripx(ri)+transx-pxo ) )
15
16c....stretching in y...
17c
18        bigy(rj)   = 2.* (REAL(jjp1)-rj ) *pi/jjm
19        fy(rj)     =  ( bigy(rj) + transy  +
20     *        alphay * SIN( bigy(rj)+transy-pyo ) ) /2.  - pi/2.
21        fyprim(rj) = ( pi/jjm ) * ( 1.+
22     *           alphay * COS( bigy(rj)+transy-pyo ) )
23
24c       fy(rj)= pyo-pisjjm*(rj-transy)+coefalpha*SIN(depisjm*(rj-
25c     *  transy ))
26c       fyprim(rj)= pisjjm-pisjjm*coefy2* COS(depisjm*(rj-transy)) 
27c--------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.