source: CONFIG/publications/ICOLMDZORINCA_CO2_Transport_GMD_2023/DYNAMICO/src/base/layout.f90 @ 6612

Last change on this file since 6612 was 6612, checked in by acosce, 10 months ago

DYNAMICO used for ICOLMDZORINCA_CO2_Transport_GMD_2023

File size: 596 bytes
Line 
1MODULE layout_mod
2  USE genmod
3  IMPLICIT NONE
4
5  INTEGER,PARAMETER :: field_T=1
6  INTEGER,PARAMETER :: field_U=2
7  INTEGER,PARAMETER :: field_Z=3
8  INTEGER,PARAMETER :: field_type_max=3
9
10  TYPE t_layout
11     LOGICAL :: oriented ! .TRUE. if sign may need to change when exchanging halos
12     INTEGER :: ij_size    ! needed for allocation
13  END type t_layout
14
15  ! allocated and filled during model startup 
16  TYPE(t_layout), ALLOCATABLE :: layout(:,:), &  ! used by allocated_field
17       &                         layout_glo(:,:) ! used by allocated_field_glo
18 
19CONTAINS
20
21END MODULE layout_mod
Note: See TracBrowser for help on using the repository browser.