Skip to content
Snippets Groups Projects
Commit 378b5f51 authored by Timo Koch's avatar Timo Koch
Browse files

Merge branch 'feature/add_structred_grid_script' into 'master'

[exercise-grids] Add .geo script for the structured grid.

See merge request !18
parents b78a1ff1 808157f1
No related branches found
No related tags found
1 merge request!18[exercise-grids] Add .geo script for the structured grid.
X = 60;
Y = 40;
Res = 1;
Point(1) = {0,0,0,Res};
Point(2) = {X,0,0,Res};
Point(3) = {X,Y,0,Res};
Point(4) = {0,Y,0,Res};
Line(5) = {1,2};
Line(6) = {2,3};
Line(7) = {3,4};
Line(8) = {4,1};
Line Loop(9) = {5,6,7,8};
Plane Surface(10) = 9;
numCellsX = 24;
numCellsY = 16;
Transfinite Line{5} = numCellsX + 1;
Transfinite Line{6} = numCellsY + 1;
Transfinite Line{7} = numCellsX + 1;
Transfinite Line{8} = numCellsY + 1;
Transfinite Surface "*";
Recombine Surface "*";
Transfinite Volume "*";
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