Skip to content

Commit e6e75f6

Browse files
committed
Add html files for transient_ex3
1 parent 0cb0b46 commit e6e75f6

2 files changed

Lines changed: 170 additions & 0 deletions

File tree

examples.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ <h1>A Series of Example Programs</h1>
9191

9292
<li><L1><a href="examples/transient_ex2.html">The Newmark System and the Wave Equation</a></L1></li>
9393

94+
<li><L1><a href="examples/transient_ex3.html">Explicit FV/DG Formulation of the 2D Advection Equation</a></L1></li>
95+
9496
</ol> </li>
9597

9698

examples/transient_ex3.html

Lines changed: 168 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,168 @@
1+
<!doctype html>
2+
<html lang="en-US">
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
5+
<title>libMesh - A C++ Finite Element Library</title>
6+
<meta name="author" content="libMesh development team">
7+
<link rel="stylesheet" type="text/css" media="all" href="../styles.css">
8+
<link rel="stylesheet" type="text/css" media="all" href="../doxygen_stylesheet.css">
9+
</head>
10+
11+
<body>
12+
<nav id="fixedbar">
13+
<ul id="fixednav">
14+
<li><a href="../index.html">Home</a></li>
15+
<li><a href="../support.html">About Us</a></li>
16+
<li><a href="../publications.html">Publications</a></li>
17+
<li><a href="https://github.com/libMesh/libmesh/graphs/contributors">Developers</a></li>
18+
<li><a href="../installation.html">Installation</a></li>
19+
<li><a href="../examples.html">Examples</a></li>
20+
<li><a href="https://mooseframework.inl.gov/docs/doxygen/libmesh/index.html">Documentation</a></li>
21+
</ul>
22+
</nav>
23+
24+
<div id="w">
25+
<header id="logo"><a href="../index.html"><span id="logobg">SomeWebsiteLogo</span></a></header>
26+
27+
<nav id="navigation">
28+
<ul>
29+
<li><a href="../index.html">Home</a></li>
30+
<li><a href="../support.html">About Us</a></li>
31+
<li><a href="../publications.html">Publications</a></li>
32+
<li><a href="https://github.com/libMesh/libmesh/graphs/contributors">Developers</a></li>
33+
<li><a href="../installation.html">Installation</a></li>
34+
<li><a href="../examples.html">Examples</a></li>
35+
<li><a href="https://mooseframework.inl.gov/docs/doxygen/libmesh/index.html">Documentation</a></li>
36+
</ul>
37+
</nav>
38+
39+
<div id="content">
40+
41+
<br> <h1> Link to the source code for this example: </h1>
42+
<a href="https://github.com/libMesh/libmesh/tree/master/examples/transient/transient_ex3" target="_blank">Open transient_ex3 in new tab.</a>
43+
<a name="output"></a>
44+
<br><br><br> <h1> The console output of the program: </h1>
45+
<pre>
46+
***************************************************************
47+
* Running Example transient_ex3:
48+
* ./example-opt -i advection_2D.in
49+
***************************************************************
50+
51+
Adding q1 variable using (CONSTANT, MONOMIAL) approximation to the system.
52+
EquationSystems
53+
n_systems()=1
54+
System #0, "Advection2D"
55+
Type "ClawSystem"
56+
Variables="q1"
57+
Finite Element Types="MONOMIAL", "JACOBI_20_00"
58+
Infinite Element Mapping="CARTESIAN"
59+
Approximation Orders="CONSTANT", "THIRD"
60+
n_dofs()=900
61+
n_local_dofs()=900
62+
max(n_local_dofs())=900
63+
n_constrained_dofs()=0
64+
n_local_constrained_dofs()=0
65+
max(local unconstrained dofs)=900
66+
n_vectors()=1
67+
n_matrices()=1
68+
DofMap Sparsity
69+
Average On-Processor Bandwidth <= 4.86667
70+
Average Off-Processor Bandwidth <= 0
71+
Maximum On-Processor Bandwidth <= 5
72+
Maximum Off-Processor Bandwidth <= 0
73+
DofMap Constraints
74+
Number of DoF Constraints = 0
75+
Number of Node Constraints = 0
76+
77+
Mesh Information:
78+
elem_dimensions()={2}
79+
elem_default_orders()={2}
80+
supported_nodal_order()=2
81+
spatial_dimension()=2
82+
n_nodes()=3721
83+
n_local_nodes()=3721
84+
n_elem()=900
85+
n_local_elem()=900
86+
n_active_elem()=900
87+
n_subdomains()=1
88+
n_elemsets()=0
89+
n_partitions()=1
90+
n_processors()=1
91+
n_threads()=1
92+
processor_id()=0
93+
is_prepared()=true
94+
is_replicated()=true
95+
96+
97+
==== ClawSystem ====
98+
system name: Advection2D
99+
LxF constant: 1.414
100+
delta_t: 0.001
101+
n_time_steps: 500
102+
temporal_discretization_type: RK4
103+
write_interval: 50
104+
105+
106+
==== AdvectionSystem ====
107+
u1 = 1, u2 = 1
108+
109+
110+
plotting time step 50, time = 0.05
111+
112+
plotting time step 100, time = 0.1
113+
114+
plotting time step 150, time = 0.15
115+
116+
plotting time step 200, time = 0.2
117+
118+
plotting time step 250, time = 0.25
119+
120+
plotting time step 300, time = 0.3
121+
122+
plotting time step 350, time = 0.35
123+
124+
plotting time step 400, time = 0.4
125+
126+
plotting time step 450, time = 0.45
127+
128+
plotting time step 500, time = 0.5
129+
130+
131+
***************************************************************
132+
* Done Running Example transient_ex3:
133+
* ./example-opt -i advection_2D.in
134+
***************************************************************
135+
</pre>
136+
</div>
137+
138+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
139+
<script type="text/javascript">
140+
$(document).ready(function(){
141+
$(window).on('scroll',function() {
142+
var scrolltop = $(this).scrollTop();
143+
144+
if(scrolltop >= 215) {
145+
$('#fixedbar').fadeIn(250);
146+
}
147+
148+
else if(scrolltop <= 210) {
149+
$('#fixedbar').fadeOut(250);
150+
}
151+
});
152+
});
153+
</script>
154+
155+
<!-- Google Analytics stuff -->
156+
<script type="text/javascript">
157+
var _gaq = _gaq || [];
158+
_gaq.push(['_setAccount', 'UA-24978333-1']);
159+
_gaq.push(['_trackPageview']);
160+
(function() {
161+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
162+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
163+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
164+
})();
165+
</script>
166+
167+
</body>
168+
</html>

0 commit comments

Comments
 (0)