Skip to content
Snippets Groups Projects
Commit ec7159b9 authored by KyleKlenk's avatar KyleKlenk
Browse files

Fix problem with include

parent 2a26160b
No related branches found
No related tags found
1 merge request!9Integrating Restart and V4 changes
......@@ -5,6 +5,23 @@ module actor_data_types
implicit none
private
type,public :: forcingFileData
real(rkind), dimension (:,:), allocatable :: dataFromFile
end type forcingFileData
type,public :: var_forc
type(forcingFileData), allocatable :: var(:) ! var(:)%dataFromFile(:,:)
character(len=256) :: refTimeString
real(rkind) :: convTime2Days
integer(i4b) :: nVars
integer(i4b),allocatable :: var_ix(:)
real(rkind) :: tmZoneOffsetFracDay
real(rkind) :: refJulDay_data
integer(i4b) :: nTimeSteps ! Number of Timesteps in the file
end type var_forc
! ** double precision type of for time series
type, public :: time_dlength
type(dlength),allocatable :: tim(:) ! tim(:)%dat
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment