source: LMDZ4/branches/LMDZ4V5.0-dev/libf/dyn3dpar/adaptdt.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.3 KB
Line 
1!
2! $Id: adaptdt.F 1299 2010-01-20 14:27:21Z fairhead $
3!
4      subroutine adaptdt(nadv,dtbon,n,pbaru,
5     c                   masse)
6
7      USE control_mod
8
9      IMPLICIT NONE
10
11#include "dimensions.h"
12c#include "paramr2.h"
13#include "paramet.h"
14#include "comconst.h"
15#include "comdissip.h"
16#include "comvert.h"
17#include "comgeom2.h"
18#include "logic.h"
19#include "temps.h"
20#include "ener.h"
21#include "description.h"
22
23c----------------------------------------------------------
24c     Arguments
25c----------------------------------------------------------
26      INTEGER n,nadv
27      REAL dtbon
28      REAL pbaru(iip1,jjp1,llm)
29      REAL masse(iip1,jjp1,llm)
30c----------------------------------------------------------   
31c     Local
32c----------------------------------------------------------
33      INTEGER i,j,l
34      REAL CFLmax,aaa,bbb
35     
36        CFLmax=0.
37        do l=1,llm
38         do j=2,jjm
39          do i=1,iim
40             aaa=pbaru(i,j,l)*dtvr/masse(i,j,l)
41             CFLmax=max(CFLmax,aaa)
42             bbb=-pbaru(i,j,l)*dtvr/masse(i+1,j,l)
43             CFLmax=max(CFLmax,bbb)
44          enddo
45         enddo
46        enddo             
47        n=int(CFLmax)+1
48c pour reproduire cas VL du code qui appele x,y,z,y,x
49c        if (nadv.eq.30) n=n/2   ! Pour Prather
50        dtbon=dtvr/n
51       
52       return
53       end
54
55
56
57
58
59
60
Note: See TracBrowser for help on using the repository browser.