~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/fei/test/remEssBCs_Trilinos/pll_RemEssBCs.in.3.2

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Johannes Ring
  • Date: 2009-12-13 12:53:22 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091213125322-in0nrdjc55deqsw9
Tags: 10.0.3.dfsg-1
[Christophe Prud'homme]
* New upstream release

[Johannes Ring]
* debian/patches/libname.patch: Add prefix 'libtrilinos_' to all
  libraries. 
* debian/patches/soname.patch: Add soversion to libraries.
* debian/watch: Update download URL.
* debian/control:
  - Remove python-numeric from Build-Depends (virtual package).
  - Remove automake and autotools from Build-Depends and add cmake to
    reflect switch to CMake.
  - Add python-support to Build-Depends.
* debian/rules: 
  - Cleanup and updates for switch to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# 1 block, 1 field (size 1), 4 nodes-per-elem, 3 elems, 2 ess BCs
 
2
#
 
3
# This "mesh" looks like this (node numbers at low left of each node *):
 
4
# element numbers denoted by 'E<n>'
 
5
#
 
6
#  *-----*-----*-----*
 
7
# 3|    2|    5|    7|
 
8
#  |     |     |     |
 
9
#  |E1   |E2   |E3   |
 
10
#  *-----*-----*-----*
 
11
# 0     1     4     6
 
12
#
 
13
# and we'll apply essential boundary conditions
 
14
# 5.0 at node 5 and 7.0 at node 7
 
15
#
 
16
 
 
17
solveType
 
18
0
 
19
 
 
20
numFields
 
21
1
 
22
fieldIDs
 
23
0
 
24
fieldSizes
 
25
1
 
26
numElemBlocks
 
27
1
 
28
blockID
 
29
0
 
30
numElements
 
31
1
 
32
numNodesPerElement
 
33
4
 
34
 
 
35
numFieldsPerNode
 
36
# numFieldsPerNode is a list of length 'numNodesPerElement'
 
37
1 1 1 1
 
38
 
 
39
nodalFieldIDs
 
40
# nodalFieldIDs is a table with 'numNodesPerElement' rows, and the
 
41
# i-th row is of length 'numFieldsPerNode[i]'
 
42
0
 
43
0
 
44
0
 
45
0
 
46
 
 
47
elemID
 
48
3
 
49
# connectivity -- 4 node IDs
 
50
4 6 7 5
 
51
# stiffness, 4 rows, 4 entries each
 
52
2.0  -1.0  0.2  0.2
 
53
-1.0  2.0  -1.0  0.2
 
54
0.2  -1.0  2.0  -1.0
 
55
0.2  0.2  -1.0  2.0
 
56
# load, 4 entries
 
57
1.0  1.0  1.0  1.0
 
58
 
 
59
numSharedNodeSets
 
60
1
 
61
# now, for this shared node set, the number of nodes:
 
62
2
 
63
# the nodeIDs:
 
64
4 5
 
65
# number-of-processors per node:
 
66
2 2
 
67
# the procs for the first node:
 
68
1 2
 
69
# the procs for the second node:
 
70
1 2
 
71
 
 
72
numBCNodeSets
 
73
2
 
74
# number of nodes
 
75
1
 
76
# fieldID
 
77
0
 
78
# offset into field
 
79
0
 
80
# node ID, prescribed value
 
81
5 5.0
 
82
 
 
83
# number of nodes
 
84
1
 
85
# fieldID
 
86
0
 
87
# offset into field
 
88
0
 
89
# node ID, prescribed value
 
90
7 7.0
 
91