Last change
on this file since 3265 was
1299,
checked in by Laurent Fairhead, 15 years ago
|
Nettoyage general pour se rapprocher des normes et éviter des erreurs a la
compilation:
- tous les FLOAT() sont remplacés par des REAL()
- tous les STOP dans phylmd sont remplacés par des appels à abort_gcm
- le common control défini dans le fichier control.h est remplacé par
le module control_mod pour éviter des messages sur l'alignement des
variables dans les déclarations
- des $Header$ remplacés par des $Id$ pour svn
Quelques remplacements à faire ont pu m'échapper
General cleanup of the code to try and adhere to norms and to prevent some
compilation errors:
- all FLOAT() instructions have been replaced by REAL() instructions
- all STOP instructions in phylmd have been replaced by calls to abort_gcm
- the common block control defined in the control.h file has been replaced
by the control_mod to prevent compilation warnings on the alignement of
declared variables
- $Header$ replaced by $Id$ for svn
Some changes which should have been made might have escaped me
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.5 KB
|
Rev | Line | |
---|
[524] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
| 4 | c----------------------------------------------------------------------- |
---|
| 5 | c INCLUDE 'fxyprim.h' |
---|
| 6 | c |
---|
| 7 | c ................................................................ |
---|
| 8 | c ................ Fonctions in line ........................... |
---|
| 9 | c ................................................................ |
---|
| 10 | c |
---|
| 11 | REAL fy, fx, fxprim, fyprim |
---|
| 12 | REAL ri, rj |
---|
| 13 | c |
---|
| 14 | c |
---|
[1299] | 15 | fy(rj)=ASIN(1.+2.*((1.-rj)/REAL(jjm))) |
---|
[524] | 16 | fyprim(rj)=1./SQRT((rj-1.)*(jjm+1.-rj)) |
---|
| 17 | |
---|
[1299] | 18 | fx ( ri ) = 2.*pi/REAL(iim) * ( ri - 0.5* REAL(iim) - 1. ) |
---|
| 19 | c fx ( ri ) = 2.*pi/REAL(iim) * ( ri - 0.5* ( REAL(iim) + 1.) ) |
---|
| 20 | fxprim( ri ) = 2.*pi/REAL(iim) |
---|
[524] | 21 | c |
---|
| 22 | c |
---|
| 23 | c La valeur de pi est passee par le common/const/ou /const2/ . |
---|
| 24 | c Sinon, il faut la calculer avant d'appeler ces fonctions . |
---|
| 25 | c |
---|
| 26 | c ---------------------------------------------------------------- |
---|
| 27 | c Fonctions a changer eventuellement, selon x(x) et y(y) choisis . |
---|
| 28 | c ----------------------------------------------------------------- |
---|
| 29 | c |
---|
| 30 | c ..... ici, on a l'application particuliere suivante ........ |
---|
| 31 | c |
---|
| 32 | c ************************************** |
---|
| 33 | c ** x = 2. * pi/iim * X ** |
---|
| 34 | c ** y = pi/jjm * Y ** |
---|
| 35 | c ************************************** |
---|
| 36 | c |
---|
| 37 | c .................................................................. |
---|
| 38 | c .................................................................. |
---|
| 39 | c |
---|
| 40 | c |
---|
| 41 | c |
---|
| 42 | c----------------------------------------------------------------------- |
---|
Note: See
TracBrowser
for help on using the repository browser.