~fluidity-core/fluidity/darcy_weak_bcs

« back to all changes in this revision

Viewing changes to tests/darcy_impes_p1_pseudo1phase_velBCinlet/cube.geo

  • Committer: Brendan Tollit
  • Date: 2012-07-24 11:24:05 UTC
  • Revision ID: brendan.tollit05@imperial.ac.uk-20120724112405-fp4yicflsgtd2rt0
Correct some test case regression answers, mainly for 3d as some have changed slightly.

Add a consistent subcycling test case to stress this code path, although I still wouldnt 
recommend using it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// define a layer variable
2
 
lay_x = 20;
3
 
lay_y = 5;
4
 
lay_z = 5;
5
 
 
6
 
// define a len variable
7
 
len_x = 300.0;
8
 
len_y = 300.0;
9
 
len_z = 300.0;
10
 
 
11
 
Point(1) = {0.0, 0.0, 0.0, 1.0};
12
 
 
13
 
Extrude {len_x, 0.0, 0.0} {
14
 
  Point{1}; Layers{lay_x}; 
15
 
}
16
 
 
17
 
Extrude {0.0, len_y, 0.0} {
18
 
  Line{1}; Layers{lay_y}; 
19
 
}
20
 
 
21
 
Extrude {0.0, 0.0, len_z} {
22
 
  Surface{5}; Layers{lay_z}; 
23
 
}
24
 
 
25
 
// bottom
26
 
Physical Surface(1) = {5};
27
 
 
28
 
// top
29
 
Physical Surface(2) = {27};
30
 
 
31
 
// left
32
 
Physical Surface(3) = {26};
33
 
 
34
 
// right
35
 
Physical Surface(4) = {18};
36
 
 
37
 
// front
38
 
Physical Surface(5) = {14};
39
 
 
40
 
// back
41
 
Physical Surface(6) = {22};
42
 
 
43
 
Physical Volume(1) = {1};