Skip to content

Uncomment test block in test_dynamics.jl #4542

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

Merged
merged 2 commits into from
May 24, 2025
Merged
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
7 changes: 3 additions & 4 deletions test/test_dynamics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,8 @@ function stratified_fluid_remains_at_rest_with_tilted_gravity_temperature_tracer
g̃ = (0, sind(θ), cosd(θ))
buoyancy = BuoyancyForce(SeawaterBuoyancy(), gravity_unit_vector=g̃)

α = buoyancy.model.equation_of_state.thermal_expansion
g₀ = buoyancy.model.gravitational_acceleration
α = buoyancy.formulation.equation_of_state.thermal_expansion
g₀ = buoyancy.formulation.gravitational_acceleration
∂T∂z = N² / (g₀ * α)

y_bc = GradientBoundaryCondition(∂T∂z * g̃[2])
Expand Down Expand Up @@ -600,7 +600,7 @@ timesteppers = (:QuasiAdamsBashforth2, :RungeKutta3)
end
end
end
#=

@testset "Gaussian immersed diffusion" begin
for time_discretization in (ExplicitTimeDiscretization(), VerticallyImplicitTimeDiscretization())

Expand Down Expand Up @@ -731,5 +731,4 @@ timesteppers = (:QuasiAdamsBashforth2, :RungeKutta3)
end
end
end
=#
end