From f576becfd073fad4c441237982e9b7b3ea7caba7 Mon Sep 17 00:00:00 2001 From: Florian Atteneder <florian.atteneder@uni-jena.de> Date: Sun, 3 Sep 2023 21:58:02 +0200 Subject: [PATCH] add TODO on bdryconds not being implemented for AV 2d --- src/EulerEq/rhs.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/EulerEq/rhs.jl b/src/EulerEq/rhs.jl index 13ba6d1f..d2c5808b 100644 --- a/src/EulerEq/rhs.jl +++ b/src/EulerEq/rhs.jl @@ -235,6 +235,7 @@ function rhs!(env, P::Project2d, hrsc::HRSC.AbstractArtificialViscosity, mesh::M ## solve auxiliary equation: q + ∂x u = 0 broadcast_faces_2!(ldg_nflux, equation, mesh) + # TODO Need to revise Bdry conditions # broadcast_bdry_2!(ldg_bdryllf, equation, P.bdrycond, mesh) compute_rhs_weak_form!(ldg_rho_x, rho, 0, nflx_rho_x, mesh) compute_rhs_weak_form!(ldg_rho_y, 0, rho, nflx_rho_y, mesh) @@ -248,6 +249,7 @@ function rhs!(env, P::Project2d, hrsc::HRSC.AbstractArtificialViscosity, mesh::M ## compute rhs of regularized equation: ∂t u + ∂x f + ∂x μ q = 0 broadcast_volume_2!(flux, equation, mesh) broadcast_faces_2!(llf, equation, mesh) + # TODO Need to revise Bdry conditions # broadcast_bdry_2!(bdryllf, equation, mesh) broadcast_volume_2!(av_flux_2d, equation, mesh) -- GitLab