New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
agrif2model.F90 in trunk/NEMO/NST_SRC – NEMO

source: trunk/NEMO/NST_SRC/agrif2model.F90 @ 699

Last change on this file since 699 was 699, checked in by smasson, 17 years ago

insert revision Id

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.3 KB
Line 
1   !!----------------------------------------------------------------------
2   !! $Id$
3   !!----------------------------------------------------------------------
4#if defined key_agrif
5   SUBROUTINE Agrif_Set_numberofcells(Agrif_Gr)
6      !!---------------------------------------------
7      !!   *** ROUTINE Agrif_Set_numberofcells ***
8      !!---------------------------------------------
9      USE Agrif_Types
10      IMPLICIT NONE
11
12      Type(Agrif_Grid), Pointer :: Agrif_Gr
13
14      IF ( associated(Agrif_Curgrid) )THEN
15#include "SetNumberofcells.h"
16      ENDIF
17
18   END SUBROUTINE Agrif_Set_numberofcells
19
20   SUBROUTINE Agrif_Get_numberofcells(Agrif_Gr)
21      !!---------------------------------------------
22      !!   *** ROUTINE Agrif_Get_numberofcells ***
23      !!---------------------------------------------
24      USE Agrif_Types
25      IMPLICIT NONE
26
27      Type(Agrif_Grid), Pointer :: Agrif_Gr
28
29#include "GetNumberofcells.h"
30
31   END SUBROUTINE Agrif_Get_numberofcells
32
33   SUBROUTINE Agrif_Allocationcalls(Agrif_Gr)
34      !!---------------------------------------------
35      !!   *** ROUTINE Agrif_Allocationscalls ***
36      !!---------------------------------------------
37      USE Agrif_Types 
38#include "include_use_Alloc_agrif.h"
39      IMPLICIT NONE
40
41      Type(Agrif_Grid), Pointer :: Agrif_Gr
42
43#include "allocations_calls_agrif.h"
44
45   END SUBROUTINE Agrif_Allocationcalls
46
47   SUBROUTINE Agrif_probdim_modtype_def()
48      !!---------------------------------------------
49      !!   *** ROUTINE Agrif_probdim_modtype_def ***
50      !!---------------------------------------------
51      USE Agrif_Types
52      IMPLICIT NONE
53
54#include "modtype_agrif.h"
55#include "probdim_agrif.h"
56#include "keys_agrif.h"
57
58      Return
59
60   END SUBROUTINE Agrif_probdim_modtype_def
61
62   SUBROUTINE Agrif_clustering_def()
63      !!---------------------------------------------
64      !!   *** ROUTINE Agrif_clustering_def ***
65      !!---------------------------------------------
66      Use Agrif_Types
67      IMPLICIT NONE
68
69      Return
70
71   END SUBROUTINE Agrif_clustering_def
72#else
73   SUBROUTINE Agrif2Model
74      !!---------------------------------------------
75      !!   *** ROUTINE Agrif2Model ***
76      !!---------------------------------------------
77      WRITE(*,*) 'Impossible to bet here'
78   END SUBROUTINE Agrif2model
79#endif
Note: See TracBrowser for help on using the repository browser.