FV3 Bundle
type_cv_blk.F90
Go to the documentation of this file.
1 !----------------------------------------------------------------------
2 ! Module: type_cv_blk
3 ! Purpose: control vector derived type
4 ! Author: Benjamin Menetrier
5 ! Licensing: this code is distributed under the CeCILL-C license
6 ! Copyright © 2015-... UCAR, CERFACS, METEO-FRANCE and IRIT
7 !----------------------------------------------------------------------
8 module type_cv_blk
9 
10 use tools_kinds, only: kind_real
11 
12 implicit none
13 
14 ! Control vector block derived type
16  integer :: n ! Control variable block size
17  real(kind_real),allocatable :: alpha(:) ! Control vector block field
18 end type cv_blk_type
19 
20 private
21 public :: cv_blk_type
22 
23 end module type_cv_blk
integer, parameter, public kind_real