Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions unchanged/marbl_interface_private_types.F90
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,7 @@ module marbl_interface_private_types
integer(int_kind) :: salinity_id = 0
integer(int_kind) :: pressure_id = 0
integer(int_kind) :: fesedflux_id = 0
integer(int_kind) :: docfluidy_id = 0
integer(int_kind) :: o2_consumption_scalef_id = 0
integer(int_kind) :: p_remin_scalef_id = 0

Expand Down Expand Up @@ -616,6 +617,8 @@ module marbl_interface_private_types
integer(int_kind) :: Lig_photochem
integer(int_kind) :: Lig_deg
integer(int_kind) :: fesedflux
integer(int_kind) :: docfluidy


! Particulate 2D diags
integer(int_kind) :: POC_FLUX_at_ref_depth
Expand Down Expand Up @@ -1756,6 +1759,10 @@ subroutine interior_tendency_forcing_index_constructor(this,
forcing_cnt = forcing_cnt + 1
this%fesedflux_id = forcing_cnt

! DOC fluid Flux
forcing_cnt = forcing_cnt + 1
this%docfluidy_id = forcing_cnt

! O2 Consumption Scale Factor
if (lo2_consumption_scalef) then
forcing_cnt = forcing_cnt + 1
Expand Down