Skip to content

Commit

Permalink
some rephrasing
Browse files Browse the repository at this point in the history
  • Loading branch information
navidcy committed Nov 11, 2020
1 parent d844478 commit a580bee
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions examples/two_dimensional_turbulence.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ using Oceananigans.Fields, Oceananigans.AbstractOperations
u, v, w = model.velocities

# Next we create two objects called `ComputedField`s that calculate
# _(i)_ vorticity, defined as
# _(i)_ vorticity that measures the rate at which the fluid rotates
# and is defined as
#
# ```math
# 蠅 = 鈭俖x v - 鈭俖y u \, ,
Expand All @@ -56,7 +57,6 @@ u, v, w = model.velocities

蠅_field = ComputedField(蠅)

# "Vorticity" measures the rate at which the fluid rotates.
# We also calculate _(ii)_ the _speed_ of the flow,
#
# ```math
Expand Down Expand Up @@ -107,8 +107,9 @@ using Oceananigans.Grids

x蠅, y蠅, z蠅 = nodes(蠅_field)
xs, ys, zs = nodes(s_field)
nothing # hide

# and animate the vorticity.
# and animate the vorticity and fluid speed.

using Plots

Expand Down

0 comments on commit a580bee

Please sign in to comment.