Skip to content
Snippets Groups Projects
Commit 7c81ad32 authored by Florian Zill's avatar Florian Zill
Browse files

[examples] take msh files into account

parent bcd0faa3
No related branches found
No related tags found
1 merge request!230Preparation for msh2vtu overhaul
...@@ -14,6 +14,7 @@ __all__ = ["analytical_diffusion"] ...@@ -14,6 +14,7 @@ __all__ = ["analytical_diffusion"]
_meshseries_dir = EXAMPLES_DIR / "meshseries" _meshseries_dir = EXAMPLES_DIR / "meshseries"
_feflow_dir = EXAMPLES_DIR / "feflow" _feflow_dir = EXAMPLES_DIR / "feflow"
_logs_dir = EXAMPLES_DIR / "logs" _logs_dir = EXAMPLES_DIR / "logs"
_msh_dir = EXAMPLES_DIR / "msh"
_prj_dir = EXAMPLES_DIR / "prj" _prj_dir = EXAMPLES_DIR / "prj"
_surface_dir = EXAMPLES_DIR / "meshlib" / "mesh1" / "surface_data" _surface_dir = EXAMPLES_DIR / "meshlib" / "mesh1" / "surface_data"
_shp_dir = EXAMPLES_DIR / "shapefiles" _shp_dir = EXAMPLES_DIR / "shapefiles"
...@@ -67,6 +68,9 @@ def load_mesh_mechanics_2D(): ...@@ -67,6 +68,9 @@ def load_mesh_mechanics_2D():
) )
msh_geolayers_2d = _msh_dir / "geolayers_2d.msh"
msh_geoterrain_3d = _msh_dir / "geoterrain_3d.msh"
feflow_model_2layers = _feflow_dir / "2layers_model.fem" feflow_model_2layers = _feflow_dir / "2layers_model.fem"
feflow_model_box_Neumann = _feflow_dir / "box_3D_neumann.fem" feflow_model_box_Neumann = _feflow_dir / "box_3D_neumann.fem"
feflow_model_box_Robin = _feflow_dir / "box_3D_cauchy_areal.fem" feflow_model_box_Robin = _feflow_dir / "box_3D_cauchy_areal.fem"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment