Skip to content
New issue

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

s/unkwown/unknown/ #36

Merged
merged 1 commit into from
Nov 20, 2021
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion cicecore/cicedynB/dynamics/ice_dyn_evp.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,7 @@ subroutine div_stress (nx_block, ny_block, &
+ (c1/dyE_N(i,j)) * ( (dyT_U(i,j)**2) * stress12(i,j) &
-(dyT_U(i-1,j)**2)*stress12(i-1,j) ) )
case default
call abort_ice(subname // ' unkwown grid_location: ' // grid_location)
call abort_ice(subname // ' unknown grid_location: ' // grid_location)
end select


Expand Down
4 changes: 2 additions & 2 deletions cicecore/cicedynB/infrastructure/ice_grid.F90
Original file line number Diff line number Diff line change
Expand Up @@ -2859,7 +2859,7 @@ real(kind=dbl_kind) function grid_neighbor_min(field, i, j, grid_location) resul
case('N')
mini = min(field(i,j), field(i,j+1))
case default
call abort_ice(subname // ' unkwown grid_location: ' // grid_location)
call abort_ice(subname // ' unknown grid_location: ' // grid_location)
end select

end function grid_neighbor_min
Expand Down Expand Up @@ -2891,7 +2891,7 @@ real(kind=dbl_kind) function grid_neighbor_max(field, i, j, grid_location) resul
case('N')
maxi = max(field(i,j), field(i,j+1))
case default
call abort_ice(subname // ' unkwown grid_location: ' // grid_location)
call abort_ice(subname // ' unknown grid_location: ' // grid_location)
end select

end function grid_neighbor_max
Expand Down