Last change
on this file since 1317 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.1 KB
|
Rev | Line | |
---|
[630] | 1 | ! |
---|
[1299] | 2 | ! $Id: iniconst.F 1299 2010-01-20 14:27:21Z fairhead $ |
---|
[630] | 3 | ! |
---|
| 4 | SUBROUTINE iniconst |
---|
| 5 | |
---|
[1299] | 6 | USE control_mod |
---|
[630] | 7 | IMPLICIT NONE |
---|
| 8 | c |
---|
| 9 | c P. Le Van |
---|
| 10 | c |
---|
| 11 | c----------------------------------------------------------------------- |
---|
| 12 | c Declarations: |
---|
| 13 | c ------------- |
---|
| 14 | c |
---|
| 15 | #include "dimensions.h" |
---|
| 16 | #include "paramet.h" |
---|
| 17 | #include "comconst.h" |
---|
| 18 | #include "temps.h" |
---|
| 19 | #include "comvert.h" |
---|
| 20 | |
---|
| 21 | |
---|
| 22 | c |
---|
| 23 | c |
---|
| 24 | c |
---|
| 25 | c----------------------------------------------------------------------- |
---|
| 26 | c dimension des boucles: |
---|
| 27 | c ---------------------- |
---|
| 28 | |
---|
| 29 | im = iim |
---|
| 30 | jm = jjm |
---|
| 31 | lllm = llm |
---|
| 32 | imp1 = iim |
---|
| 33 | jmp1 = jjm + 1 |
---|
| 34 | lllmm1 = llm - 1 |
---|
| 35 | lllmp1 = llm + 1 |
---|
| 36 | |
---|
| 37 | c----------------------------------------------------------------------- |
---|
| 38 | |
---|
| 39 | dtdiss = idissip * dtvr |
---|
| 40 | dtphys = iphysiq * dtvr |
---|
| 41 | unsim = 1./iim |
---|
| 42 | pi = 2.*ASIN( 1. ) |
---|
| 43 | |
---|
| 44 | c----------------------------------------------------------------------- |
---|
| 45 | c |
---|
| 46 | |
---|
| 47 | r = cpp * kappa |
---|
| 48 | |
---|
| 49 | PRINT*,' R CP Kappa ', r , cpp, kappa |
---|
| 50 | c |
---|
| 51 | c----------------------------------------------------------------------- |
---|
| 52 | |
---|
| 53 | CALL disvert(pa,preff,ap,bp,dpres,presnivs,nivsigs,nivsig) |
---|
| 54 | c |
---|
| 55 | c |
---|
| 56 | RETURN |
---|
| 57 | END |
---|
Note: See
TracBrowser
for help on using the repository browser.