From 912119d09321303ea1d97927497168d459910a95 Mon Sep 17 00:00:00 2001 From: Magnus Ulimoen Date: Wed, 30 Jun 2021 20:33:22 +0200 Subject: [PATCH] Add smooth periodic example --- multigrid/examples/smooth_periodic.json | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 multigrid/examples/smooth_periodic.json diff --git a/multigrid/examples/smooth_periodic.json b/multigrid/examples/smooth_periodic.json new file mode 100644 index 0000000..b27274a --- /dev/null +++ b/multigrid/examples/smooth_periodic.json @@ -0,0 +1,29 @@ +{ + "grids": { + "grid": { + "operators": { + "xi": "upwind9h2", + "eta": "upwind9h2" + }, + "x": { "linspace": { "start": 0, "end": 2, "steps": 50, "h2": true } }, + "y": { "linspace": { "start": 0, "end": 2, "steps": 50, "h2": true } }, + "boundary_conditions": { + "east": "this", + "west": "this", + "north": "this", + "south": "this" + } + } + }, + "integration_time": 4.0, + "initial_conditions": { + "expressions": { + "globals": "u0=1; v0=-0.5; p0=1.0;", + "rho": "1 + 0.2*math::sin(PI*((x+t*u0) + (y + t*v0))) ", + "u": "u0", + "v": "v0", + "p": "p0" + } + }, + "gamma": 1.4 +}