-
Notifications
You must be signed in to change notification settings - Fork 41
/
albany.html
107 lines (86 loc) · 2.38 KB
/
albany.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<html>
<head>
<title>
ALBANY - Linear Algebra Library
</title>
</head>
<body bgcolor="#EEEEEE" link="#CC0000" alink="#FF3300" vlink="#000055">
<h1 align = "center">
ALBANY <br> Linear Algebra Library
</h1>
<hr>
<p>
<b>ALBANY</b>
is a C++ program which
allows the implementation of finite element PDE solvers for a variety of
fundamental research applications, including LCM (Laboratory for
Computational Mechanics), QCAD (Quantum Computer Aided Design) and FELIX
(Finite Element for Land Ice eXperiments).
</p>
<p>
The highlight of Albany is the PDE assembly. The template-based generic
programming approach allows developers to just program for residual
equations, and all manner of derivatives and polynomial propogations
get automatically computed with no additional development effort.
</p>
<h3 align = "center">
Licensing:
</h3>
<p>
The computer code and data files described and made available on this web page
are distributed under
<a href = "../../txt/gnu_lgpl.txt">the GNU LGPL license.</a>
</p>
<p>
The ALBANY code is Copyright by the Sandia Corporation and released under
a BSD-style license.
</p>
<h3 align = "center">
Languages:
</h3>
<p>
<b>ALBANY</b> is available in
<a href = "../../cpp_src/albany/albany.html">a C++ version</a>.
</p>
<h3 align = "center">
Reference:
</h3>
<p>
<ol>
<li>
ALBANY Development: Getting Started,<br>
Sandia National Laboratories.
</li>
</ol>
</p>
<h3 align = "center">
Examples and Tests:
</h3>
<p>
<ul>
<li>
<a href = "dome_input.xml">
dome_input.xml</a>, an input file describing the dome problem.
</li>
<li>
<a href = "dome.sh">
dome.sh</a>, a MOAB script which uses 4 MPI processes to
run Albany on the dome input.
</li>
<li>
<a href = "dome_output.txt">dome_output.txt</a>,
the output file.
</li>
</ul>
</p>
<p>
You can go up one level to <a href = "../cpp_src.html">
the C++ source codes</a>.
</p>
<hr>
<i>
Last revised on 20 February 2014.
</i>
<!-- John Burkardt -->
</body>
</html>