source: LMDZ4/branches/LMDZ4V5.0-dev/libf/dyn3dpar/iniconst.F @ 1299

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