~fluidity-core/fluidity/sea-ice-branch

« back to all changes in this revision

Viewing changes to tests/flredecomp_2d_fieldweighted/src/Subduction_Mesh.geo

  • Committer: Simon Mouradian
  • Date: 2012-10-19 10:35:59 UTC
  • mfrom: (3520.32.371 fluidity)
  • Revision ID: simon.mouradian06@imperial.ac.uk-20121019103559-y36qa47phc69q8sc
mergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Gmsh project created on Fri Dec  4 14:59:47 2009
 
2
// We reproduce a subduction zone on a (660x600) km domain. 
 
3
// The kinematically moving slab (see image, on the left) subducts under a 50km-thick plate (up, right) and hence dynamically inducing a flow in the upper-mantle wedge (down, on the right). 
 
4
// We therefore are trying to match the benchmark results established by vanKeken2008 for this problem, computing the thermal field throughout the domain by use of finite element methods. 
 
5
// The structured, non-adaptive mesh shown in the images contains for instance the sought information at the mesh nodes, spaced out 2.5 km from each other near the critical point of contact between the three// different regions of our domain, and 7.5km everywhere else. In this particular case, the test uses a prescribed wedge flow (Batchelor1967) and is mainly intended to check for the validity of initial condi// tions at the various boundaries. 
 
6
 
 
7
minsize=4000;
 
8
maxsize=4000;
 
9
 
 
10
Point(1) = {0,0,0,minsize};
 
11
Point(2) = {660000,0,0,maxsize};
 
12
Point(3) = {660000,-50000,0,maxsize};
 
13
Point(4) = {660000,-600000,0,maxsize};
 
14
Point(5) = {600000,-600000,0,maxsize};
 
15
Point(6) = {0,-600000,0,maxsize};
 
16
Point(7) = {50000,-50000,0,minsize};
 
17
Point(8) = {660000,-420000,0,maxsize};
 
18
 
 
19
Line(1) = {1,2};
 
20
Line(2) = {2,3};
 
21
Line(3) = {3,8};
 
22
Line(4) = {4,5};
 
23
Line(5) = {5,6};
 
24
Line(7) = {1,7};
 
25
Line(9) = {7,3};
 
26
Line(10) = {8,4};
 
27
Line(11) = {7,5};
 
28
Line(14) = {6,1};
 
29
 
 
30
Physical Line(10) = {1};
 
31
Physical Line(11) = {2};
 
32
Physical Line(12) = {3};
 
33
Physical Line(13) = {4};
 
34
Physical Line(19) = {5};
 
35
Physical Line(15) = {14};
 
36
Physical Line(16) = {10};
 
37
// Physical Line(17) = {9};
 
38
// Physical Line(18) = {11};
 
39
// Physical Line(20) = {7};
 
40
 
 
41
Line Loop(22) = {1,2,-9,-7};
 
42
Plane Surface(23) = {22};
 
43
Physical Surface(24) = {23};
 
44
Line Loop(25) = {9,3,10,4,-11};
 
45
Plane Surface(26) = {25};
 
46
Physical Surface(27) = {26};
 
47
Line Loop(28) = {5,14,7,11};
 
48
Plane Surface(29) = {28};
 
49
Physical Surface(30) = {29};
 
50
 
 
51
Physical Line(31) = {11};
 
52
Physical Line(32) = {9};