-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
127 lines (116 loc) · 5.45 KB
/
index.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!doctype html>
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>libMesh - A C++ Finite Element Library</title>
<meta name="author" content="libMesh development team">
<link rel="stylesheet" type="text/css" media="all" href="styles.css">
<link rel="stylesheet" type="text/css" media="all" href="doxygen_stylesheet.css">
</head>
<body>
<nav id="fixedbar">
<ul id="fixednav">
<li><a href="index.html">Home</a></li>
<li><a href="support.html">About Us</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="https://github.com/libMesh/libmesh/graphs/contributors">Developers</a></li>
<li><a href="installation.html">Installation</a></li>
<li><a href="examples.html">Examples</a></li>
<li><a href="https://mooseframework.inl.gov/docs/doxygen/libmesh/index.html">Documentation</a></li>
</ul>
</nav>
<div id="w">
<header id="logo"><a href="index.html"><span id="logobg">SomeWebsiteLogo</span></a></header>
<nav id="navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="support.html">About Us</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="https://github.com/libMesh/libmesh/graphs/contributors">Developers</a></li>
<li><a href="installation.html">Installation</a></li>
<li><a href="examples.html">Examples</a></li>
<li><a href="https://mooseframework.inl.gov/docs/doxygen/libmesh/index.html">Documentation</a></li>
</ul>
</nav>
</div>
<div id="content">
<p>The <code>libMesh</code> library provides a framework for the
numerical simulation of partial differential equations using arbitrary
unstructured discretizations on serial and parallel platforms. A major
goal of the library is to provide support for adaptive mesh refinement
(AMR) computations in parallel while allowing a research scientist to
focus on the physics they are modeling.
<br>
<br>
<code>libMesh</code> currently supports 1D, 2D, and 3D steady and transient simulations on
a variety of popular geometric and finite element types.
The library makes use of high-quality, <a href="externalsoftware.html">existing software</a> whenever possible.
<a href="https://www.mcs.anl.gov/petsc">PETSc</a> or the
<a href="https://trilinos.org">Trilinos Project</a>
are used for the solution of linear systems on both serial and parallel platforms, and
<a href="http://www.mgnet.org/mgnet/Codes/laspack/html/laspack.html">LASPack</a>
is included with the library to provide linear solver support on serial machines.
An optional interface to <a href="http://slepc.upv.es">SLEPc</a> is also
provided for solving both standard and generalized eigenvalue problems.
<br>
<br>
The <code>libMesh</code> library was first created at The
University of Texas at Austin in the
CFDLab in March 2002. Major
contributions have come from developers at the Technische
Universität Hamburg-Harburg
<a href="https://www.tuhh.de/alt/mub/institute.html">Institute of Modelling and Computation</a>,
and recent contributions have been made by CFDLab associates at
<a href="https://pecos.ices.utexas.edu/">the PECOS Center</a> at <a
href="https://www.utexas.edu/">UT-Austin</a>,
<a href="https://www.inl.gov/article/advanced-modeling-simulation/">the
Computational Frameworks Group</a> at
<a href="https://www.inl.gov/">Idaho National Laboratory</a>,
<a href="https://www.nasa.gov/">NASA</a> <a href="https://www.nasa.gov/centers/johnson/home/index.html">Lyndon B. Johnson Space Center</a>,
<a href="https://akselos.com/">Akselos, Inc.</a>,
and the <a href="https://pateragroup.mit.edu/">Patera research group at MIT</a>.
The <code>libMesh</code> <a href="https://libmesh.github.io/developers.html">developers</a> welcome contributions
in the form of patches and bug reports (preferably with a minimal test case that reliably reproduces the error)
to the official
<a href="https://sourceforge.net/mail/?group_id=71130">mailing
lists</a>, or via
<a href="https://github.com/libMesh/libmesh/issues">Github issues</a>
and <a href="https://github.com/libMesh/libmesh/pulls">pull
requests</a>.
<br>
<br>
Many thanks to <a href="https://github.com">GitHub</a> for
<a href="https://github.com/libMesh">hosting the
project</a>. You can find out what is currently happening in the
development branch by checking out the
<a href="https://github.com/libMesh/libmesh/commits/master">Git
Logs</a> online, and you can see how many people are downloading the library
on the <a href="https://github.com/libMesh/libmesh/graphs">statistics</a> page.</p>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(window).on('scroll',function() {
var scrolltop = $(this).scrollTop();
if(scrolltop >= 215) {
$('#fixedbar').fadeIn(250);
}
else if(scrolltop <= 210) {
$('#fixedbar').fadeOut(250);
}
});
});
</script>
<!-- Google Analytics stuff -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-24978333-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>