Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
character(len=8), | public | :: | DateString | = | ' ' | ||
real(kind=r64), | public, | ALLOCATABLE, DIMENSION(:) | :: | Temp | |||
real(kind=r64), | public, | ALLOCATABLE, DIMENSION(:) | :: | HumRat | |||
real(kind=r64), | public, | ALLOCATABLE, DIMENSION(:) | :: | Press |
TYPE DesDayWeathData
CHARACTER(len=8) :: DateString = ' ' ! date of design day weather values
REAL(r64), ALLOCATABLE, DIMENSION(:) :: Temp ! design day temperatures at the major time step
REAL(r64), ALLOCATABLE, DIMENSION(:) :: HumRat ! design day humidity ratios at the major time step
REAL(r64), ALLOCATABLE, DIMENSION(:) :: Press ! design day braometric pressure at the major time step
END TYPE DesDayWeathData