My Project
 All Classes Files Functions Variables Macros
fxyprim.h
Go to the documentation of this file.
1 !
2 ! $Header$
3 !
4 c-----------------------------------------------------------------------
5 c INCLUDE 'fxyprim.h'
6 c
7 c ................................................................
8 c ................ Fonctions in line ...........................
9 c ................................................................
10 c
12  REAL ri, rj
13 c
14 c
15  fy ( rj ) = pi/REAL(jjm) * ( 0.5 * REAL(jjm) + 1. - rj )
16  fyprim( rj ) = pi/REAL(jjm)
17 
18 c fy(rj)=ASIN(1.+2.*((1.-rj)/REAL(jjm)))
19 c fyprim(rj)=1./SQRT((rj-1.)*(jjm+1.-rj))
20 
21  fx ( ri ) = 2.*pi/REAL(iim) * ( ri - 0.5* REAL(iim) - 1. )
22 c fx ( ri ) = 2.*pi/REAL(iim) * ( ri - 0.5* ( REAL(iim) + 1.) )
23  fxprim( ri ) = 2.*pi/REAL(iim)
24 c
25 c
26 c La valeur de pi est passee par le common/const/ou /const2/ .
27 c Sinon, il faut la calculer avant d'appeler ces fonctions .
28 c
29 c ----------------------------------------------------------------
30 c Fonctions a changer eventuellement, selon x(x) et y(y) choisis .
31 c -----------------------------------------------------------------
32 c
33 c ..... ici, on a l'application particuliere suivante ........
34 c
35 c **************************************
36 c ** x = 2. * pi/iim * X **
37 c ** y = pi/jjm * Y **
38 c **************************************
39 c
40 c ..................................................................
41 c ..................................................................
42 c
43 c
44 c
45 c-----------------------------------------------------------------------