Skip to content

Commit f566f2d

Browse files
authored
Merge pull request #17 from ACCESS-NRI/upstream-master
WOMBAT sea-ice BGC coupling bug fix
2 parents baaf7ed + 59e0aad commit f566f2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mom5/ocean_csiro_bgc/csiro_bgc.F90

+2-2
Original file line numberDiff line numberDiff line change
@@ -1349,7 +1349,7 @@ subroutine csiro_bgc_sbc(isc, iec, jsc, jec, isd, ied, jsd, jed, &
13491349
do n = 1, instances !{
13501350
do j = jsc, jec !{
13511351
do i = isc, iec !{
1352-
t_prog(ind_phy)%stf(i,j) = iof_alg(i,j)
1352+
t_prog(ind_phy)%stf(i,j) = rho0 * iof_alg(i,j)
13531353
enddo !} i
13541354
enddo !} j
13551355
enddo !} n
@@ -1359,7 +1359,7 @@ subroutine csiro_bgc_sbc(isc, iec, jsc, jec, isd, ied, jsd, jed, &
13591359
do n = 1, instances !{
13601360
do j = jsc, jec !{
13611361
do i = isc, iec !{
1362-
t_prog(ind_no3)%stf(i,j) = iof_nit(i,j)
1362+
t_prog(ind_no3)%stf(i,j) = rho0 * iof_nit(i,j)
13631363
enddo !} i
13641364
enddo !} j
13651365
enddo !} n

0 commit comments

Comments
 (0)