From b9212a4ec3d02213af25145a831c73add8d4958a Mon Sep 17 00:00:00 2001 From: Magnus Ulimoen Date: Mon, 5 Jul 2021 21:51:08 +0200 Subject: [PATCH] Add gresho vortex example --- multigrid/examples/gresho.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 multigrid/examples/gresho.json diff --git a/multigrid/examples/gresho.json b/multigrid/examples/gresho.json new file mode 100644 index 0000000..0ce296d --- /dev/null +++ b/multigrid/examples/gresho.json @@ -0,0 +1,29 @@ +{ + "grids": { + "grid": { + "operators": { + "xi": "upwind9", + "eta": "upwind9" + }, + "x": { "linspace": { "start": -1, "end": 1, "steps": 200 } }, + "y": { "linspace": { "start": -1, "end": 1, "steps": 200 } }, + "boundary_conditions": { + "east": "this", + "west": "this", + "north": "this", + "south": "this" + } + } + }, + "integration_time": 2.0, + "initial_conditions": { + "expressions": { + "globals": "Mach = 0.4; p0 = 1/(GAMMA * Mach^2);", + "rho": "1", + "u": "r=math::hypot(x,y); -math::sin(math::atan2(y, x)) * case(r < 0.2, 5*r, r < 0.4, 2 - 5*r, 0)", + "v": "r=math::hypot(x,y); math::cos(math::atan2(y, x)) * case(r < 0.2, 5*r, r < 0.4, 2 - 5*r, 0)", + "p": "r=math::hypot(x,y); case(r < 0.2, p0 + 25.0/2.0*r*r, r < 0.4, p0 + 25.0/2.0*r*r + 4*(1 - 5*r - math::ln(0.2) + math::ln(r)), p0 - 2 + 4*math::ln(2))" + } + }, + "gamma": 1.66666666667 +}