From e1ddb78968052fadf22556adec723590901fb022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20K=C3=B6hler?= <27728103+Ceyron@users.noreply.github.com> Date: Tue, 22 Oct 2024 13:50:41 +0200 Subject: [PATCH] Conservative KS should use conservative convection --- exponax/stepper/_kuramoto_sivashinsky.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exponax/stepper/_kuramoto_sivashinsky.py b/exponax/stepper/_kuramoto_sivashinsky.py index 7acabbf..b4f84c4 100644 --- a/exponax/stepper/_kuramoto_sivashinsky.py +++ b/exponax/stepper/_kuramoto_sivashinsky.py @@ -190,7 +190,7 @@ def __init__( second_order_diffusivity: float = 1.0, fourth_order_diffusivity: float = 1.0, single_channel: bool = False, - conservative: bool = False, + conservative: bool = True, dealiasing_fraction: float = 2 / 3, order: int = 2, num_circle_points: int = 16,