|
| 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/miscellaneous/miscellaneous_ex16" target="_blank">Open miscellaneous_ex16 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 miscellaneous_ex16: |
| 48 | +* ./example-opt |
| 49 | +*************************************************************** |
| 50 | + |
| 51 | +Running /home/lindad/libmesh/build/examples/miscellaneous/miscellaneous_ex16/.libs/example-opt |
| 52 | + |
| 53 | + Mesh Information: |
| 54 | + elem_dimensions()={2} |
| 55 | + spatial_dimension()=2 |
| 56 | + n_nodes()=961 |
| 57 | + n_local_nodes()=961 |
| 58 | + n_elem()=225 |
| 59 | + n_local_elem()=225 |
| 60 | + n_active_elem()=225 |
| 61 | + n_subdomains()=1 |
| 62 | + n_elemsets()=0 |
| 63 | + n_partitions()=1 |
| 64 | + n_processors()=1 |
| 65 | + n_threads()=1 |
| 66 | + processor_id()=0 |
| 67 | + is_prepared()=true |
| 68 | + is_replicated()=true |
| 69 | + |
| 70 | + EquationSystems |
| 71 | + n_systems()=1 |
| 72 | + System #0, "Poisson" |
| 73 | + Type "LinearImplicit" |
| 74 | + Variables="u" |
| 75 | + Finite Element Types="LAGRANGE" |
| 76 | + Approximation Orders="SECOND" |
| 77 | + n_dofs()=961 |
| 78 | + n_local_dofs()=961 |
| 79 | + max(n_local_dofs())=961 |
| 80 | + n_constrained_dofs()=0 |
| 81 | + n_local_constrained_dofs()=0 |
| 82 | + max(local unconstrained dofs)=961 |
| 83 | + n_vectors()=1 |
| 84 | + n_matrices()=1 |
| 85 | + DofMap Sparsity |
| 86 | + Average On-Processor Bandwidth <= 15.2352 |
| 87 | + Average Off-Processor Bandwidth <= 0 |
| 88 | + Maximum On-Processor Bandwidth <= 25 |
| 89 | + Maximum Off-Processor Bandwidth <= 0 |
| 90 | + DofMap Constraints |
| 91 | + Number of DoF Constraints = 0 |
| 92 | + |
| 93 | +Static condensation reduced problem size to 736 |
| 94 | + |
| 95 | +*************************************************************** |
| 96 | +* Done Running Example miscellaneous_ex16: |
| 97 | +* ./example-opt |
| 98 | +*************************************************************** |
| 99 | +</pre> |
| 100 | +</div> |
| 101 | + |
| 102 | +<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> |
| 103 | +<script type="text/javascript"> |
| 104 | +$(document).ready(function(){ |
| 105 | + $(window).on('scroll',function() { |
| 106 | + var scrolltop = $(this).scrollTop(); |
| 107 | + |
| 108 | + if(scrolltop >= 215) { |
| 109 | + $('#fixedbar').fadeIn(250); |
| 110 | + } |
| 111 | + |
| 112 | + else if(scrolltop <= 210) { |
| 113 | + $('#fixedbar').fadeOut(250); |
| 114 | + } |
| 115 | + }); |
| 116 | +}); |
| 117 | +</script> |
| 118 | + |
| 119 | +<!-- Google Analytics stuff --> |
| 120 | +<script type="text/javascript"> |
| 121 | + var _gaq = _gaq || []; |
| 122 | + _gaq.push(['_setAccount', 'UA-24978333-1']); |
| 123 | + _gaq.push(['_trackPageview']); |
| 124 | + (function() { |
| 125 | + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; |
| 126 | + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; |
| 127 | + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); |
| 128 | + })(); |
| 129 | +</script> |
| 130 | + |
| 131 | +</body> |
| 132 | +</html> |
0 commit comments