Skip to content

Commit

Permalink
extend interior_temporal_mean to accept type_state_variable_id
Browse files Browse the repository at this point in the history
  • Loading branch information
jornbr committed Aug 27, 2024
1 parent 856f6a2 commit cf7c97c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/fabm_expressions.F90
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ function vertical_integral_generic(input, minimum_depth, maximum_depth, average)
end function

function interior_temporal_mean(input, period, resolution, missing_value) result(expression)
type (type_dependency_id), intent(inout), target :: input
real(rk), intent(in) :: period, resolution
real(rk), optional, intent(in) :: missing_value
type (type_interior_temporal_mean) :: expression
class (type_dependency_id), intent(inout), target :: input
real(rk), intent(in) :: period, resolution
real(rk), optional, intent(in) :: missing_value
type (type_interior_temporal_mean) :: expression

character(len=attribute_length) :: prefix, postfix

Expand Down

0 comments on commit cf7c97c

Please sign in to comment.