Skip to content

Commit

Permalink
Extend interior_temporal_mean to accept type_state_variable_id (#87)
Browse files Browse the repository at this point in the history
* extend interior_temporal_mean to accept type_state_variable_id

* github actions: correct ifort url
  • Loading branch information
jornbr authored Aug 27, 2024
1 parent 856f6a2 commit ecc1de1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/fabm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ jobs:
matrix:
include:
- version: "2021.1.2.62"
url_dir: "https://registrationcenter-download.intel.com/akdlm/irc_nas/17508"
url_dir: "https://registrationcenter-download.intel.com/akdlm/IRC_NAS/17508"
# - version: "2022.2.1.16992"
# url_dir: "https://registrationcenter-download.intel.com/akdlm/irc_nas/18998"
# url_dir: "https://registrationcenter-download.intel.com/akdlm/IRC_NAS/18998"
# - version: "2023.2.0.49254"
# url_dir: "https://registrationcenter-download.intel.com/akdlm/IRC_NAS/237236c4-434b-4576-96ac-020ceeb22619"
- version: "2024.2.0.426"
Expand Down
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 ecc1de1

Please sign in to comment.