Skip to content

Commit

Permalink
adds comment
Browse files Browse the repository at this point in the history
  • Loading branch information
navidcy committed Sep 5, 2023
1 parent 30254bd commit 9ad060e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions regional_mom6/regional_mom6.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ def quadilateral_areas(lat, lon):

for j in range(ny - 1):
for i in range(nx - 1):
# construct the 4 3-vectors v1, v2, v3, v4 that point to the vertices of the quadrilaterals
v1 = [x[i, j], y[i, j], z[i, j]]
v2 = [x[i, j + 1], y[i, j + 1], z[i, j + 1]]
v3 = [x[i + 1, j + 1], y[i + 1, j + 1], z[i + 1, j + 1]]
Expand Down

0 comments on commit 9ad060e

Please sign in to comment.