Skip to content

Commit

Permalink
fix typo again
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenwu0728 committed Sep 17, 2024
1 parent 0550412 commit c368470
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Plankton/IronEnergyMode/growth_kernels.jl
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ end
@kernel function calc_NO3_reduc_kernel!(plank, p, ΔT)
i = @index(Global)
@inbounds plank.NR[i], plank.ENR[i] = calc_NO3_reduction(plank.En[i], plank.qNO3[i], plank.qNH4[i],
plank.qFe[i], plank.Bm[i], plank.CH[i],
plank.qFeNR[i], plank.Bm[i], plank.CH[i],
p, plank.ac[i], ΔT)
end
function calc_NO3_reduc!(plank, p, ΔT, arch::Architecture)
Expand All @@ -188,7 +188,7 @@ end
@kernel function calc_Nfix_kernel!(plank, p, ΔT)
i = @index(Global)
@inbounds plank.NF[i], plank.ENF[i] = calc_Nfixation(plank.En[i], plank.qNH4[i],
plank.qFe[i], plank.Bm[i], plank.CH[i],
plank.qFeNF[i], plank.Bm[i], plank.CH[i],
p, plank.ac[i], ΔT)
end
function calc_Nfix!(plank, p, ΔT, arch::Architecture)
Expand Down

0 comments on commit c368470

Please sign in to comment.