forked from trixi-framework/Trixi.jl
-
Couldn't load subscription status.
- Fork 1
Hyperbolic-Parabolic elixir using SCT #81
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
Open
sbairos
wants to merge
22
commits into
DanielDoehring:main
Choose a base branch
from
sbairos:split_Jac_SCT
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
7097ac2
Hyperbolic-Parabolic elixir using SCT
bcb5214
Add CI test
6e87bd8
PR corrections
31b0394
Adding missed comment
f2499a9
Navierstokes hyperbolic parabolic convergence test
577871f
Adding CI test for advection_diffusion elixir
2847ebe
Revert "Adding CI test for advection_diffusion elixir"
0cd77a7
Apply suggestions from code review
DanielDoehring e48fabb
Apply suggestions from code review
DanielDoehring 385883f
Update examples/tree_2d_dgsem/elixir_navierstokes_convergence_implici…
DanielDoehring e64507c
Adding CI test for advection_diffusion elixir
b7ab829
Revert "Adding CI test for advection_diffusion elixir"
734db2a
Convert adv_diffusion to 1D and N-S to P4est
bc5624a
Use IMEX methods
8274072
Add demonstration of adv_velocity=0
89ce298
Fix tests
57d7d97
Apply suggestions from code review
DanielDoehring a258611
PR comments
2fdc315
PR comments2
6ddfdad
Undo overwrite of Project.toml
23e6c17
Remove the navierstokes elixir and test
4fc9196
Update unit test to actually include rhs!
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
116 changes: 116 additions & 0 deletions
116
examples/tree_1d_dgsem/elixir_advection_diffusion_implicit_sparse_jacobian.jl
This file contains hidden or 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,116 @@ | ||
| using Trixi | ||
| using SparseConnectivityTracer # For obtaining the Jacobian sparsity pattern | ||
| using SparseMatrixColorings # For obtaining the coloring vector | ||
| using OrdinaryDiffEqBDF, ADTypes | ||
|
|
||
| ############################################################################### | ||
| # semidiscretization of the linear advection-diffusion equation | ||
|
|
||
| advection_velocity = 1.5 | ||
| equations_hyperbolic = LinearScalarAdvectionEquation1D(advection_velocity) | ||
| diffusivity() = 5.0e-2 | ||
| equations_parabolic = LaplaceDiffusion1D(diffusivity(), equations_hyperbolic) | ||
|
|
||
| solver = DGSEM(polydeg = 3, surface_flux = flux_lax_friedrichs) | ||
|
|
||
| coordinates_min = -1.0 | ||
| coordinates_max = 1.0 | ||
|
|
||
| mesh = TreeMesh(coordinates_min, coordinates_max, | ||
| initial_refinement_level = 4, | ||
| n_cells_max = 30_000) | ||
|
|
||
| function initial_condition_diffusive_convergence_test(x, t, | ||
| equation::LinearScalarAdvectionEquation1D) | ||
| # Store translated coordinate for easy use of exact solution | ||
| RealT = eltype(x) | ||
| x_trans = x - equation.advection_velocity * t | ||
|
|
||
| nu = diffusivity() | ||
| c = 1 | ||
| A = 0.5f0 | ||
| L = 2 | ||
| f = 1.0f0 / L | ||
| omega = 2 * convert(RealT, pi) * f | ||
| scalar = c + A * sin(omega * sum(x_trans)) * exp(-2 * nu * omega^2 * t) | ||
| return SVector(scalar) | ||
| end | ||
| initial_condition = initial_condition_diffusive_convergence_test | ||
|
|
||
| ############################################################################### | ||
| ### semidiscretization for sparsity detection ### | ||
|
|
||
| jac_detector = TracerSparsityDetector() | ||
| # We need to construct the semidiscretization with the correct | ||
| # sparsity-detection ready datatype, which is retrieved here | ||
| jac_eltype = jacobian_eltype(real(solver), jac_detector) | ||
|
|
||
| semi_jac_type = SemidiscretizationHyperbolicParabolic(mesh, | ||
| (equations_hyperbolic, equations_parabolic), | ||
| initial_condition, solver, | ||
| uEltype = jac_eltype) | ||
|
|
||
| tspan = (0.0, 1.5) # Re-used for wrapping `rhs_parabolic!` below | ||
|
|
||
| # Call `semidiscretize` to create the ODE problem to have access to the | ||
| # initial condition based on which the sparsity pattern is computed | ||
| ode_jac_type = semidiscretize(semi_jac_type, tspan) | ||
| u0_ode = ode_jac_type.u0 | ||
| du_ode = similar(u0_ode) | ||
|
|
||
| ############################################################################### | ||
| ### Compute the Jacobian sparsity pattern ### | ||
|
|
||
| # Wrap the `Trixi.rhs!` function to match the signature `f!(du, u)`, see | ||
| # https://adrianhill.de/SparseConnectivityTracer.jl/stable/user/api/#ADTypes.jacobian_sparsity | ||
| rhs_parabolic_wrapped! = (du_ode, u0_ode) -> Trixi.rhs_parabolic!(du_ode, u0_ode, semi_jac_type, tspan[1]) | ||
|
|
||
| jac_prototype_parabolic = jacobian_sparsity(rhs_parabolic_wrapped!, du_ode, u0_ode, jac_detector) | ||
|
|
||
| # For most efficient solving we also want the coloring vector | ||
|
|
||
| coloring_prob = ColoringProblem(; structure = :nonsymmetric, partition = :column) | ||
| coloring_alg = GreedyColoringAlgorithm(; decompression = :direct) | ||
| coloring_result = coloring(jac_prototype_parabolic, coloring_prob, coloring_alg) | ||
| coloring_vec_parabolic = column_colors(coloring_result) | ||
|
|
||
| ############################################################################### | ||
| ### sparsity-aware semidiscretization and ODE ### | ||
|
|
||
| # Semidiscretization for actual simulation. `uEltype` is here retrieved from `solver` | ||
| semi_float_type = SemidiscretizationHyperbolicParabolic(mesh, | ||
| (equations_hyperbolic, equations_parabolic), | ||
| initial_condition, solver) | ||
|
|
||
| # Supply Jacobian prototype and coloring vector to the semidiscretization | ||
| ode_jac_sparse = semidiscretize(semi_float_type, tspan, | ||
| jac_prototype_parabolic = jac_prototype_parabolic, | ||
| colorvec_parabolic = coloring_vec_parabolic) | ||
| # using "dense" `ode = semidiscretize(semi_float_type, tspan)` is 4-6 times slower! | ||
|
|
||
| ############################################################################### | ||
| ### callbacks ### | ||
|
|
||
| summary_callback = SummaryCallback() | ||
|
|
||
| analysis_interval = 100 | ||
| analysis_callback = AnalysisCallback(semi_float_type, interval = analysis_interval) | ||
|
|
||
| alive_callback = AliveCallback(analysis_interval = analysis_interval) | ||
|
|
||
| save_restart = SaveRestartCallback(interval = 100, | ||
| save_final_restart = true) | ||
|
|
||
| # Note: No `stepsize_callback` due to (implicit) solver with adaptive timestep control | ||
| callbacks = CallbackSet(summary_callback, analysis_callback, alive_callback, save_restart) | ||
|
|
||
| ############################################################################### | ||
| ### solve the ODE problem ### | ||
|
|
||
| time_int_tol = 1.0e-9 | ||
| time_abs_tol = 1.0e-9 | ||
|
|
||
| sol = solve(ode_jac_sparse, SBDF2(; autodiff = AutoFiniteDiff()); | ||
| dt = 0.01, save_everystep = false, | ||
| abstol = time_abs_tol, reltol = time_int_tol, | ||
| ode_default_options()..., callback = callbacks) |
This file contains hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.