forked from libMesh/libmesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransient_ex3.html
168 lines (139 loc) · 4.92 KB
/
transient_ex3.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
<!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 id="content">
<br> <h1> Link to the source code for this example: </h1>
<a href="https://github.com/libMesh/libmesh/tree/master/examples/transient/transient_ex3" target="_blank">Open transient_ex3 in new tab.</a>
<a name="output"></a>
<br><br><br> <h1> The console output of the program: </h1>
<pre>
***************************************************************
* Running Example transient_ex3:
* ./example-opt -i advection_2D.in
***************************************************************
Adding q1 variable using (CONSTANT, MONOMIAL) approximation to the system.
EquationSystems
n_systems()=1
System #0, "Advection2D"
Type "ClawSystem"
Variables="q1"
Finite Element Types="MONOMIAL", "JACOBI_20_00"
Infinite Element Mapping="CARTESIAN"
Approximation Orders="CONSTANT", "THIRD"
n_dofs()=900
n_local_dofs()=900
max(n_local_dofs())=900
n_constrained_dofs()=0
n_local_constrained_dofs()=0
max(local unconstrained dofs)=900
n_vectors()=1
n_matrices()=1
DofMap Sparsity
Average On-Processor Bandwidth <= 4.86667
Average Off-Processor Bandwidth <= 0
Maximum On-Processor Bandwidth <= 5
Maximum Off-Processor Bandwidth <= 0
DofMap Constraints
Number of DoF Constraints = 0
Number of Node Constraints = 0
Mesh Information:
elem_dimensions()={2}
elem_default_orders()={2}
supported_nodal_order()=2
spatial_dimension()=2
n_nodes()=3721
n_local_nodes()=3721
n_elem()=900
n_local_elem()=900
n_active_elem()=900
n_subdomains()=1
n_elemsets()=0
n_partitions()=1
n_processors()=1
n_threads()=1
processor_id()=0
is_prepared()=true
is_replicated()=true
==== ClawSystem ====
system name: Advection2D
LxF constant: 1.414
delta_t: 0.001
n_time_steps: 500
temporal_discretization_type: RK4
write_interval: 50
==== AdvectionSystem ====
u1 = 1, u2 = 1
plotting time step 50, time = 0.05
plotting time step 100, time = 0.1
plotting time step 150, time = 0.15
plotting time step 200, time = 0.2
plotting time step 250, time = 0.25
plotting time step 300, time = 0.3
plotting time step 350, time = 0.35
plotting time step 400, time = 0.4
plotting time step 450, time = 0.45
plotting time step 500, time = 0.5
***************************************************************
* Done Running Example transient_ex3:
* ./example-opt -i advection_2D.in
***************************************************************
</pre>
</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>