Revision b6a62f69168ac37de8f0255a56692aced6d72340 authored by Céline Van Landeghem on 09 July 2024, 15:14:17 UTC, committed by Céline Van Landeghem on 09 July 2024, 15:14:17 UTC
2 parent s a0b25a9 + 699fb8d
Raw File
domain_3d.geo
// Gmsh project created on Wed May 11 18:17:21 2022
SetFactory("OpenCASCADE");
//+
h = 0.05;
Mesh.CharacteristicLengthMax = h;
//+
Box(1) = {0, 0, 0, 1, 1, 1};
Box(2) = {0,0,0,0.5,0.5,0.5};
b() = BooleanFragments{ Volume{1}; Delete; }{Volume{2}; Delete;};
Physical Volume("MatOne") = {3};
Physical Surface("RequiredBoundaryOfRequiredElements") = {6,7,9};
Physical Surface("OtherRequiredBoundary") = {8};
back to top