We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@Hallberg-NOAA can confirm that at ice_model.F90:1381
if (IST%id_sw_abs_sfc>0) call post_avg(IST%id_sw_abs_sfc, IST%sw_abs_sfc, & IST%part_size, IST%diag, G=G, mask=G%Lmask2dT)
Should be:
if (IST%id_sw_abs_sfc>0) call post_avg(IST%id_sw_abs_sfc, IST%sw_abs_sfc, & IST%part_size(:,:,1:), IST%diag, G=G, mask=G%Lmask2dT)
Since index k=0 of part_size is for open ocean. The past_avg() call triggered a error due to the array shape difference.
I'm planning to fix this as part of mom-ocean/MOM6#147
The text was updated successfully, but these errors were encountered:
4d80387
No branches or pull requests
@Hallberg-NOAA can confirm that at ice_model.F90:1381
if (IST%id_sw_abs_sfc>0) call post_avg(IST%id_sw_abs_sfc, IST%sw_abs_sfc, &
IST%part_size, IST%diag, G=G, mask=G%Lmask2dT)
Should be:
if (IST%id_sw_abs_sfc>0) call post_avg(IST%id_sw_abs_sfc, IST%sw_abs_sfc, &
IST%part_size(:,:,1:), IST%diag, G=G, mask=G%Lmask2dT)
Since index k=0 of part_size is for open ocean.
The past_avg() call triggered a error due to the array shape difference.
I'm planning to fix this as part of mom-ocean/MOM6#147
The text was updated successfully, but these errors were encountered: