From 1c884fe09d1682416fcb87738fdf172b0f3a72a0 Mon Sep 17 00:00:00 2001 From: Magnus Ulimoen Date: Tue, 29 Jun 2021 18:36:39 +0200 Subject: [PATCH] Add 100x100 grid config on single grid --- multigrid/examples/single.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 multigrid/examples/single.json diff --git a/multigrid/examples/single.json b/multigrid/examples/single.json new file mode 100644 index 0000000..9b68b29 --- /dev/null +++ b/multigrid/examples/single.json @@ -0,0 +1,31 @@ +{ + "grids": { + "grid": { + "x": { "linspace": { "start": -5, "end": 5, "steps": 100 } }, + "y": { "linspace": { "start": -5, "end": 5, "steps": 100 } }, + "boundary_conditions": { + "south": "this", + "north": "this", + "east": "this", + "west": "this" + }, + "operators": { + "xi": "upwind9", + "eta": "upwind9" + } + } + }, + + "initial_conditions": { + "vortex": { + "vortices": [{ + "x0": -1.0, + "y0": 0.0, + "rstar": 0.5, + "eps": 1.0 + }], + "mach": 0.5 + } + }, + "integration_time": 2.0 +}