source: LMDZ5/trunk/libf/dyn3dmem/advtrac_mod.F90 @ 1632

Last change on this file since 1632 was 1632, checked in by Laurent Fairhead, 12 years ago

Import initial du répertoire dyn3dmem

Attention! ceci n'est qu'une version préliminaire du code "basse mémoire":
le code contenu dans ce répertoire est basé sur la r1320 et a donc besoin
d'être mis à jour par rapport à la dynamique parallèle d'aujourd'hui.
Ce code est toutefois mis à disposition pour circonvenir à des problèmes
de mémoire que certaines configurations du modèle pourraient rencontrer.
Dans l'état, il compile et tourne sur vargas et au CCRT


Initial import of dyn3dmem

Warning! this is just a preliminary version of the memory light code:
it is based on r1320 of the code and thus needs to be updated before
it can replace the present dyn3dpar code. It is nevertheless put at your
disposal to circumvent some memory problems some LMDZ configurations may
encounter. In its present state, it will compile and run on vargas and CCRT

File size: 731 bytes
Line 
1MODULE advtrac_mod
2
3  REAL,POINTER,SAVE :: finmasse(:,:)
4 
5CONTAINS
6
7  SUBROUTINE advtrac_allocate
8  USE bands
9  USE allocate_field
10  USE parallel
11  USE infotrac
12  USE vlspltgen_mod
13  IMPLICIT NONE
14  INCLUDE "dimensions.h"
15  INCLUDE "paramet.h"
16  TYPE(distrib),POINTER :: d
17   
18    d=>distrib_vanleer
19    CALL allocate_u(finmasse,llm,d)
20    CALL vlspltgen_allocate
21  END SUBROUTINE advtrac_allocate
22 
23  SUBROUTINE advtrac_switch_vanleer(dist)
24  USE allocate_field
25  USE bands
26  USE parallel
27  USE vlspltgen_mod
28  IMPLICIT NONE
29    TYPE(distrib),INTENT(IN) :: dist
30 
31    CALL switch_u(finmasse,distrib_vanleer,dist)
32
33    CALL vlspltgen_switch_vanleer(dist)
34
35  END SUBROUTINE advtrac_switch_vanleer 
36 
37END MODULE advtrac_mod 
Note: See TracBrowser for help on using the repository browser.