CCPP SciDoc v7.0.0  v7.0.0
Common Community Physics Package Developed at DTC
 
Loading...
Searching...
No Matches
iccn_def.F
1
3
6 module iccn_def
7 use machine , only : kind_phys
8 implicit none
9
10 integer, parameter :: kcipl=32, latscip=192, lonscip=288
11 & , timeci=12
12
13 real (kind=kind_phys):: ci_lat(latscip), ci_lon(lonscip)
14 & , ci_time(timeci+1)
15 real (kind=4), allocatable, dimension(:,:,:,:):: ciplin, ccnin
16 real (kind=kind_phys), allocatable, dimension(:,:,:,:):: ci_pres
17 data ci_time/15.5,45.,74.5,105.,135.5,166.,196.5,
18 & 227.5,258.,288.5,319.,349.5,380.5/
19
20 end module iccn_def
This module defines IN and CCN arrays.
Definition iccn_def.F:6