-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathexamples.html
300 lines (175 loc) · 11.2 KB
/
examples.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<!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">
<h1>A Series of Example Programs</h1>
The following series of example programs have been
designed to get you started on the right foot.
They are arranged into categories based on which
library features they demonstrate.
<ul>
<li> Introduction <ol>
<li><L1><a href="examples/introduction_ex1.html">Creation of a Mesh Object</a></L1></li>
<li><L1><a href="examples/introduction_ex2.html">Defining a Simple System</a></L1></li>
<li><L1><a href="examples/introduction_ex3.html">Solving a 2D Poisson Problem</a></L1></li>
<li><L1><a href="examples/introduction_ex4.html">Solving a 2D or 3D Poisson Problem in Parallel</a></L1></li>
<li><L1><a href="examples/introduction_ex5.html">Run-time Quadrature Rule Selection</a></L1></li>
</ol> </li>
<li> Systems of Equations <ol>
<li><L1><a href="examples/systems_of_equations_ex1.html">Stokes Equations</a></L1></li>
<li><L1><a href="examples/systems_of_equations_ex2.html">Unsteady Nonlinear Navier-Stokes</a></L1></li>
<li><L1><a href="examples/systems_of_equations_ex3.html">Navier-Stokes with SCALAR Lagrange Multiplier</a></L1></li>
<li><L1><a href="examples/systems_of_equations_ex4.html">Linear Elastic Cantilever</a></L1></li>
<li><L1><a href="examples/systems_of_equations_ex5.html">Linear Elastic Cantilever with Constraint</a></L1></li>
<li><L1><a href="examples/systems_of_equations_ex6.html">3D Linear Elastic Cantilever</a></L1></li>
<li><L1><a href="examples/systems_of_equations_ex7.html">Large Deformation Elasticity</a></L1></li>
<li><L1><a href="examples/systems_of_equations_ex8.html">Small-sliding Contact</a></L1></li>
<li><L1><a href="examples/systems_of_equations_ex9.html">Linear elasticity with periodic constraints</a></L1></li>
</ol> </li>
<li> Transient Systems <ol>
<li><L1><a href="examples/transient_ex1.html">Solving a Transient Linear System in Parallel</a></L1></li>
<li><L1><a href="examples/transient_ex2.html">The Newmark System and the Wave Equation</a></L1></li>
<li><L1><a href="examples/transient_ex3.html">Explicit FV/DG Formulation of the 2D Advection Equation</a></L1></li>
</ol> </li>
<li> Adaptivity <ol>
<li><L1><a href="examples/adaptivity_ex1.html">Solving 1D PDE Using Adaptive Mesh Refinement</a></L1></li>
<li><L1><a href="examples/adaptivity_ex2.html">Solving a Transient System with Adaptive Mesh Refinement</a></L1></li>
<li><L1><a href="examples/adaptivity_ex3.html">Laplace's Equation in an L-Shaped Domain</a></L1></li>
<li><L1><a href="examples/adaptivity_ex4.html">Solving the Biharmonic Equation</a></L1></li>
<li><L1><a href="examples/adaptivity_ex5.html">Periodic Boundary Conditions</a></L1></li>
</ol> </li>
<li> Eigenproblems <ol>
<li><L1><a href="examples/eigenproblems_ex1.html">Solving an Eigen Problem</a></L1></li>
<li><L1><a href="examples/eigenproblems_ex2.html">Solving a generalized Eigen Problem</a></L1></li>
<li><L1><a href="examples/eigenproblems_ex3.html">Can you "hear the shape" of a drum?</a></L1></li>
<li><L1><a href="examples/eigenproblems_ex4.html">Solving a Condensed EigenSystem</a></L1></li>
</ol> </li>
<li> Subdomains <ol>
<li><L1><a href="examples/subdomains_ex1.html">Solving on a Subdomain</a></L1></li>
<li><L1><a href="examples/subdomains_ex2.html">Subdomain-Restricted Variables</a></L1></li>
<li><L1><a href="examples/subdomains_ex3.html">Integrating Discontinuous Data</a></L1></li>
</ol> </li>
<li> FEMSystem Framework <ol>
<li><L1><a href="examples/fem_system_ex1.html">Unsteady Navier-Stokes Equations with FEMSystem</a></L1></li>
<li><L1><a href="examples/fem_system_ex2.html">Nonlinear Elasticity with FEMSystem</a></L1></li>
<li><L1><a href="examples/fem_system_ex3.html">Unsteady Linear Elasticity</a></L1></li>
<li><L1><a href="examples/fem_system_ex4.html">Mixed-dimension Heat Transfer</a></L1></li>
<li><L1><a href="examples/fem_system_ex5.html">Unsteady Linear Elasticity and Isogeometric Analysis (IGA)</a></L1></li>
</ol> </li>
<li> Reduced Basis <ol>
<li><L1><a href="examples/reduced_basis_ex1.html">Certified Reduced Basis Method</a></L1></li>
<li><L1><a href="examples/reduced_basis_ex2.html">Successive Constraint Method</a></L1></li>
<li><L1><a href="examples/reduced_basis_ex3.html">Transient Reduced Basis Problem</a></L1></li>
<li><L1><a href="examples/reduced_basis_ex4.html">Empirical Interpolation Method</a></L1></li>
<li><L1><a href="examples/reduced_basis_ex5.html">Reduced Cantilever Problem</a></L1></li>
<li><L1><a href="examples/reduced_basis_ex6.html">Heat Transfer on a Curved Domain in 3D</a></L1></li>
<li><L1><a href="examples/reduced_basis_ex7.html">Acoustic Horn</a></L1></li>
</ol> </li>
<li> Adjoints <ol>
<li><L1><a href="examples/adjoints_ex1.html">Adjoint-based Goal Oriented Refinement</a></L1></li>
<li><L1><a href="examples/adjoints_ex2.html">Adjoint-based Parameter Sensitivities</a></L1></li>
<li><L1><a href="examples/adjoints_ex3.html">Adjoint-based coupled coupled Stokes + Convection Diffusion Goal Oriented Refinement</a></L1></li>
<li><L1><a href="examples/adjoints_ex4.html">Adjoint-based Goal Oriented Refinement</a></L1></li>
<li><L1><a href="examples/adjoints_ex5.html">SolutionHistory, General Localized Vectors and Unsteady Adjoints</a></L1></li>
<li><L1><a href="examples/adjoints_ex6.html">Poisson Equation in square domain with AdjointRefinementErrorEstimator</a></L1></li>
<li><L1><a href="examples/adjoints_ex7.html">Unsteady Adjoint Refinement Error Estimator for Model Error Estimation</a></L1></li>
</ol> </li>
<li> Vector-Valued Finite Elements <ol>
<li><L1><a href="examples/vector_fe_ex1.html">Uncoupled Poisson Problem</a></L1></li>
<li><L1><a href="examples/vector_fe_ex2.html">Unsteady Navier-Stokes with FEMSystem</a></L1></li>
<li><L1><a href="examples/vector_fe_ex3.html">Nedelec Elements for H(curl) Problems in 2D</a></L1></li>
<li><L1><a href="examples/vector_fe_ex4.html">Nedelec Elements for H(curl) Problems in 3D</a></L1></li>
<li><L1><a href="examples/vector_fe_ex5.html">Discontinuous Galerkin Vector Poisson Problem</a></L1></li>
<li><L1><a href="examples/vector_fe_ex6.html">Raviart-Thomas Elements for H(div) Div-Grad Problems in 2D and 3D</a></L1></li>
<li><L1><a href="examples/vector_fe_ex7.html">Hybridized Raviart-Thomas Elements for Poisson</a></L1></li>
<li><L1><a href="examples/vector_fe_ex8.html">Hybridized Local Discontinuous Galerkin Elements for Poisson</a></L1></li>
<li><L1><a href="examples/vector_fe_ex9.html">Hybridized Local Discontinuous Galerkin Elements for Navier-Stokes</a></L1></li>
<li><L1><a href="examples/vector_fe_ex10.html">Raviart-Thomas Elements for H(div) Grad-Div Problems in 2D and 3D</a></L1></li>
</ol> </li>
<li> Miscellaneous <ol>
<li><L1><a href="examples/miscellaneous_ex1.html">Infinite Elements for the Wave Equation</a></L1>
<li><L1><a href="examples/miscellaneous_ex2.html">Complex Numbers and the "FrequencySystem"</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex3.html">2D Laplace-Young Problem Using Nonlinear Solvers</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex4.html">Using a Shell Matrix</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex5.html">Interior Penalty Discontinuous Galerkin</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex6.html">Meshing with Triangle and Tetgen</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex7.html">Variational Inequalities and PetscDMNonlinearSolver</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex8.html">Pointcloud-based Meshfree Interpolation</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex9.html">Thermal "film resistance" with an Interface Term</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex10.html">Stitching Meshes</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex11.html">Loop Subdivision Shell Elements</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex12.html">MITC4 Shell Elements</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex13.html">Quad8 Shell Elements</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex14.html">Infinite Elements With Imaginary Frequency</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex15.html">Infinite Elements With Zero Frequency: Unbound Laplace Equation</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex16.html">Static Condensation with Second Order Lagrange Elements</a></L1></li>
<li><L1><a href="examples/miscellaneous_ex17.html">Demonstrating mix of preallocated/hash-table matrix assemblies</a></L1></li>
</ol> </li>
<li> Optimization <ol>
<li><L1><a href="examples/optimization_ex1.html">Optimization of a Quadratic Objective Function</a></L1></li>
<li><L1><a href="examples/optimization_ex2.html">Constrained Optimization</a></L1></li>
</ol> </li>
<li> Solution Transfer <ol>
<li><L1><a href="examples/solution_transfer_ex1.html">Transfer Solution From One Mesh to Another</a></L1></li>
</ol> </li>
</ul>
</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>