This file on gitlab
The stokes-darcy.geo file given below, describes the domain for the Stokes-Darcy equation example problem. It can be used to generate the respective mesh using the following command:
gmsh stokes-darcy.geo -1 -2 -o stokes-darcy.msh
1// SPDX-FileCopyrightText: Copyright © DUNE-FUFEM Project contributors, see file AUTHORS.md
2// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception OR LGPL-3.0-or-later
4// Generate msh file with $ gmsh stokes-darcy.geo -1 -2 -o stokes-darcy.msh
10Point(5) = {3.5, 1, 0};
11Point(6) = {1.5, 1, 0};
12Point(7) = {0.5, 2, 0};
27Curve Loop(1) = {4, 5, 6, 9};
28Plane Surface(1) = {1};
29Physical Surface(1) = {1};
32Curve Loop(2) = {1, 2, 3, 4, 5, 6, 7, 8};
33Plane Surface(2) = {2};
34Physical Surface(2) = {2};
36// Stokes Dirichlet boundary
37Physical Curve(1) = {9};
39// Darcy Dirichlet boundary
40Physical Curve(2) = {1};
42Mesh.MshFileVersion = 2.2;
43Mesh.MeshSizeMax = 0.5;