Skip to content

Commit 4cae8d2

Browse files
committed
Add console output for eigenproblems_ex4
1 parent 9d5e6ae commit 4cae8d2

1 file changed

Lines changed: 139 additions & 0 deletions

File tree

examples/eigenproblems_ex4.html

Lines changed: 139 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
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/eigenproblems/eigenproblems_ex4" target="_blank">Open eigenproblems_ex4 in new tab.</a>
43+
<a name="output"></a>
44+
<br><br><br> <h1> The console output of the program: </h1>
45+
<pre>
46+
CXX example_dbg-eigenproblems_ex4.o
47+
CXX example_devel-eigenproblems_ex4.o
48+
CXX example_oprof-eigenproblems_ex4.o
49+
CXXLD example-dbg
50+
CXXLD example-oprof
51+
CXXLD example-devel
52+
***************************************************************
53+
* Running Example eigenproblems_ex4:
54+
* ./example-opt
55+
***************************************************************
56+
57+
Running /home/lindad/projects/moose-no-cuda/libmesh/build/examples/eigenproblems/eigenproblems_ex4/.libs/example-opt
58+
59+
Mesh Information:
60+
elem_dimensions()={2}
61+
spatial_dimension()=2
62+
n_nodes()=1071
63+
n_local_nodes()=1071
64+
n_elem()=1200
65+
n_local_elem()=1200
66+
n_active_elem()=1000
67+
n_subdomains()=1
68+
n_elemsets()=0
69+
n_partitions()=1
70+
n_processors()=1
71+
n_threads()=1
72+
processor_id()=0
73+
is_prepared()=true
74+
is_replicated()=true
75+
76+
EquationSystems
77+
n_systems()=1
78+
System #0, "Condensed Eigensystem"
79+
Type "Eigen"
80+
Variables="p"
81+
Finite Element Types="LAGRANGE"
82+
Approximation Orders="FIRST"
83+
n_dofs()=1071
84+
n_local_dofs()=1071
85+
max(n_local_dofs())=1071
86+
n_constrained_dofs()=20
87+
n_local_constrained_dofs()=20
88+
max(local unconstrained dofs)=1051
89+
n_vectors()=0
90+
n_matrices()=1
91+
DofMap Sparsity
92+
Average On-Processor Bandwidth <= 8.71242
93+
Average Off-Processor Bandwidth <= 0
94+
Maximum On-Processor Bandwidth <= 13
95+
Maximum Off-Processor Bandwidth <= 0
96+
DofMap Constraints
97+
Number of DoF Constraints = 20
98+
Average DoF Constraint Length= 2
99+
100+
The converged eigenvalue is 1.48092 + 0i
101+
102+
***************************************************************
103+
* Done Running Example eigenproblems_ex4:
104+
* ./example-opt
105+
***************************************************************
106+
</pre>
107+
</div>
108+
109+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
110+
<script type="text/javascript">
111+
$(document).ready(function(){
112+
$(window).on('scroll',function() {
113+
var scrolltop = $(this).scrollTop();
114+
115+
if(scrolltop >= 215) {
116+
$('#fixedbar').fadeIn(250);
117+
}
118+
119+
else if(scrolltop <= 210) {
120+
$('#fixedbar').fadeOut(250);
121+
}
122+
});
123+
});
124+
</script>
125+
126+
<!-- Google Analytics stuff -->
127+
<script type="text/javascript">
128+
var _gaq = _gaq || [];
129+
_gaq.push(['_setAccount', 'UA-24978333-1']);
130+
_gaq.push(['_trackPageview']);
131+
(function() {
132+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
133+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
134+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
135+
})();
136+
</script>
137+
138+
</body>
139+
</html>

0 commit comments

Comments
 (0)