SummationByParts/multigrid/examples/interpolation.json

41 lines
1.1 KiB
JSON
Raw Normal View History

2020-04-19 16:52:47 +00:00
{
"grids": {
"default": {
"operators": {
"xi": "upwind9",
"eta": "upwind9"
2020-09-04 14:51:18 +00:00
},
"boundary_conditions": {
"south": "vortex",
"north": "vortex",
"east": "vortex",
"west": "vortex"
2020-04-19 16:52:47 +00:00
}
},
"grid0": {
2020-09-03 22:05:25 +00:00
"x": { "linspace": { "start": -5, "end": 5, "steps": 50 } },
"y": { "linspace": { "start": 0, "end": 5, "steps": 25 } },
2020-04-19 16:52:47 +00:00
"boundary_conditions": {
2020-09-04 14:51:18 +00:00
"south": {"interpolate": { "neighbour": "grid1", "operator": "9"}}
2020-04-19 16:52:47 +00:00
}
},
"grid1": {
2020-09-03 22:05:25 +00:00
"x": { "linspace": { "start": -5, "end": 5, "steps": 99 } },
"y": { "linspace": { "start": -5, "end": 0, "steps": 50 } },
2020-04-19 16:52:47 +00:00
"boundary_conditions": {
2020-09-04 14:51:18 +00:00
"north": {"interpolate": { "neighbour": "grid0", "operator": "9"}}
2020-04-19 16:52:47 +00:00
}
}
},
"integration_time": 2.0,
"vortex": {
2020-09-03 22:05:25 +00:00
"vortices": [{
"x0": -1.0,
"y0": 0.0,
"rstar": 0.5,
"eps": 1.0
}],
"mach": 0.5
2020-04-19 16:52:47 +00:00
}
}