mirror of
https://github.com/wassname/simpeg.git
synced 2026-06-29 08:49:25 +08:00
2871 lines
84 KiB
HTML
2871 lines
84 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Test Results</title>
|
|
<meta name="generator" content="HTMLTestRunner 0.8.2"/>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
|
|
<style type="text/css" media="screen">
|
|
body { font-family: verdana, arial, helvetica, sans-serif; font-size: 80%; }
|
|
table { font-size: 100%; }
|
|
pre { }
|
|
|
|
/* -- heading ---------------------------------------------------------------------- */
|
|
h1 {
|
|
font-size: 16pt;
|
|
color: gray;
|
|
}
|
|
.heading {
|
|
margin-top: 0ex;
|
|
margin-bottom: 1ex;
|
|
}
|
|
|
|
.heading .attribute {
|
|
margin-top: 1ex;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.heading .description {
|
|
margin-top: 4ex;
|
|
margin-bottom: 6ex;
|
|
}
|
|
|
|
/* -- css div popup ------------------------------------------------------------------------ */
|
|
a.popup_link {
|
|
}
|
|
|
|
a.popup_link:hover {
|
|
color: red;
|
|
}
|
|
|
|
.popup_window {
|
|
display: none;
|
|
position: relative;
|
|
left: 0px;
|
|
top: 0px;
|
|
/*border: solid #627173 1px; */
|
|
padding: 10px;
|
|
background-color: #E6E6D6;
|
|
font-family: "Lucida Console", "Courier New", Courier, monospace;
|
|
text-align: left;
|
|
font-size: 8pt;
|
|
width: 500px;
|
|
}
|
|
|
|
}
|
|
/* -- report ------------------------------------------------------------------------ */
|
|
#show_detail_line {
|
|
margin-top: 3ex;
|
|
margin-bottom: 1ex;
|
|
}
|
|
#result_table {
|
|
width: 80%;
|
|
border-collapse: collapse;
|
|
border: 1px solid #777;
|
|
}
|
|
#header_row {
|
|
font-weight: bold;
|
|
color: white;
|
|
background-color: #777;
|
|
}
|
|
#result_table td {
|
|
border: 1px solid #777;
|
|
padding: 2px;
|
|
}
|
|
#total_row { font-weight: bold; }
|
|
.passClass { background-color: #6c6; }
|
|
.failClass { background-color: #c60; }
|
|
.errorClass { background-color: #c00; }
|
|
.passCase { color: #6c6; }
|
|
.failCase { color: #c60; font-weight: bold; }
|
|
.errorCase { color: #c00; font-weight: bold; }
|
|
.hiddenRow { display: none; }
|
|
.testcase { margin-left: 2em; }
|
|
|
|
|
|
/* -- ending ---------------------------------------------------------------------- */
|
|
#ending {
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
<script language="javascript" type="text/javascript"><!--
|
|
output_list = Array();
|
|
|
|
/* level - 0:Summary; 1:Failed; 2:All */
|
|
function showCase(level) {
|
|
trs = document.getElementsByTagName("tr");
|
|
for (var i = 0; i < trs.length; i++) {
|
|
tr = trs[i];
|
|
id = tr.id;
|
|
if (id.substr(0,2) == 'ft') {
|
|
if (level < 1) {
|
|
tr.className = 'hiddenRow';
|
|
}
|
|
else {
|
|
tr.className = '';
|
|
}
|
|
}
|
|
if (id.substr(0,2) == 'pt') {
|
|
if (level > 1) {
|
|
tr.className = '';
|
|
}
|
|
else {
|
|
tr.className = 'hiddenRow';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
function showClassDetail(cid, count) {
|
|
var id_list = Array(count);
|
|
var toHide = 1;
|
|
for (var i = 0; i < count; i++) {
|
|
tid0 = 't' + cid.substr(1) + '.' + (i+1);
|
|
tid = 'f' + tid0;
|
|
tr = document.getElementById(tid);
|
|
if (!tr) {
|
|
tid = 'p' + tid0;
|
|
tr = document.getElementById(tid);
|
|
}
|
|
id_list[i] = tid;
|
|
if (tr.className) {
|
|
toHide = 0;
|
|
}
|
|
}
|
|
for (var i = 0; i < count; i++) {
|
|
tid = id_list[i];
|
|
if (toHide) {
|
|
document.getElementById('div_'+tid).style.display = 'none'
|
|
document.getElementById(tid).className = 'hiddenRow';
|
|
}
|
|
else {
|
|
document.getElementById(tid).className = '';
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
function showTestDetail(div_id){
|
|
var details_div = document.getElementById(div_id)
|
|
var displayState = details_div.style.display
|
|
// alert(displayState)
|
|
if (displayState != 'block' ) {
|
|
displayState = 'block'
|
|
details_div.style.display = 'block'
|
|
}
|
|
else {
|
|
details_div.style.display = 'none'
|
|
}
|
|
}
|
|
|
|
|
|
function html_escape(s) {
|
|
s = s.replace(/&/g,'&');
|
|
s = s.replace(/</g,'<');
|
|
s = s.replace(/>/g,'>');
|
|
return s;
|
|
}
|
|
|
|
/* obsoleted by detail in <div>
|
|
function showOutput(id, name) {
|
|
var w = window.open("", //url
|
|
name,
|
|
"resizable,scrollbars,status,width=800,height=450");
|
|
d = w.document;
|
|
d.write("<pre>");
|
|
d.write(html_escape(output_list[id]));
|
|
d.write("\n");
|
|
d.write("<a href='javascript:window.close()'>close</a>\n");
|
|
d.write("</pre>\n");
|
|
d.close();
|
|
}
|
|
*/
|
|
--></script>
|
|
|
|
<div class='heading'>
|
|
<h1>Test Results</h1>
|
|
<p class='attribute'><strong>Start Time:</strong> 2013-11-05 15:38:27</p>
|
|
<p class='attribute'><strong>Duration:</strong> 0:00:32.112639</p>
|
|
<p class='attribute'><strong>Status:</strong> Pass 96 Error 3</p>
|
|
|
|
<p class='description'>SimPEG Test Report was automatically generated.</p>
|
|
</div>
|
|
|
|
|
|
|
|
<p id='show_detail_line'>Show
|
|
<a href='javascript:showCase(0)'>Summary</a>
|
|
<a href='javascript:showCase(1)'>Failed</a>
|
|
<a href='javascript:showCase(2)'>All</a>
|
|
</p>
|
|
<table id='result_table'>
|
|
<colgroup>
|
|
<col align='left' />
|
|
<col align='right' />
|
|
<col align='right' />
|
|
<col align='right' />
|
|
<col align='right' />
|
|
<col align='right' />
|
|
</colgroup>
|
|
<tr id='header_row'>
|
|
<td>Test Group/Test case</td>
|
|
<td>Count</td>
|
|
<td>Pass</td>
|
|
<td>Fail</td>
|
|
<td>Error</td>
|
|
<td>View</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_basemesh.TestBaseMesh</td>
|
|
<td>11</td>
|
|
<td>11</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c1',11)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt1.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_meshDimensions</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt1.2' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_nc</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt1.3' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_nc_xyz</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt1.4' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_ne</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt1.5' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_nf</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt1.6' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_numbers</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt1.7' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_r_CC_M</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt1.8' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_r_E_M</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt1.9' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_r_E_V</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt1.10' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_r_F_M</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt1.11' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_r_F_V</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_basemesh.TestMeshNumbers2D</td>
|
|
<td>11</td>
|
|
<td>11</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c2',11)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt2.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_meshDimensions</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt2.2' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_nc</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt2.3' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_nc_xyz</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt2.4' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_ne</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt2.5' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_nf</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt2.6' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_numbers</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt2.7' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_r_CC_M</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt2.8' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_r_E_M</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt2.9' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_r_E_V</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt2.10' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_r_F_M</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt2.11' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mesh_r_F_V</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr class='errorClass'>
|
|
<td>test_forward_DCproblem.DCProblemTests</td>
|
|
<td>4</td>
|
|
<td>1</td>
|
|
<td>0</td>
|
|
<td>3</td>
|
|
<td><a href="javascript:showClassDetail('c3',4)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='ft3.1' class='none'>
|
|
<td class='errorCase'><div class='testcase'>test_adjoint</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft3.1')" >
|
|
error</a>
|
|
|
|
<div id='div_ft3.1' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_ft3.1').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
ft3.1: Traceback (most recent call last):
|
|
File "/Users/rowan/git/simpeg/SimPEG/tests/test_forward_DCproblem.py", line 80, in test_adjoint
|
|
wtJv = w.dot(self.p.J(self.m0, v, u=u))
|
|
File "/Users/rowan/git/simpeg/SimPEG/forward/DCProblem/DCProblem.py", line 81, in J
|
|
File "/Users/rowan/Library/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/scipy/sparse/base.py", line 276, in __mul__
|
|
raise ValueError('dimension mismatch')
|
|
ValueError: dimension mismatch
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='ft3.2' class='none'>
|
|
<td class='errorCase'><div class='testcase'>test_dataObj</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft3.2')" >
|
|
error</a>
|
|
|
|
<div id='div_ft3.2' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_ft3.2').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
ft3.2: ==================== checkDerivative ====================
|
|
iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order
|
|
---------------------------------------------------------
|
|
Traceback (most recent call last):
|
|
File "/Users/rowan/git/simpeg/SimPEG/tests/test_forward_DCproblem.py", line 87, in test_dataObj
|
|
checkDerivative(derChk, self.m0, plotIt=False)
|
|
File "/Users/rowan/git/simpeg/SimPEG/tests/TestUtils.py", line 216, in checkDerivative
|
|
Jc = fctn(x0)
|
|
File "/Users/rowan/git/simpeg/SimPEG/tests/test_forward_DCproblem.py", line 86, in <lambda>
|
|
derChk = lambda m: [self.inv.dataObj(m), self.inv.dataObjDeriv(m)]
|
|
File "/Users/rowan/git/simpeg/SimPEG/inverse/Inversion.py", line 174, in dataObjDeriv
|
|
dmisfit = self.prob.Jt(m, self.Wd * R, u=u)
|
|
File "/Users/rowan/git/simpeg/SimPEG/forward/DCProblem/DCProblem.py", line 101, in Jt
|
|
SystemError: gstrs was called with invalid arguments
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='ft3.3' class='none'>
|
|
<td class='errorCase'><div class='testcase'>test_misfit</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft3.3')" >
|
|
error</a>
|
|
|
|
<div id='div_ft3.3' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_ft3.3').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
ft3.3: ==================== checkDerivative ====================
|
|
iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order
|
|
---------------------------------------------------------
|
|
Traceback (most recent call last):
|
|
File "/Users/rowan/git/simpeg/SimPEG/tests/test_forward_DCproblem.py", line 72, in test_misfit
|
|
passed = checkDerivative(derChk, self.m0, plotIt=False)
|
|
File "/Users/rowan/git/simpeg/SimPEG/tests/TestUtils.py", line 230, in checkDerivative
|
|
E0[i] = l2norm(Jt[0]-Jc[0]) # 0th order Taylor
|
|
ValueError: setting an array element with a sequence.
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt3.4' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_modelObj</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt3.4')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt3.4' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt3.4').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt3.4: ==================== checkDerivative ====================
|
|
iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order
|
|
---------------------------------------------------------
|
|
0 1.00e-01 7.349e+00 7.167e+00 nan
|
|
1 1.00e-02 8.988e-02 7.167e-02 2.000
|
|
2 1.00e-03 2.537e-03 7.167e-04 2.000
|
|
3 1.00e-04 1.892e-04 7.167e-06 2.000
|
|
4 1.00e-05 1.828e-05 7.167e-08 2.000
|
|
5 1.00e-06 1.821e-06 7.167e-10 2.000
|
|
6 1.00e-07 1.821e-07 7.167e-12 2.000
|
|
========================= PASS! =========================
|
|
The test be workin!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_forward_problem.ProblemTests</td>
|
|
<td>2</td>
|
|
<td>2</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c4',2)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt4.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_modelTransform</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt4.1')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt4.1' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt4.1').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt4.1: SimPEG.forward.Problem: Testing Model Transform
|
|
==================== checkDerivative ====================
|
|
iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order
|
|
---------------------------------------------------------
|
|
0 1.00e-01 3.194e-01 8.067e-17 nan
|
|
1 1.00e-02 3.194e-02 7.049e-17 0.059
|
|
2 1.00e-03 3.194e-03 7.671e-17 -0.037
|
|
3 1.00e-04 3.194e-04 4.227e-17 0.259
|
|
4 1.00e-05 3.194e-05 5.849e-17 -0.141
|
|
5 1.00e-06 3.194e-06 6.918e-17 -0.073
|
|
6 1.00e-07 3.194e-07 7.987e-17 -0.062
|
|
========================= PASS! =========================
|
|
And then everyone was happy.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt4.2' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_regularization</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt4.2')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt4.2' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt4.2').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt4.2: ==================== checkDerivative ====================
|
|
iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order
|
|
---------------------------------------------------------
|
|
0 1.00e-01 1.902e+00 4.847e-02 nan
|
|
1 1.00e-02 1.858e-01 4.847e-04 2.000
|
|
2 1.00e-03 1.854e-02 4.847e-06 2.000
|
|
3 1.00e-04 1.854e-03 4.847e-08 2.000
|
|
4 1.00e-05 1.854e-04 4.847e-10 2.000
|
|
5 1.00e-06 1.854e-05 4.861e-12 1.999
|
|
6 1.00e-07 1.854e-06 5.196e-14 1.971
|
|
========================= PASS! =========================
|
|
And then everyone was happy.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_interpolation.TestInterpolation1D</td>
|
|
<td>2</td>
|
|
<td>2</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c5',2)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt5.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderCC</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt5.1')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt5.1' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt5.1').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt5.1:
|
|
uniformTensorMesh: Interpolation 1D: CC
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 3.00e-01 |
|
|
16 | 7.24e-02 | 4.1496 | 2.0530
|
|
32 | 1.80e-02 | 4.0176 | 2.0063
|
|
---------------------------------------------
|
|
Go Test Go!
|
|
|
|
|
|
randomTensorMesh: Interpolation 1D: CC
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 1.67e+00 |
|
|
16 | 1.47e-01 | 11.2991 | 2.2158
|
|
32 | 2.40e-02 | 6.1450 | 2.8068
|
|
---------------------------------------------
|
|
That was easy!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt5.2' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderN</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt5.2')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt5.2' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt5.2').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt5.2:
|
|
uniformTensorMesh: Interpolation 1D: N
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 2.62e-01 |
|
|
16 | 7.01e-02 | 3.7367 | 1.9018
|
|
32 | 1.77e-02 | 3.9522 | 1.9827
|
|
---------------------------------------------
|
|
Once upon a time, a happy little test passed.
|
|
|
|
|
|
randomTensorMesh: Interpolation 1D: N
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 1.06e+00 |
|
|
16 | 2.16e-01 | 4.9073 | 2.1977
|
|
32 | 4.65e-02 | 4.6558 | 2.1125
|
|
---------------------------------------------
|
|
Go Test Go!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_interpolation.TestInterpolation2d</td>
|
|
<td>6</td>
|
|
<td>6</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c6',6)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt6.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderCC</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt6.1')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt6.1' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt6.1').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt6.1:
|
|
uniformTensorMesh: Interpolation 2D: CC
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 7.58e-02 |
|
|
16 | 1.89e-02 | 4.0123 | 2.0044
|
|
32 | 4.72e-03 | 4.0061 | 2.0022
|
|
64 | 1.18e-03 | 4.0130 | 2.0047
|
|
---------------------------------------------
|
|
And then everyone was happy.
|
|
|
|
|
|
randomTensorMesh: Interpolation 2D: CC
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 7.19e-02 |
|
|
16 | 4.02e-02 | 1.7891 | 0.8450
|
|
32 | 1.76e-02 | 2.2896 | 1.2692
|
|
64 | 2.59e-03 | 6.7732 | 2.7962
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt6.2' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderEx</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt6.2')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt6.2' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt6.2').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt6.2:
|
|
uniformTensorMesh: Interpolation 2D: Ex
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 6.97e-02 |
|
|
16 | 1.88e-02 | 3.7021 | 1.8883
|
|
32 | 4.25e-03 | 4.4349 | 2.1489
|
|
64 | 1.18e-03 | 3.5918 | 1.8447
|
|
---------------------------------------------
|
|
And then everyone was happy.
|
|
|
|
|
|
randomTensorMesh: Interpolation 2D: Ex
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 7.23e-02 |
|
|
16 | 6.36e-02 | 1.1363 | 0.2932
|
|
32 | 1.45e-02 | 4.3757 | 1.6505
|
|
64 | 2.85e-03 | 5.0936 | 2.5565
|
|
---------------------------------------------
|
|
That was easy!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt6.3' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderEy</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt6.3')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt6.3' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt6.3').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt6.3:
|
|
uniformTensorMesh: Interpolation 2D: Ey
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 7.03e-02 |
|
|
16 | 1.84e-02 | 3.8128 | 1.9308
|
|
32 | 4.25e-03 | 4.3399 | 2.1177
|
|
64 | 1.20e-03 | 3.5303 | 1.8198
|
|
---------------------------------------------
|
|
Happy little convergence test!
|
|
|
|
|
|
randomTensorMesh: Interpolation 2D: Ey
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 1.25e-01 |
|
|
16 | 1.33e-01 | 0.9426 | -0.2519
|
|
32 | 9.22e-03 | 14.4149 | 2.6455
|
|
64 | 4.30e-03 | 2.1433 | 1.1026
|
|
---------------------------------------------
|
|
And then everyone was happy.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt6.4' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderFx</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt6.4')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt6.4' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt6.4').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt6.4:
|
|
uniformTensorMesh: Interpolation 2D: Fx
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 7.58e-02 |
|
|
16 | 1.89e-02 | 4.0123 | 2.0044
|
|
32 | 4.72e-03 | 4.0061 | 2.0022
|
|
64 | 1.18e-03 | 4.0130 | 2.0047
|
|
---------------------------------------------
|
|
The test be workin!
|
|
|
|
|
|
randomTensorMesh: Interpolation 2D: Fx
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 2.62e-01 |
|
|
16 | 3.56e-02 | 7.3451 | 2.2879
|
|
32 | 8.65e-03 | 4.1162 | 1.9898
|
|
64 | 1.98e-03 | 4.3670 | 2.2176
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt6.5' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderFy</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt6.5')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt6.5' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt6.5').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt6.5:
|
|
uniformTensorMesh: Interpolation 2D: Fy
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 7.60e-02 |
|
|
16 | 1.91e-02 | 3.9730 | 1.9902
|
|
32 | 4.74e-03 | 4.0368 | 2.0132
|
|
64 | 1.13e-03 | 4.1926 | 2.0679
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
randomTensorMesh: Interpolation 2D: Fy
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 1.39e-01 |
|
|
16 | 1.52e-02 | 9.1581 | 3.8279
|
|
32 | 9.96e-03 | 1.5254 | 0.6484
|
|
64 | 2.55e-03 | 3.9018 | 1.9789
|
|
---------------------------------------------
|
|
Testing is important.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt6.6' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderN</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt6.6')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt6.6' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt6.6').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt6.6:
|
|
uniformTensorMesh: Interpolation 2D: N
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 6.97e-02 |
|
|
16 | 1.88e-02 | 3.7021 | 1.8883
|
|
32 | 4.25e-03 | 4.4349 | 2.1489
|
|
64 | 1.18e-03 | 3.5918 | 1.8447
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
randomTensorMesh: Interpolation 2D: N
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 1.71e-01 |
|
|
16 | 8.78e-02 | 1.9477 | 1.5625
|
|
32 | 1.06e-02 | 8.3121 | 2.4877
|
|
64 | 3.89e-03 | 2.7167 | 1.4633
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_interpolation.TestInterpolation3D</td>
|
|
<td>8</td>
|
|
<td>8</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c7',8)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt7.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderCC</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt7.1')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt7.1' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt7.1').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt7.1:
|
|
uniformTensorMesh: Interpolation CC
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 7.61e-02 |
|
|
16 | 1.92e-02 | 3.9642 | 1.9870
|
|
32 | 4.80e-03 | 4.0008 | 2.0003
|
|
64 | 1.20e-03 | 4.0030 | 2.0011
|
|
---------------------------------------------
|
|
Go Test Go!
|
|
|
|
|
|
randomTensorMesh: Interpolation CC
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 1.84e-01 |
|
|
16 | 3.69e-02 | 4.9854 | 2.8455
|
|
32 | 6.69e-03 | 5.5221 | 2.0070
|
|
64 | 3.04e-03 | 2.2027 | 0.9704
|
|
---------------------------------------------
|
|
And then everyone was happy.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt7.2' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderEx</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt7.2')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt7.2' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt7.2').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt7.2:
|
|
uniformTensorMesh: Interpolation Ex
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 7.04e-02 |
|
|
16 | 1.88e-02 | 3.7334 | 1.9005
|
|
32 | 4.79e-03 | 3.9323 | 1.9754
|
|
64 | 1.19e-03 | 4.0214 | 2.0077
|
|
---------------------------------------------
|
|
Testing is important.
|
|
|
|
|
|
randomTensorMesh: Interpolation Ex
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 2.14e-01 |
|
|
16 | 3.60e-02 | 5.9382 | 2.2410
|
|
32 | 1.67e-02 | 2.1567 | 1.1497
|
|
64 | 3.03e-03 | 5.5107 | 2.1484
|
|
---------------------------------------------
|
|
Testing is important.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt7.3' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderEy</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt7.3')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt7.3' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt7.3').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt7.3:
|
|
uniformTensorMesh: Interpolation Ey
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 7.02e-02 |
|
|
16 | 1.81e-02 | 3.8703 | 1.9524
|
|
32 | 4.77e-03 | 3.7978 | 1.9252
|
|
64 | 1.13e-03 | 4.2261 | 2.0793
|
|
---------------------------------------------
|
|
You are awesome.
|
|
|
|
|
|
randomTensorMesh: Interpolation Ey
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 3.88e-01 |
|
|
16 | 4.89e-02 | 7.9410 | 2.5753
|
|
32 | 8.30e-03 | 5.8915 | 2.8572
|
|
64 | 5.74e-03 | 1.4462 | 0.5487
|
|
---------------------------------------------
|
|
Yay passed!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt7.4' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderEz</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt7.4')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt7.4' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt7.4').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt7.4:
|
|
uniformTensorMesh: Interpolation Ez
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 6.87e-02 |
|
|
16 | 1.88e-02 | 3.6495 | 1.8677
|
|
32 | 4.61e-03 | 4.0889 | 2.0317
|
|
64 | 1.16e-03 | 3.9550 | 1.9837
|
|
---------------------------------------------
|
|
Yay passed!
|
|
|
|
|
|
randomTensorMesh: Interpolation Ez
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 8.14e-02 |
|
|
16 | 5.73e-02 | 1.4201 | 0.5350
|
|
32 | 9.37e-03 | 6.1172 | 3.1703
|
|
64 | 4.08e-03 | 2.2987 | 1.1426
|
|
---------------------------------------------
|
|
Once upon a time, a happy little test passed.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt7.5' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderFx</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt7.5')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt7.5' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt7.5').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt7.5:
|
|
uniformTensorMesh: Interpolation Fx
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 7.61e-02 |
|
|
16 | 1.92e-02 | 3.9642 | 1.9870
|
|
32 | 4.80e-03 | 4.0008 | 2.0003
|
|
64 | 1.20e-03 | 4.0030 | 2.0011
|
|
---------------------------------------------
|
|
Happy little convergence test!
|
|
|
|
|
|
randomTensorMesh: Interpolation Fx
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 1.88e-01 |
|
|
16 | 2.92e-02 | 6.4326 | 2.9368
|
|
32 | 1.86e-02 | 1.5699 | 0.6042
|
|
64 | 2.79e-03 | 6.6806 | 2.3316
|
|
---------------------------------------------
|
|
And then everyone was happy.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt7.6' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderFy</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt7.6')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt7.6' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt7.6').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt7.6:
|
|
uniformTensorMesh: Interpolation Fy
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 7.32e-02 |
|
|
16 | 1.75e-02 | 4.1844 | 2.0650
|
|
32 | 4.24e-03 | 4.1315 | 2.0467
|
|
64 | 1.18e-03 | 3.5873 | 1.8429
|
|
---------------------------------------------
|
|
The test be workin!
|
|
|
|
|
|
randomTensorMesh: Interpolation Fy
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 1.57e-01 |
|
|
16 | 4.79e-02 | 3.2812 | 1.7250
|
|
32 | 9.12e-03 | 5.2500 | 1.7325
|
|
64 | 3.25e-03 | 2.8028 | 2.3192
|
|
---------------------------------------------
|
|
Testing is important.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt7.7' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderFz</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt7.7')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt7.7' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt7.7').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt7.7:
|
|
uniformTensorMesh: Interpolation Fz
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 7.54e-02 |
|
|
16 | 1.85e-02 | 4.0704 | 2.0252
|
|
32 | 4.70e-03 | 3.9420 | 1.9789
|
|
64 | 1.16e-03 | 4.0578 | 2.0207
|
|
---------------------------------------------
|
|
You are awesome.
|
|
|
|
|
|
randomTensorMesh: Interpolation Fz
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 1.10e-01 |
|
|
16 | 6.45e-02 | 1.7112 | 1.6193
|
|
32 | 1.01e-02 | 6.3968 | 2.1949
|
|
64 | 2.39e-03 | 4.2256 | 1.9266
|
|
---------------------------------------------
|
|
Yay passed!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt7.8' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderN</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt7.8')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt7.8' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt7.8').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt7.8:
|
|
uniformTensorMesh: Interpolation N
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 7.04e-02 |
|
|
16 | 1.88e-02 | 3.7334 | 1.9005
|
|
32 | 4.79e-03 | 3.9323 | 1.9754
|
|
64 | 1.19e-03 | 4.0214 | 2.0077
|
|
---------------------------------------------
|
|
You are awesome.
|
|
|
|
|
|
randomTensorMesh: Interpolation N
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 1.37e-01 |
|
|
16 | 3.14e-02 | 4.3725 | 2.0534
|
|
32 | 1.43e-02 | 2.2051 | 0.9674
|
|
64 | 2.08e-03 | 6.8413 | 2.7537
|
|
---------------------------------------------
|
|
You are awesome.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_LogicallyOrthogonalMesh.BasicLOMTests</td>
|
|
<td>8</td>
|
|
<td>8</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c8',8)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt8.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_area_3D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt8.2' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_edge_2D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt8.3' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_edge_3D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt8.4' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_grid</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt8.5' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_normals</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt8.6' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_tangents</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt8.7' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_vol_2D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt8.8' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_vol_3D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_massMatrices.TestInnerProducts: Integrate an function over a unit cube domain using edgeInnerProducts and faceInnerProducts.</td>
|
|
<td>6</td>
|
|
<td>6</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c9',6)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt9.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order1_edges</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt9.1')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt9.1' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt9.1').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt9.1:
|
|
uniformTensorMesh: Edge Inner Product - Isotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 2.42e-03 |
|
|
32 | 6.06e-04 | 4.0001 | 2.0000
|
|
---------------------------------------------
|
|
Testing is important.
|
|
|
|
|
|
uniformLOM: Edge Inner Product - Isotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 2.42e-03 |
|
|
32 | 6.06e-04 | 4.0001 | 2.0000
|
|
---------------------------------------------
|
|
Go Test Go!
|
|
|
|
|
|
rotateLOM: Edge Inner Product - Isotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 2.81e-03 |
|
|
32 | 7.11e-04 | 3.9432 | 1.9794
|
|
---------------------------------------------
|
|
The test be workin!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt9.2' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order1_faces</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt9.2')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt9.2' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt9.2').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt9.2:
|
|
uniformTensorMesh: Face Inner Product - Isotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 6.29e-04 |
|
|
32 | 1.57e-04 | 3.9978 | 1.9992
|
|
---------------------------------------------
|
|
You are awesome.
|
|
|
|
|
|
uniformLOM: Face Inner Product - Isotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 6.29e-04 |
|
|
32 | 1.57e-04 | 3.9978 | 1.9992
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
rotateLOM: Face Inner Product - Isotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 3.08e-04 |
|
|
32 | 7.07e-05 | 4.3564 | 2.1231
|
|
---------------------------------------------
|
|
Happy little convergence test!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt9.3' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order3_edges</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt9.3')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt9.3' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt9.3').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt9.3:
|
|
uniformTensorMesh: Edge Inner Product - Anisotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 6.99e-03 |
|
|
32 | 1.75e-03 | 3.9996 | 1.9998
|
|
---------------------------------------------
|
|
Happy little convergence test!
|
|
|
|
|
|
uniformLOM: Edge Inner Product - Anisotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 6.99e-03 |
|
|
32 | 1.75e-03 | 3.9996 | 1.9998
|
|
---------------------------------------------
|
|
Happy little convergence test!
|
|
|
|
|
|
rotateLOM: Edge Inner Product - Anisotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 7.70e-03 |
|
|
32 | 1.94e-03 | 3.9622 | 1.9863
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt9.4' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order3_faces</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt9.4')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt9.4' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt9.4').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt9.4:
|
|
uniformTensorMesh: Face Inner Product - Anisotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 2.68e-03 |
|
|
32 | 6.69e-04 | 3.9982 | 1.9993
|
|
---------------------------------------------
|
|
Yay passed!
|
|
|
|
|
|
uniformLOM: Face Inner Product - Anisotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 2.68e-03 |
|
|
32 | 6.69e-04 | 3.9982 | 1.9993
|
|
---------------------------------------------
|
|
Yay passed!
|
|
|
|
|
|
rotateLOM: Face Inner Product - Anisotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 2.15e-03 |
|
|
32 | 5.25e-04 | 4.0845 | 2.0302
|
|
---------------------------------------------
|
|
Testing is important.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt9.5' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order6_edges</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt9.5')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt9.5' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt9.5').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt9.5:
|
|
uniformTensorMesh: Edge Inner Product - Full Tensor
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 6.79e-03 |
|
|
32 | 1.70e-03 | 3.9996 | 1.9998
|
|
---------------------------------------------
|
|
Go Test Go!
|
|
|
|
|
|
uniformLOM: Edge Inner Product - Full Tensor
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 6.79e-03 |
|
|
32 | 1.70e-03 | 3.9996 | 1.9998
|
|
---------------------------------------------
|
|
Happy little convergence test!
|
|
|
|
|
|
rotateLOM: Edge Inner Product - Full Tensor
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 7.49e-03 |
|
|
32 | 1.89e-03 | 3.9617 | 1.9861
|
|
---------------------------------------------
|
|
Once upon a time, a happy little test passed.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt9.6' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order6_faces</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt9.6')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt9.6' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt9.6').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt9.6:
|
|
uniformTensorMesh: Face Inner Product - Full Tensor
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 3.10e-03 |
|
|
32 | 7.74e-04 | 3.9981 | 1.9993
|
|
---------------------------------------------
|
|
Once upon a time, a happy little test passed.
|
|
|
|
|
|
uniformLOM: Face Inner Product - Full Tensor
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 3.10e-03 |
|
|
32 | 7.74e-04 | 3.9981 | 1.9993
|
|
---------------------------------------------
|
|
Yay passed!
|
|
|
|
|
|
rotateLOM: Face Inner Product - Full Tensor
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 2.54e-03 |
|
|
32 | 6.23e-04 | 4.0741 | 2.0265
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_massMatrices.TestInnerProducts2D: Integrate an function over a unit cube domain using edgeInnerProducts and faceInnerProducts.</td>
|
|
<td>6</td>
|
|
<td>6</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c10',6)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt10.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order1_edges</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt10.1')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt10.1' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt10.1').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt10.1:
|
|
uniformTensorMesh: 2D Edge Inner Product - Isotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 5.60e+00 |
|
|
8 | 1.40e+00 | 4.0040 | 2.0014
|
|
16 | 3.50e-01 | 4.0010 | 2.0004
|
|
32 | 8.74e-02 | 4.0002 | 2.0001
|
|
64 | 2.18e-02 | 4.0001 | 2.0000
|
|
128 | 5.46e-03 | 4.0000 | 2.0000
|
|
---------------------------------------------
|
|
That was easy!
|
|
|
|
|
|
uniformLOM: 2D Edge Inner Product - Isotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 5.60e+00 |
|
|
8 | 1.40e+00 | 4.0040 | 2.0014
|
|
16 | 3.50e-01 | 4.0010 | 2.0004
|
|
32 | 8.74e-02 | 4.0002 | 2.0001
|
|
64 | 2.18e-02 | 4.0001 | 2.0000
|
|
128 | 5.46e-03 | 4.0000 | 2.0000
|
|
---------------------------------------------
|
|
The test be workin!
|
|
|
|
|
|
rotateLOM: 2D Edge Inner Product - Isotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 5.38e+00 |
|
|
8 | 1.31e+00 | 4.1168 | 2.0415
|
|
16 | 3.23e-01 | 4.0449 | 2.0161
|
|
32 | 8.03e-02 | 4.0235 | 2.0085
|
|
64 | 2.00e-02 | 4.0155 | 2.0056
|
|
128 | 5.00e-03 | 4.0038 | 2.0014
|
|
---------------------------------------------
|
|
And then everyone was happy.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt10.2' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order1_faces</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt10.2')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt10.2' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt10.2').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt10.2:
|
|
uniformTensorMesh: 2D Face Inner Product - Isotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 6.46e+00 |
|
|
8 | 1.62e+00 | 3.9970 | 1.9989
|
|
16 | 4.04e-01 | 3.9992 | 1.9997
|
|
32 | 1.01e-01 | 3.9998 | 1.9999
|
|
64 | 2.53e-02 | 4.0000 | 2.0000
|
|
128 | 6.32e-03 | 4.0000 | 2.0000
|
|
---------------------------------------------
|
|
You are awesome.
|
|
|
|
|
|
uniformLOM: 2D Face Inner Product - Isotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 6.46e+00 |
|
|
8 | 1.62e+00 | 3.9970 | 1.9989
|
|
16 | 4.04e-01 | 3.9992 | 1.9997
|
|
32 | 1.01e-01 | 3.9998 | 1.9999
|
|
64 | 2.53e-02 | 4.0000 | 2.0000
|
|
128 | 6.32e-03 | 4.0000 | 2.0000
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
rotateLOM: 2D Face Inner Product - Isotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 6.01e+00 |
|
|
8 | 1.49e+00 | 4.0334 | 2.0120
|
|
16 | 3.69e-01 | 4.0329 | 2.0118
|
|
32 | 9.22e-02 | 4.0052 | 2.0019
|
|
64 | 2.30e-02 | 4.0132 | 2.0048
|
|
128 | 5.74e-03 | 4.0009 | 2.0003
|
|
---------------------------------------------
|
|
Go Test Go!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt10.3' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order2_faces</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt10.3')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt10.3' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt10.3').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt10.3:
|
|
uniformTensorMesh: 2D Face Inner Product - Anisotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 3.32e+01 |
|
|
8 | 8.29e+00 | 4.0000 | 2.0000
|
|
16 | 2.07e+00 | 4.0000 | 2.0000
|
|
32 | 5.18e-01 | 4.0000 | 2.0000
|
|
64 | 1.30e-01 | 4.0000 | 2.0000
|
|
128 | 3.24e-02 | 4.0000 | 2.0000
|
|
---------------------------------------------
|
|
You are awesome.
|
|
|
|
|
|
uniformLOM: 2D Face Inner Product - Anisotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 3.32e+01 |
|
|
8 | 8.29e+00 | 4.0000 | 2.0000
|
|
16 | 2.07e+00 | 4.0000 | 2.0000
|
|
32 | 5.18e-01 | 4.0000 | 2.0000
|
|
64 | 1.30e-01 | 4.0000 | 2.0000
|
|
128 | 3.24e-02 | 4.0000 | 2.0000
|
|
---------------------------------------------
|
|
And then everyone was happy.
|
|
|
|
|
|
rotateLOM: 2D Face Inner Product - Anisotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 3.24e+01 |
|
|
8 | 8.14e+00 | 3.9797 | 1.9927
|
|
16 | 2.04e+00 | 3.9944 | 1.9980
|
|
32 | 5.11e-01 | 3.9923 | 1.9972
|
|
64 | 1.28e-01 | 4.0007 | 2.0003
|
|
128 | 3.19e-02 | 3.9975 | 1.9991
|
|
---------------------------------------------
|
|
Go Test Go!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt10.4' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order3_edges</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt10.4')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt10.4' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt10.4').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt10.4:
|
|
uniformTensorMesh: 2D Edge Inner Product - Anisotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 9.36e+00 |
|
|
8 | 2.34e+00 | 4.0002 | 2.0001
|
|
16 | 5.85e-01 | 4.0001 | 2.0000
|
|
32 | 1.46e-01 | 4.0000 | 2.0000
|
|
64 | 3.66e-02 | 4.0000 | 2.0000
|
|
128 | 9.14e-03 | 4.0000 | 2.0000
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
uniformLOM: 2D Edge Inner Product - Anisotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 9.36e+00 |
|
|
8 | 2.34e+00 | 4.0002 | 2.0001
|
|
16 | 5.85e-01 | 4.0001 | 2.0000
|
|
32 | 1.46e-01 | 4.0000 | 2.0000
|
|
64 | 3.66e-02 | 4.0000 | 2.0000
|
|
128 | 9.14e-03 | 4.0000 | 2.0000
|
|
---------------------------------------------
|
|
And then everyone was happy.
|
|
|
|
|
|
rotateLOM: 2D Edge Inner Product - Anisotropic
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 7.11e+00 |
|
|
8 | 1.58e+00 | 4.5124 | 2.1739
|
|
16 | 3.74e-01 | 4.2134 | 2.0750
|
|
32 | 9.08e-02 | 4.1184 | 2.0421
|
|
64 | 2.23e-02 | 4.0739 | 2.0264
|
|
128 | 5.54e-03 | 4.0255 | 2.0092
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt10.5' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order3_faces</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt10.5')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt10.5' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt10.5').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt10.5:
|
|
uniformTensorMesh: 2D Face Inner Product - Full Tensor
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 3.89e+01 |
|
|
8 | 9.73e+00 | 4.0002 | 2.0001
|
|
16 | 2.43e+00 | 4.0001 | 2.0000
|
|
32 | 6.08e-01 | 4.0000 | 2.0000
|
|
64 | 1.52e-01 | 4.0000 | 2.0000
|
|
128 | 3.80e-02 | 4.0000 | 2.0000
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
uniformLOM: 2D Face Inner Product - Full Tensor
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 3.89e+01 |
|
|
8 | 9.73e+00 | 4.0002 | 2.0001
|
|
16 | 2.43e+00 | 4.0001 | 2.0000
|
|
32 | 6.08e-01 | 4.0000 | 2.0000
|
|
64 | 1.52e-01 | 4.0000 | 2.0000
|
|
128 | 3.80e-02 | 4.0000 | 2.0000
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
rotateLOM: 2D Face Inner Product - Full Tensor
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 3.72e+01 |
|
|
8 | 9.31e+00 | 3.9994 | 1.9998
|
|
16 | 2.32e+00 | 4.0134 | 2.0048
|
|
32 | 5.81e-01 | 3.9964 | 1.9987
|
|
64 | 1.45e-01 | 4.0074 | 2.0027
|
|
128 | 3.62e-02 | 3.9984 | 1.9994
|
|
---------------------------------------------
|
|
Testing is important.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt10.6' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order6_edges</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt10.6')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt10.6' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt10.6').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt10.6:
|
|
uniformTensorMesh: 2D Edge Inner Product - Full Tensor
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 9.70e-01 |
|
|
8 | 2.42e-01 | 4.0063 | 2.0023
|
|
16 | 6.05e-02 | 4.0016 | 2.0006
|
|
32 | 1.51e-02 | 4.0004 | 2.0001
|
|
64 | 3.78e-03 | 4.0001 | 2.0000
|
|
128 | 9.46e-04 | 4.0000 | 2.0000
|
|
---------------------------------------------
|
|
And then everyone was happy.
|
|
|
|
|
|
uniformLOM: 2D Edge Inner Product - Full Tensor
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 9.70e-01 |
|
|
8 | 2.42e-01 | 4.0063 | 2.0023
|
|
16 | 6.05e-02 | 4.0016 | 2.0006
|
|
32 | 1.51e-02 | 4.0004 | 2.0001
|
|
64 | 3.78e-03 | 4.0001 | 2.0000
|
|
128 | 9.46e-04 | 4.0000 | 2.0000
|
|
---------------------------------------------
|
|
Happy little convergence test!
|
|
|
|
|
|
rotateLOM: 2D Edge Inner Product - Full Tensor
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 3.05e+00 |
|
|
8 | 1.04e+00 | 2.9506 | 1.5610
|
|
16 | 2.89e-01 | 3.5845 | 1.8418
|
|
32 | 7.67e-02 | 3.7658 | 1.9129
|
|
64 | 1.98e-02 | 3.8708 | 1.9526
|
|
128 | 5.03e-03 | 3.9418 | 1.9789
|
|
---------------------------------------------
|
|
And then everyone was happy.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_operators.TestCurl</td>
|
|
<td>1</td>
|
|
<td>1</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c11',1)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt11.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt11.1')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt11.1' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt11.1').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt11.1:
|
|
uniformTensorMesh: Curl
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 4.43e-01 |
|
|
8 | 1.48e-01 | 2.9914 | 1.5808
|
|
16 | 3.95e-02 | 3.7462 | 1.9054
|
|
32 | 1.00e-02 | 3.9364 | 1.9769
|
|
---------------------------------------------
|
|
Go Test Go!
|
|
|
|
|
|
uniformLOM: Curl
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 4.43e-01 |
|
|
8 | 1.48e-01 | 2.9914 | 1.5808
|
|
16 | 3.95e-02 | 3.7462 | 1.9054
|
|
32 | 1.00e-02 | 3.9364 | 1.9769
|
|
---------------------------------------------
|
|
Go Test Go!
|
|
|
|
|
|
rotateLOM: Curl
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 4.71e-01 |
|
|
8 | 8.86e-02 | 5.3170 | 2.4106
|
|
16 | 1.70e-02 | 5.2040 | 2.3796
|
|
32 | 3.77e-03 | 4.5126 | 2.1740
|
|
---------------------------------------------
|
|
You are awesome.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_operators.TestFaceDiv</td>
|
|
<td>1</td>
|
|
<td>1</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c12',1)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt12.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt12.1')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt12.1' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt12.1').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt12.1:
|
|
uniformTensorMesh: Face Divergence
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 4.44e-01 |
|
|
16 | 1.19e-01 | 3.7462 | 1.9054
|
|
32 | 3.01e-02 | 3.9364 | 1.9769
|
|
---------------------------------------------
|
|
Once upon a time, a happy little test passed.
|
|
|
|
|
|
uniformLOM: Face Divergence
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 4.44e-01 |
|
|
16 | 1.19e-01 | 3.7462 | 1.9054
|
|
32 | 3.01e-02 | 3.9364 | 1.9769
|
|
---------------------------------------------
|
|
You are awesome.
|
|
|
|
|
|
rotateLOM: Face Divergence
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 9.08e-03 |
|
|
16 | 9.53e-04 | 9.5374 | 3.2536
|
|
32 | 2.75e-04 | 3.4594 | 1.7905
|
|
---------------------------------------------
|
|
Testing is important.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_operators.TestFaceDiv2D</td>
|
|
<td>1</td>
|
|
<td>1</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c13',1)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt13.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt13.1')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt13.1' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt13.1').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt13.1:
|
|
uniformTensorMesh: Face Divergence 2D
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 2.96e-01 |
|
|
16 | 7.90e-02 | 3.7462 | 1.9054
|
|
32 | 2.01e-02 | 3.9364 | 1.9769
|
|
64 | 5.04e-03 | 3.9841 | 1.9943
|
|
---------------------------------------------
|
|
Once upon a time, a happy little test passed.
|
|
|
|
|
|
uniformLOM: Face Divergence 2D
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 2.96e-01 |
|
|
16 | 7.90e-02 | 3.7462 | 1.9054
|
|
32 | 2.01e-02 | 3.9364 | 1.9769
|
|
64 | 5.04e-03 | 3.9841 | 1.9943
|
|
---------------------------------------------
|
|
Happy little convergence test!
|
|
|
|
|
|
rotateLOM: Face Divergence 2D
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
8 | 2.96e-01 |
|
|
16 | 7.90e-02 | 3.7462 | 1.9054
|
|
32 | 2.01e-02 | 3.9364 | 1.9769
|
|
64 | 5.57e-03 | 3.6062 | 1.8505
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_operators.TestNodalGrad</td>
|
|
<td>1</td>
|
|
<td>1</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c14',1)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt14.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt14.1')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt14.1' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt14.1').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt14.1:
|
|
uniformTensorMesh: Nodal Gradient
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 2.00e-03 |
|
|
8 | 5.25e-04 | 3.8065 | 1.9285
|
|
16 | 1.34e-04 | 3.9116 | 1.9678
|
|
32 | 3.39e-05 | 3.9578 | 1.9847
|
|
---------------------------------------------
|
|
Happy little convergence test!
|
|
|
|
|
|
uniformLOM: Nodal Gradient
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 2.00e-03 |
|
|
8 | 5.25e-04 | 3.8065 | 1.9285
|
|
16 | 1.34e-04 | 3.9116 | 1.9678
|
|
32 | 3.39e-05 | 3.9578 | 1.9847
|
|
---------------------------------------------
|
|
You are awesome.
|
|
|
|
|
|
rotateLOM: Nodal Gradient
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 2.57e-03 |
|
|
8 | 6.54e-04 | 3.9234 | 1.9721
|
|
16 | 1.80e-04 | 3.6283 | 1.8593
|
|
32 | 4.66e-05 | 3.8703 | 1.9525
|
|
---------------------------------------------
|
|
The test be workin!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_operators.TestNodalGrad2D</td>
|
|
<td>1</td>
|
|
<td>1</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c15',1)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt15.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_order</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt15.1')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt15.1' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt15.1').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt15.1:
|
|
uniformTensorMesh: Nodal Gradient 2D
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 2.00e-03 |
|
|
8 | 5.25e-04 | 3.8065 | 1.9285
|
|
16 | 1.34e-04 | 3.9116 | 1.9678
|
|
32 | 3.39e-05 | 3.9578 | 1.9847
|
|
---------------------------------------------
|
|
Testing is important.
|
|
|
|
|
|
uniformLOM: Nodal Gradient 2D
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 2.00e-03 |
|
|
8 | 5.25e-04 | 3.8065 | 1.9285
|
|
16 | 1.34e-04 | 3.9116 | 1.9678
|
|
32 | 3.39e-05 | 3.9578 | 1.9847
|
|
---------------------------------------------
|
|
The test be workin!
|
|
|
|
|
|
rotateLOM: Nodal Gradient 2D
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
4 | 2.56e-03 |
|
|
8 | 6.54e-04 | 3.9232 | 1.9720
|
|
16 | 1.80e-04 | 3.6343 | 1.8617
|
|
32 | 4.64e-05 | 3.8804 | 1.9562
|
|
---------------------------------------------
|
|
You get a gold star!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_Solver.TestSolver</td>
|
|
<td>10</td>
|
|
<td>10</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c16',10)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt16.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_directDiagonal_1</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt16.2' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_directDiagonal_M</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt16.3' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_directFactored_1</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt16.4' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_directFactored_M</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt16.5' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_directLower_1</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt16.6' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_directLower_M</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt16.7' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_directSpsolve_1</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt16.8' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_directSpsolve_M</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt16.9' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_directUpper_1</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt16.10' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_directUpper_M</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_tensorMesh.BasicTensorMeshTests</td>
|
|
<td>7</td>
|
|
<td>7</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c17',7)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt17.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_area_3D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt17.2' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_edge_2D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt17.3' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_edge_3D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt17.4' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_vectorCC_2D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt17.5' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_vectorN_2D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt17.6' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_vol_2D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt17.7' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_vol_3D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_tensorMesh.TestPoissonEqn</td>
|
|
<td>2</td>
|
|
<td>2</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c18',2)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt18.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderBackward</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt18.1')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt18.1' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt18.1').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt18.1:
|
|
uniformTensorMesh: Poisson Equation - Backward
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 1.22e-02 |
|
|
20 | 7.96e-03 | 1.5342 | 1.9182
|
|
24 | 5.59e-03 | 1.4258 | 1.9458
|
|
---------------------------------------------
|
|
Testing is important.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt18.2' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_orderForward</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt18.2')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt18.2' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt18.2').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt18.2:
|
|
uniformTensorMesh: Poisson Equation - Forward
|
|
_____________________________________________
|
|
h | error | e(i-1)/e(i) | order
|
|
~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~
|
|
16 | 1.43e+00 |
|
|
20 | 9.35e-01 | 1.5271 | 1.8974
|
|
24 | 6.58e-01 | 1.4223 | 1.9320
|
|
---------------------------------------------
|
|
Go Test Go!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_utils.TestCheckDerivative</td>
|
|
<td>3</td>
|
|
<td>3</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c19',3)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt19.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_simpleFail</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt19.1')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt19.1' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt19.1').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt19.1: ==================== checkDerivative ====================
|
|
iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order
|
|
---------------------------------------------------------
|
|
0 1.00e-01 1.958e-01 3.905e-01 nan
|
|
1 1.00e-02 1.956e-02 3.911e-02 0.999
|
|
2 1.00e-03 1.956e-03 3.912e-03 1.000
|
|
3 1.00e-04 1.956e-04 3.912e-04 1.000
|
|
4 1.00e-05 1.956e-05 3.912e-05 1.000
|
|
5 1.00e-06 1.956e-06 3.912e-06 1.000
|
|
6 1.00e-07 1.956e-07 3.912e-07 1.000
|
|
*********************************************************
|
|
<<<<<<<<<<<<<<<<<<<<<<<<< FAIL! >>>>>>>>>>>>>>>>>>>>>>>>>
|
|
*********************************************************
|
|
Thankfully, persistence is a great substitute for talent.
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt19.2' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_simpleFunction</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt19.2')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt19.2' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt19.2').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt19.2: ==================== checkDerivative ====================
|
|
iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order
|
|
---------------------------------------------------------
|
|
0 1.00e-01 1.732e-01 9.470e-03 nan
|
|
1 1.00e-02 1.817e-02 8.582e-05 2.043
|
|
2 1.00e-03 1.825e-03 8.491e-07 2.005
|
|
3 1.00e-04 1.825e-04 8.482e-09 2.000
|
|
4 1.00e-05 1.825e-05 8.481e-11 2.000
|
|
5 1.00e-06 1.825e-06 8.481e-13 2.000
|
|
6 1.00e-07 1.825e-07 8.451e-15 2.002
|
|
========================= PASS! =========================
|
|
Go Test Go!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr id='pt19.3' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_simplePass</div></td>
|
|
<td colspan='5' align='center'>
|
|
|
|
<!--css div popup start-->
|
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_pt19.3')" >
|
|
pass</a>
|
|
|
|
<div id='div_pt19.3' class="popup_window">
|
|
<div style='text-align: right; color:red;cursor:pointer'>
|
|
<a onfocus='this.blur();' onclick="document.getElementById('div_pt19.3').style.display = 'none' " >
|
|
[x]</a>
|
|
</div>
|
|
<pre>
|
|
|
|
pt19.3: ==================== checkDerivative ====================
|
|
iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order
|
|
---------------------------------------------------------
|
|
0 1.00e-01 1.244e-01 1.037e-02 nan
|
|
1 1.00e-02 1.211e-02 1.047e-04 1.996
|
|
2 1.00e-03 1.208e-03 1.048e-06 2.000
|
|
3 1.00e-04 1.208e-04 1.048e-08 2.000
|
|
4 1.00e-05 1.208e-05 1.048e-10 2.000
|
|
5 1.00e-06 1.208e-06 1.048e-12 2.000
|
|
6 1.00e-07 1.208e-07 1.052e-14 1.999
|
|
========================= PASS! =========================
|
|
You get a gold star!
|
|
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
<!--css div popup end-->
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr class='passClass'>
|
|
<td>test_utils.TestSequenceFunctions</td>
|
|
<td>8</td>
|
|
<td>8</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td><a href="javascript:showClassDetail('c20',8)">Detail</a></td>
|
|
</tr>
|
|
|
|
<tr id='pt20.1' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_indexCube_2D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt20.2' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_indexCube_3D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt20.3' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_invXXXBlockDiagonal</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt20.4' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mkvc1</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt20.5' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mkvc2</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt20.6' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_mkvc3</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt20.7' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_ndgrid_2D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='pt20.8' class='hiddenRow'>
|
|
<td class='none'><div class='testcase'>test_ndgrid_3D</div></td>
|
|
<td colspan='5' align='center'>pass</td>
|
|
</tr>
|
|
|
|
<tr id='total_row'>
|
|
<td>Total</td>
|
|
<td>99</td>
|
|
<td>96</td>
|
|
<td>0</td>
|
|
<td>3</td>
|
|
<td> </td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div id='ending'> </div>
|
|
|
|
</body>
|
|
</html>
|