Skip to content

Commit

Permalink
hide output after loading exampel resoltes
Browse files Browse the repository at this point in the history
  • Loading branch information
jagoosw committed Aug 31, 2023
1 parent 6e37c82 commit 3a71aaf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/column.jl
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ bPOM = FieldTimeSeries("$filename.jld2", "bPOM")
Alk = FieldTimeSeries("$filename.jld2", "Alk")

x, y, z = nodes(P)
times = P.times
times = P.times;

# We compute the air-sea CO₂ flux at the surface (corresponding to vertical index `k = grid.Nz`) and
# the carbon export by computing how much carbon sinks below some arbirtrary depth; here we use depth
Expand Down
4 changes: 2 additions & 2 deletions examples/data_forced.jl
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ wizard = TimeStepWizard(cfl = 0.2, diffusive_cfl = 0.2,
max_change = 1.5, min_change = 0.75,
cell_diffusion_timescale = column_diffusion_timescale,
cell_advection_timescale = column_advection_timescale)

simulation.callbacks[:wizard] = Callback(wizard, IterationInterval(10))
nothing #hide

Expand All @@ -130,7 +130,7 @@ bPOM = FieldTimeSeries("$filename.jld2", "bPOM")
Alk = FieldTimeSeries("$filename.jld2", "Alk")

x, y, z = nodes(P)
times = P.times
times = P.times;

# We compute the air-sea CO₂ flux at the surface (corresponding to vertical index `k = grid.Nz`) and
# the carbon export by computing how much carbon sinks below some arbirtrary depth; here we use depth
Expand Down
2 changes: 1 addition & 1 deletion examples/eady.jl
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ DIC = FieldTimeSeries("eady_turbulence_bgc.jld2", "DIC")
times = ζ.times

xζ, yζ, zζ = nodes(ζ)
xc, yc, zc = nodes(P)
xc, yc, zc = nodes(P);

# and plot.

Expand Down
2 changes: 1 addition & 1 deletion examples/kelp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ bPOC = FieldTimeSeries("$filename.jld2", "bPOC")
Alk = FieldTimeSeries("$filename.jld2", "Alk")

x, y, z = nodes(P)
times = P.times
times = P.times;

# We compute the air-sea CO₂ flux at the surface (corresponding to vertical index `k = grid.Nz`) and
# the carbon export by computing how much carbon sinks below some arbirtrary depth; here we use depth
Expand Down

0 comments on commit 3a71aaf

Please sign in to comment.