Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
| jennyhickson | Jenny Hickson | Met Office | 2025-12-10 |
| mo-marqh | Mark Hedley | Met Office | 2025-12-11 |
| MatthewHambley | Matthew Hambley | Met Office | 2025-12-15 |
| tommbendall | Thomas Bendall | Met Office | 2026-01-15 |
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ subroutine w3_to_w2_correction_code( &
! Add contribution to the averaged W2 field. Factor of 0.5 as there
! is a contribution from each face
field_w2(map_w2(face)+k) = field_w2(map_w2(face)+k) - &
0.5_r_def * gradient * displacement(map_w2h_2d(face)+k)
0.5_r_def * gradient * displacement(map_w2h_2d(face))
end do

else
Expand All @@ -210,7 +210,7 @@ subroutine w3_to_w2_correction_code( &
! Add contribution to the averaged W2 field. Factor of 0.5 as there
! is a contribution from each face
field_w2(map_w2(face)+k) = field_w2(map_w2(face)+k) - &
0.5_r_def * gradient * displacement(map_w2h_2d(face)+k)
0.5_r_def * gradient * displacement(map_w2h_2d(face))
end do
end if
end if
Expand Down