From d9035fc97f90196906a86658aae283df9aa76081 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=BChle=2C=20Laura=20Christine=20=28lakue103=29?= <laura.kuehle@uni-duesseldorf.de> Date: Fri, 12 May 2023 10:15:13 +0200 Subject: [PATCH] Marked Burgers' equation as inviscid. --- Snakefile | 2 +- scripts/tcd/Equation.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Snakefile b/Snakefile index 207306e..751bca6 100644 --- a/Snakefile +++ b/Snakefile @@ -23,7 +23,7 @@ TODO: Contemplate allowing vector input for ICs TODO: Discuss how wavelet details should be plotted Urgent: -TODO: Mark Burgers' equation as inviscid +TODO: Mark Burgers' equation as inviscid -> Done TODO: Make sure CFL number is absolute value TODO: Make sure only ghost cells are limited for Dirichlet boundary TODO: Move height adjustment and stretch factor into implicit solver function diff --git a/scripts/tcd/Equation.py b/scripts/tcd/Equation.py index 9f97e14..84e854b 100644 --- a/scripts/tcd/Equation.py +++ b/scripts/tcd/Equation.py @@ -355,7 +355,7 @@ class LinearAdvection(Equation): class Burgers(Equation): - """Class for Burgers' equation. + """Class for inviscid Burgers' equation. Attributes ---------- -- GitLab