-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enstrophy for 2D Navier-Stokes (#1591)
* Doubly periodic shear layer * test if prject toml shows up in git diff * remove chnages * Enstrophy for 2D Navier-Stokes
- Loading branch information
1 parent
fe0e78c
commit e1e680c
Showing
5 changed files
with
109 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
|
||
using OrdinaryDiffEq | ||
using Trixi | ||
|
||
############################################################################### | ||
# semidiscretization of the compressible Navier-Stokes equations | ||
|
||
# TODO: parabolic; unify names of these accessor functions | ||
prandtl_number() = 0.72 | ||
mu() = 1.0/3.0 * 10^(-3) # equivalent to Re = 3000 | ||
|
||
equations = CompressibleEulerEquations2D(1.4) | ||
equations_parabolic = CompressibleNavierStokesDiffusion2D(equations, mu=mu(), | ||
Prandtl=prandtl_number()) | ||
|
||
function initial_condition_shear_layer(x, t, equations::CompressibleEulerEquations2D) | ||
k = 80 | ||
delta = 0.05 | ||
u0 = 1.0 | ||
Ms = 0.1 # maximum Mach number | ||
|
||
rho = 1.0 | ||
v1 = x[2] <= 0.5 ? u0*tanh(k*(x[2]*0.5 - 0.25)) : tanh(k*(0.75 -x[2]*0.5)) | ||
v2 = u0*delta * sin(2*pi*(x[1]*0.5 + 0.25)) | ||
p = (u0 / Ms)^2 * rho / equations.gamma # scaling to get Ms | ||
|
||
return prim2cons(SVector(rho, v1, v2, p), equations) | ||
end | ||
initial_condition = initial_condition_shear_layer | ||
|
||
volume_flux = flux_ranocha | ||
solver = DGSEM(polydeg=3, surface_flux=flux_hllc, | ||
volume_integral=VolumeIntegralFluxDifferencing(volume_flux)) | ||
|
||
coordinates_min = (0.0, 0.0) | ||
coordinates_max = (1.0, 1.0) | ||
mesh = TreeMesh(coordinates_min, coordinates_max, | ||
initial_refinement_level=4, | ||
n_cells_max=100_000) | ||
|
||
|
||
semi = SemidiscretizationHyperbolicParabolic(mesh, (equations, equations_parabolic), | ||
initial_condition, solver) | ||
|
||
############################################################################### | ||
# ODE solvers, callbacks etc. | ||
|
||
tspan = (0.0, 2.0) | ||
ode = semidiscretize(semi, tspan) | ||
|
||
summary_callback = SummaryCallback() | ||
|
||
analysis_interval = 50 | ||
analysis_callback = AnalysisCallback(semi, interval=analysis_interval, save_analysis=true, | ||
extra_analysis_integrals=(energy_kinetic, | ||
energy_internal, | ||
enstrophy)) | ||
|
||
alive_callback = AliveCallback(analysis_interval=analysis_interval,) | ||
|
||
callbacks = CallbackSet(summary_callback, | ||
analysis_callback, | ||
alive_callback) | ||
|
||
############################################################################### | ||
# run the simulation | ||
|
||
time_int_tol = 1e-8 | ||
sol = solve(ode, RDPK3SpFSAL49(); abstol=time_int_tol, reltol=time_int_tol, | ||
ode_default_options()..., callback=callbacks) | ||
summary_callback() # print the timer summary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters