diff --git a/SimPEG/Mesh/BaseMesh.py b/SimPEG/Mesh/BaseMesh.py index 7b656697..672b5c02 100644 --- a/SimPEG/Mesh/BaseMesh.py +++ b/SimPEG/Mesh/BaseMesh.py @@ -147,16 +147,6 @@ class BaseMesh(object): else: return switchKernal(x) - # def n(): - # doc = """ - # Number of Cells in each dimension (array of integers) - - # :rtype: numpy.array - # :return: n - # """ - # fget = lambda self: self._n - # return locals() - # n = property(**n()) def dim(): doc = """ @@ -219,10 +209,10 @@ class BaseMesh(object): :return: nC .. plot:: + :include-source: - from SimPEG.mesh import TensorMesh - import numpy as np - TensorMesh([np.ones(n) for n in [2,3]]).plotGrid(centers=True,showIt=True) + from SimPEG import Mesh, np + Mesh.TensorMesh([np.ones(n) for n in [2,3]]).plotGrid(centers=True,showIt=True) """ fget = lambda self: np.prod(self._n) return locals() @@ -290,10 +280,10 @@ class BaseMesh(object): :return: nN .. plot:: + :include-source: - from SimPEG.mesh import TensorMesh - import numpy as np - TensorMesh([np.ones(n) for n in [2,3]]).plotGrid(nodes=True,showIt=True) + from SimPEG import Mesh, np + Mesh.TensorMesh([np.ones(n) for n in [2,3]]).plotGrid(nodes=True,showIt=True) """ fget = lambda self: np.prod(self.nCv + 1) return locals() @@ -361,10 +351,10 @@ class BaseMesh(object): :return: [prod(nEx), prod(nEy), prod(nEz)] .. plot:: + :include-source: - from SimPEG.mesh import TensorMesh - import numpy as np - TensorMesh([np.ones(n) for n in [2,3]]).plotGrid(edges=True,showIt=True) + from SimPEG import Mesh, np + Mesh.TensorMesh([np.ones(n) for n in [2,3]]).plotGrid(edges=True,showIt=True) """ fget = lambda self: np.array([np.prod(x) for x in [self.nEx, self.nEy, self.nEz] if not x is None]) return locals() @@ -433,10 +423,10 @@ class BaseMesh(object): :return: [prod(nFx), prod(nFy), prod(nFz)] .. plot:: + :include-source: - from SimPEG.mesh import TensorMesh - import numpy as np - TensorMesh([np.ones(n) for n in [2,3]]).plotGrid(faces=True,showIt=True) + from SimPEG import Mesh, np + Mesh.TensorMesh([np.ones(n) for n in [2,3]]).plotGrid(faces=True,showIt=True) """ fget = lambda self: np.array([np.prod(x) for x in [self.nFx, self.nFy, self.nFz] if not x is None]) return locals() diff --git a/SimPEG/Mesh/LogicallyOrthogonalMesh.py b/SimPEG/Mesh/LogicallyOrthogonalMesh.py index dca59026..e39c0f54 100644 --- a/SimPEG/Mesh/LogicallyOrthogonalMesh.py +++ b/SimPEG/Mesh/LogicallyOrthogonalMesh.py @@ -17,8 +17,13 @@ class LogicallyOrthogonalMesh(BaseMesh, DiffOperators, InnerProducts, LomView): Example of a logically orthogonal mesh: - .. plot:: examples/mesh/plot_LogicallyOrthogonalMesh.py + .. plot:: + :include-source: + from SimPEG import Mesh, Utils + X, Y = Utils.exampleLomGird([3,3],'rotate') + M = Mesh.LogicallyOrthogonalMesh([X, Y]) + M.plotGrid(showIt=True) """ __metaclass__ = Utils.Save.Savable diff --git a/SimPEG/Mesh/LomView.py b/SimPEG/Mesh/LomView.py index 8243a248..4eceb918 100644 --- a/SimPEG/Mesh/LomView.py +++ b/SimPEG/Mesh/LomView.py @@ -15,10 +15,18 @@ class LomView(object): def __init__(self): pass - def plotGrid(self, length=0.05): + def plotGrid(self, length=0.05, showIt=False): """Plot the nodal, cell-centered and staggered grids for 1,2 and 3 dimensions. - .. plot:: examples/mesh/plot_LogicallyOrthogonalMesh.py + + .. plot:: + :include-source: + + from SimPEG import Mesh, Utils + X, Y = Utils.exampleLomGird([3,3],'rotate') + M = Mesh.LogicallyOrthogonalMesh([X, Y]) + M.plotGrid(showIt=True) + """ NN = self.r(self.gridN, 'N', 'N', 'M') if self.dim == 2: @@ -92,4 +100,5 @@ class LomView(object): ax.hold(False) ax.set_xlabel('x1') ax.set_ylabel('x2') - fig.show() + + if showIt: plt.show() diff --git a/SimPEG/Mesh/TensorMesh.py b/SimPEG/Mesh/TensorMesh.py index 441cb234..341cfba7 100644 --- a/SimPEG/Mesh/TensorMesh.py +++ b/SimPEG/Mesh/TensorMesh.py @@ -17,19 +17,19 @@ class TensorMesh(BaseMesh, TensorView, DiffOperators, InnerProducts): hy = np.array([1,2]) hz = np.array([1,1,1,1]) - mesh = TensorMesh([hx, hy, hz]) + mesh = Mesh.TensorMesh([hx, hy, hz]) Example of a padded tensor mesh: .. plot:: - from SimPEG import mesh, Utils - M = mesh.TensorMesh(Utils.meshTensors(((10,10),(40,10),(10,10)), ((10,10),(20,10),(0,0)))) + from SimPEG import Mesh, Utils + M = Mesh.TensorMesh(Utils.meshTensors(((10,10),(40,10),(10,10)), ((10,10),(20,10),(0,0)))) M.plotGrid() For a quick tensor mesh on a (10x12x15) unit cube:: - mesh = TensorMesh([10, 12, 15]) + mesh = Mesh.TensorMesh([10, 12, 15]) """ diff --git a/SimPEG/Mesh/TensorView.py b/SimPEG/Mesh/TensorView.py index 7f1cb5e5..7446aecd 100644 --- a/SimPEG/Mesh/TensorView.py +++ b/SimPEG/Mesh/TensorView.py @@ -34,11 +34,22 @@ class TensorView(object): :param str annotationColor: color of annotation, e.g. 'w', 'k', 'b' :param bool showIt: call plt.show() - .. plot:: examples/mesh/plot_image_2D.py - :include-source: + .. plot:: + :include-source: + + from SimPEG import Mesh, np + M = Mesh.TensorMesh([20, 20]) + I = np.sin(M.gridCC[:,0]*2*np.pi)*np.sin(M.gridCC[:,1]*2*np.pi) + M.plotImage(I, showIt=True) + + .. plot:: + :include-source: + + from SimPEG import Mesh, np + M = Mesh.TensorMesh([20,20,20]) + I = np.sin(M.gridCC[:,0]*2*np.pi)*np.sin(M.gridCC[:,1]*2*np.pi)*np.sin(M.gridCC[:,2]*2*np.pi) + M.plotImage(I, annotationColor='k', showIt=True) - .. plot:: examples/mesh/plot_image_3D.py - :include-source: """ assert type(I) == np.ndarray, "I must be a numpy array" assert type(numbering) == bool, "numbering must be a bool" @@ -237,11 +248,25 @@ class TensorView(object): :param bool lines: plot lines connecting nodes :param bool showIt: call plt.show() - .. plot:: examples/mesh/plot_grid_2D.py + .. plot:: :include-source: - .. plot:: examples/mesh/plot_grid_3D.py + from SimPEG import Mesh, np + h1 = np.linspace(.1,.5,3) + h2 = np.linspace(.1,.5,5) + mesh = Mesh.TensorMesh([h1, h2]) + mesh.plotGrid(nodes=True, faces=True, centers=True, lines=True, showIt=True) + + .. plot:: :include-source: + + from SimPEG import Mesh, np + h1 = np.linspace(.1,.5,3) + h2 = np.linspace(.1,.5,5) + h3 = np.linspace(.1,.5,3) + mesh = Mesh.TensorMesh([h1,h2,h3]) + mesh.plotGrid(nodes=True, faces=True, centers=True, lines=True, showIt=True) + """ if self.dim == 1: fig = plt.figure(1) diff --git a/SimPEG/Tests/TestUtils.py b/SimPEG/Tests/TestUtils.py index c5490f90..d84408d4 100644 --- a/SimPEG/Tests/TestUtils.py +++ b/SimPEG/Tests/TestUtils.py @@ -211,12 +211,10 @@ def checkDerivative(fctn, x0, num=7, plotIt=True, dx=None, expectedOrder=2, tole .. plot:: :include-source: - from SimPEG.tests import checkDerivative - from SimPEG.Utils import sdiag - import numpy as np + from SimPEG import Tests, Utils, np def simplePass(x): - return np.sin(x), sdiag(np.cos(x)) - checkDerivative(simplePass, np.random.randn(5)) + return np.sin(x), Utils.sdiag(np.cos(x)) + Tests.checkDerivative(simplePass, np.random.randn(5)) """ print "%s checkDerivative %s" % ('='*20, '='*20) diff --git a/SimPEG/Tests/runTests.py b/SimPEG/Tests/runTests.py deleted file mode 100644 index 58d94303..00000000 --- a/SimPEG/Tests/runTests.py +++ /dev/null @@ -1,57 +0,0 @@ -import os -import glob -import unittest -import HTMLTestRunner - -# This code will run all tests in directory named test_*.py -def main(html=False): - TITLE = 'Test Results' - test_file_strings = glob.glob('test_*.py') - module_strings = [str[0:len(str)-3] for str in test_file_strings] - suites = [unittest.defaultTestLoader.loadTestsFromName(str) for str - in module_strings] - testSuite = unittest.TestSuite(suites) - - if not html: - unittest.TextTestRunner(verbosity=2).run(testSuite) - return - - - outfile = open("report.html", "w") - runner = HTMLTestRunner.HTMLTestRunner( - stream=outfile, - title=TITLE, - description='SimPEG Test Report was automatically generated.', - verbosity=2 - ) - - runner.run(testSuite) - outfile.close() - - reader = open("report.html", "r") - writer = open("../../docs/api_TestResults.rst", "w") - - writer.write('.. _api_TestResults:\n\nTest Results\n============\n\n.. raw:: html\n\n') - - go = False - for line in reader: - skip = False - if line == ' - - - -
Start Time: 2013-11-26 20:46:38
-Duration: 0:00:31.569170
-Status: Pass 124
- -SimPEG Test Report was automatically generated.
-Show - Summary - Failed - All -
-| Test Group/Test case | -Count | -Pass | -Fail | -Error | -View | -
| test_basemesh.TestBaseMesh | -11 | -11 | -0 | -0 | -Detail | -
test_meshDimensions |
- pass | -||||
test_mesh_nc |
- pass | -||||
test_mesh_nc_xyz |
- pass | -||||
test_mesh_ne |
- pass | -||||
test_mesh_nf |
- pass | -||||
test_mesh_numbers |
- pass | -||||
test_mesh_r_CC_M |
- pass | -||||
test_mesh_r_E_M |
- pass | -||||
test_mesh_r_E_V |
- pass | -||||
test_mesh_r_F_M |
- pass | -||||
test_mesh_r_F_V |
- pass | -||||
| test_basemesh.TestMeshNumbers2D | -11 | -11 | -0 | -0 | -Detail | -
test_meshDimensions |
- pass | -||||
test_mesh_nc |
- pass | -||||
test_mesh_nc_xyz |
- pass | -||||
test_mesh_ne |
- pass | -||||
test_mesh_nf |
- pass | -||||
test_mesh_numbers |
- pass | -||||
test_mesh_r_CC_M |
- pass | -||||
test_mesh_r_E_M |
- pass | -||||
test_mesh_r_E_V |
- pass | -||||
test_mesh_r_F_M |
- pass | -||||
test_mesh_r_F_V |
- pass | -||||
| test_forward_DCproblem.DCProblemTests | -4 | -4 | -0 | -0 | -Detail | -
test_adjoint |
- pass | -||||
test_dataObj |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt3.2: ==================== checkDerivative ==================== - iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order - --------------------------------------------------------- - 0 1.00e-01 6.123e+01 4.217e+01 nan - 1 1.00e-02 2.340e+00 4.332e-01 1.988 - 2 1.00e-03 1.950e-01 4.344e-03 1.999 - 3 1.00e-04 1.911e-02 4.345e-05 2.000 - 4 1.00e-05 1.907e-03 4.345e-07 2.000 - 5 1.00e-06 1.906e-04 4.345e-09 2.000 - 6 1.00e-07 1.906e-05 5.251e-11 1.918 - ========================= PASS! ========================= - You deserve a pat on the back! - - - -- |
- ||||
test_misfit |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt3.3: ==================== checkDerivative ==================== - iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order - --------------------------------------------------------- - 0 1.00e-01 1.108e-01 1.042e-02 nan - 1 1.00e-02 1.085e-02 1.072e-04 1.988 - 2 1.00e-03 1.083e-03 1.074e-06 1.999 - 3 1.00e-04 1.083e-04 1.074e-08 2.000 - 4 1.00e-05 1.083e-05 1.074e-10 2.000 - 5 1.00e-06 1.083e-06 1.076e-12 1.999 - 6 1.00e-07 1.083e-07 1.136e-14 1.976 - ========================= PASS! ========================= - And then everyone was happy. - - - -- |
- ||||
test_modelObj |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt3.4: ==================== checkDerivative ==================== - iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order - --------------------------------------------------------- - 0 1.00e-01 6.962e+00 7.992e+00 nan - 1 1.00e-02 2.310e-02 7.992e-02 2.000 - 2 1.00e-03 9.502e-03 7.992e-04 2.000 - 3 1.00e-04 1.022e-03 7.992e-06 2.000 - 4 1.00e-05 1.029e-04 7.992e-08 2.000 - 5 1.00e-06 1.030e-05 7.992e-10 2.000 - 6 1.00e-07 1.030e-06 7.992e-12 2.000 - ========================= PASS! ========================= - And then everyone was happy. - - - -- |
- ||||
| test_forward_problem.ProblemTests | -2 | -2 | -0 | -0 | -Detail | -
test_modelTransform |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt4.1: SimPEG.forward.Problem: Testing Model Transform - ==================== checkDerivative ==================== - iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order - --------------------------------------------------------- - 0 1.00e-01 2.299e-01 5.992e-17 nan - 1 1.00e-02 2.299e-02 3.925e-17 0.184 - 2 1.00e-03 2.299e-03 6.480e-17 -0.218 - 3 1.00e-04 2.299e-04 2.411e-17 0.429 - 4 1.00e-05 2.299e-05 6.966e-17 -0.461 - 5 1.00e-06 2.299e-06 5.826e-17 0.078 - 6 1.00e-07 2.299e-07 5.474e-17 0.027 - ========================= PASS! ========================= - Go Test Go! - - - -- |
- ||||
test_regularization |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt4.2: ==================== checkDerivative ==================== - iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order - --------------------------------------------------------- - 0 1.00e-01 6.927e-02 1.838e-02 nan - 1 1.00e-02 5.273e-03 1.838e-04 2.000 - 2 1.00e-03 5.107e-04 1.838e-06 2.000 - 3 1.00e-04 5.091e-05 1.838e-08 2.000 - 4 1.00e-05 5.089e-06 1.838e-10 2.000 - 5 1.00e-06 5.089e-07 1.832e-12 2.001 - 6 1.00e-07 5.089e-08 1.693e-14 2.034 - ========================= PASS! ========================= - And then everyone was happy. - - - -- |
- ||||
| test_interpolation.TestInterpolation1D | -2 | -2 | -0 | -0 | -Detail | -
test_orderCC |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt5.1: - uniformTensorMesh: Interpolation 1D: CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 2.22e-01 | - 16 | 6.04e-02 | 3.6770 | 1.8785 - 32 | 1.39e-02 | 4.3413 | 2.1181 - --------------------------------------------- - Testing is important. - - - randomTensorMesh: Interpolation 1D: CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.99e-01 | - 16 | 4.34e-02 | 4.5859 | 1.9375 - 32 | 2.17e-02 | 2.0012 | 0.9694 - --------------------------------------------- - Yay passed! - - - -- |
- ||||
test_orderN |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt5.2: - uniformTensorMesh: Interpolation 1D: N - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 2.55e-01 | - 16 | 6.06e-02 | 4.2017 | 2.0710 - 32 | 1.59e-02 | 3.8063 | 1.9284 - --------------------------------------------- - You get a gold star! - - - randomTensorMesh: Interpolation 1D: N - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 4.04e-01 | - 16 | 9.67e-02 | 4.1780 | 1.7722 - 32 | 2.04e-02 | 4.7457 | 2.3955 - --------------------------------------------- - Testing is important. - - - -- |
- ||||
| test_interpolation.TestInterpolation2d | -6 | -6 | -0 | -0 | -Detail | -
test_orderCC |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt6.1: - uniformTensorMesh: Interpolation 2D: CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 6.15e-02 | - 16 | 1.77e-02 | 3.4675 | 1.7939 - 32 | 4.42e-03 | 4.0109 | 2.0039 - 64 | 1.08e-03 | 4.0815 | 2.0291 - --------------------------------------------- - Well done Rowan! - - - randomTensorMesh: Interpolation 2D: CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 3.77e-01 | - 16 | 3.21e-02 | 11.7173 | 2.5590 - 32 | 1.30e-02 | 2.4745 | 1.2528 - 64 | 3.01e-03 | 4.3182 | 2.3739 - --------------------------------------------- - You get a gold star! - - - -- |
- ||||
test_orderEx |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt6.2: - uniformTensorMesh: Interpolation 2D: Ex - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 7.04e-02 | - 16 | 1.86e-02 | 3.7909 | 1.9226 - 32 | 4.49e-03 | 4.1339 | 2.0475 - 64 | 1.16e-03 | 3.8626 | 1.9496 - --------------------------------------------- - Happy little convergence test! - - - randomTensorMesh: Interpolation 2D: Ex - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.72e-01 | - 16 | 7.86e-02 | 2.1870 | 1.3588 - 32 | 1.19e-02 | 6.6042 | 2.1516 - 64 | 4.57e-03 | 2.6028 | 1.6091 - --------------------------------------------- - And then everyone was happy. - - - -- |
- ||||
test_orderEy |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt6.3: - uniformTensorMesh: Interpolation 2D: Ey - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 7.04e-02 | - 16 | 1.88e-02 | 3.7436 | 1.9044 - 32 | 4.61e-03 | 4.0809 | 2.0289 - 64 | 1.09e-03 | 4.2291 | 2.0803 - --------------------------------------------- - Well done Rowan! - - - randomTensorMesh: Interpolation 2D: Ey - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.37e-01 | - 16 | 3.07e-02 | 4.4669 | 2.6314 - 32 | 1.09e-02 | 2.8091 | 1.6504 - 64 | 3.36e-03 | 3.2469 | 1.7585 - --------------------------------------------- - Happy little convergence test! - - - -- |
- ||||
test_orderFx |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt6.4: - uniformTensorMesh: Interpolation 2D: Fx - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 6.15e-02 | - 16 | 1.77e-02 | 3.4675 | 1.7939 - 32 | 4.42e-03 | 4.0109 | 2.0039 - 64 | 1.08e-03 | 4.0815 | 2.0291 - --------------------------------------------- - Yay passed! - - - randomTensorMesh: Interpolation 2D: Fx - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.10e-01 | - 16 | 3.14e-02 | 3.5021 | 1.5452 - 32 | 1.11e-02 | 2.8257 | 1.9669 - 64 | 2.05e-03 | 5.4116 | 2.0147 - --------------------------------------------- - You get a gold star! - - - -- |
- ||||
test_orderFy |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt6.5: - uniformTensorMesh: Interpolation 2D: Fy - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 6.73e-02 | - 16 | 1.77e-02 | 3.7972 | 1.9249 - 32 | 4.67e-03 | 3.7987 | 1.9255 - 64 | 1.15e-03 | 4.0512 | 2.0183 - --------------------------------------------- - Go Test Go! - - - randomTensorMesh: Interpolation 2D: Fy - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 8.66e-02 | - 16 | 2.34e-02 | 3.7007 | 2.6699 - 32 | 6.57e-03 | 3.5614 | 1.7521 - 64 | 4.31e-03 | 1.5232 | 0.6221 - --------------------------------------------- - Once upon a time, a happy little test passed. - - - -- |
- ||||
test_orderN |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt6.6: - uniformTensorMesh: Interpolation 2D: N - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 7.04e-02 | - 16 | 1.86e-02 | 3.7909 | 1.9226 - 32 | 4.49e-03 | 4.1339 | 2.0475 - 64 | 1.16e-03 | 3.8626 | 1.9496 - --------------------------------------------- - Happy little convergence test! - - - randomTensorMesh: Interpolation 2D: N - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 2.65e-01 | - 16 | 4.05e-02 | 6.5527 | 2.8057 - 32 | 1.12e-02 | 3.6030 | 2.0581 - 64 | 4.96e-03 | 2.2627 | 1.0683 - --------------------------------------------- - You deserve a pat on the back! - - - -- |
- ||||
| test_interpolation.TestInterpolation3D | -8 | -8 | -0 | -0 | -Detail | -
test_orderCC |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt7.1: - uniformTensorMesh: Interpolation CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 7.61e-02 | - 16 | 1.92e-02 | 3.9636 | 1.9868 - 32 | 4.80e-03 | 3.9985 | 1.9995 - 64 | 1.19e-03 | 4.0304 | 2.0109 - --------------------------------------------- - Testing is important. - - - randomTensorMesh: Interpolation CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.76e-01 | - 16 | 4.63e-02 | 3.7874 | 2.0006 - 32 | 7.92e-03 | 5.8492 | 2.2787 - 64 | 2.92e-03 | 2.7168 | 1.6066 - --------------------------------------------- - You get a gold star! - - - -- |
- ||||
test_orderEx |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt7.2: - uniformTensorMesh: Interpolation Ex - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 6.98e-02 | - 16 | 1.86e-02 | 3.7568 | 1.9095 - 32 | 4.61e-03 | 4.0352 | 2.0126 - 64 | 1.19e-03 | 3.8699 | 1.9523 - --------------------------------------------- - Go Test Go! - - - randomTensorMesh: Interpolation Ex - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 2.46e-01 | - 16 | 5.02e-02 | 4.9049 | 1.8891 - 32 | 1.30e-02 | 3.8611 | 2.0663 - 64 | 3.43e-03 | 3.7901 | 1.9457 - --------------------------------------------- - Well done Rowan! - - - -- |
- ||||
test_orderEy |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt7.3: - uniformTensorMesh: Interpolation Ey - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 7.02e-02 | - 16 | 1.87e-02 | 3.7422 | 1.9039 - 32 | 4.60e-03 | 4.0794 | 2.0284 - 64 | 1.20e-03 | 3.8376 | 1.9402 - --------------------------------------------- - Well done Rowan! - - - randomTensorMesh: Interpolation Ey - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.51e-01 | - 16 | 2.97e-02 | 5.0669 | 2.7612 - 32 | 1.64e-02 | 1.8093 | 0.9160 - 64 | 3.30e-03 | 4.9817 | 1.8113 - --------------------------------------------- - That was easy! - - - -- |
- ||||
test_orderEz |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt7.4: - uniformTensorMesh: Interpolation Ez - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 7.03e-02 | - 16 | 1.88e-02 | 3.7405 | 1.9032 - 32 | 4.73e-03 | 3.9691 | 1.9888 - 64 | 1.17e-03 | 4.0367 | 2.0132 - --------------------------------------------- - You are awesome. - - - randomTensorMesh: Interpolation Ez - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.51e-01 | - 16 | 5.20e-02 | 2.8987 | 1.0786 - 32 | 2.12e-02 | 2.4545 | 1.3995 - 64 | 3.78e-03 | 5.5957 | 2.0698 - --------------------------------------------- - The test be workin! - - - -- |
- ||||
test_orderFx |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt7.5: - uniformTensorMesh: Interpolation Fx - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 7.61e-02 | - 16 | 1.92e-02 | 3.9636 | 1.9868 - 32 | 4.80e-03 | 3.9985 | 1.9995 - 64 | 1.19e-03 | 4.0304 | 2.0109 - --------------------------------------------- - Once upon a time, a happy little test passed. - - - randomTensorMesh: Interpolation Fx - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.09e-01 | - 16 | 3.21e-02 | 3.4014 | 2.2719 - 32 | 7.71e-03 | 4.1635 | 2.2751 - 64 | 2.44e-03 | 3.1572 | 1.4639 - --------------------------------------------- - Happy little convergence test! - - - -- |
- ||||
test_orderFy |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt7.6: - uniformTensorMesh: Interpolation Fy - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 7.60e-02 | - 16 | 1.90e-02 | 3.9876 | 1.9955 - 32 | 4.65e-03 | 4.0980 | 2.0349 - 64 | 1.14e-03 | 4.0834 | 2.0298 - --------------------------------------------- - Testing is important. - - - randomTensorMesh: Interpolation Fy - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.72e-01 | - 16 | 4.54e-02 | 3.7960 | 1.0476 - 32 | 1.05e-02 | 4.3190 | 2.8779 - 64 | 4.48e-03 | 2.3456 | 1.3543 - --------------------------------------------- - Go Test Go! - - - -- |
- ||||
test_orderFz |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt7.7: - uniformTensorMesh: Interpolation Fz - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 7.61e-02 | - 16 | 1.92e-02 | 3.9711 | 1.9895 - 32 | 4.75e-03 | 4.0291 | 2.0105 - 64 | 1.14e-03 | 4.1592 | 2.0563 - --------------------------------------------- - Well done Rowan! - - - randomTensorMesh: Interpolation Fz - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.31e-01 | - 16 | 2.02e-02 | 6.4764 | 2.6521 - 32 | 9.14e-03 | 2.2089 | 0.9149 - 64 | 2.48e-03 | 3.6911 | 1.9016 - --------------------------------------------- - Go Test Go! - - - -- |
- ||||
test_orderN |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt7.8: - uniformTensorMesh: Interpolation N - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 6.98e-02 | - 16 | 1.86e-02 | 3.7568 | 1.9095 - 32 | 4.61e-03 | 4.0352 | 2.0126 - 64 | 1.19e-03 | 3.8699 | 1.9523 - --------------------------------------------- - You get a gold star! - - - randomTensorMesh: Interpolation N - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.29e-01 | - 16 | 7.05e-02 | 1.8331 | 1.0270 - 32 | 1.19e-02 | 5.9063 | 2.3058 - 64 | 3.27e-03 | 3.6506 | 1.7122 - --------------------------------------------- - You are awesome. - - - -- |
- ||||
| test_LogicallyOrthogonalMesh.BasicLOMTests | -8 | -8 | -0 | -0 | -Detail | -
test_area_3D |
- pass | -||||
test_edge_2D |
- pass | -||||
test_edge_3D |
- pass | -||||
test_grid |
- pass | -||||
test_normals |
- pass | -||||
test_tangents |
- pass | -||||
test_vol_2D |
- pass | -||||
test_vol_3D |
- pass | -||||
| test_massMatrices.TestInnerProducts: Integrate an function over a unit cube domain using edgeInnerProducts and faceInnerProducts. | -6 | -6 | -0 | -0 | -Detail | -
test_order1_edges |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - 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 - --------------------------------------------- - Not just a pretty face Rowan - - - 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 - --------------------------------------------- - You deserve a pat on the back! - - - 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! - - - -- |
- ||||
test_order1_faces |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - 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 - --------------------------------------------- - Well done Rowan! - - - 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 - --------------------------------------------- - Yay passed! - - - 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 - --------------------------------------------- - Testing is important. - - - -- |
- ||||
test_order3_edges |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - 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 - --------------------------------------------- - Once upon a time, a happy little test passed. - - - 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 - --------------------------------------------- - Awesome, Rowan, just awesome. - - - 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 - --------------------------------------------- - And then everyone was happy. - - - -- |
- ||||
test_order3_faces |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - 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 - --------------------------------------------- - The test be workin! - - - 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 - --------------------------------------------- - Go Test Go! - - - 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 - --------------------------------------------- - Happy little convergence test! - - - -- |
- ||||
test_order6_edges |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - 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 - --------------------------------------------- - That was easy! - - - 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 - --------------------------------------------- - Yay passed! - - - -- |
- ||||
test_order6_faces |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - 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 - --------------------------------------------- - The test be workin! - - - 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 deserve a pat on the back! - - - -- |
- ||||
| test_massMatrices.TestInnerProducts2D: Integrate an function over a unit cube domain using edgeInnerProducts and faceInnerProducts. | -6 | -6 | -0 | -0 | -Detail | -
test_order1_edges |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - 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 - --------------------------------------------- - The test be workin! - - - 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 - --------------------------------------------- - You get a gold star! - - - 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 - --------------------------------------------- - Well done Rowan! - - - -- |
- ||||
test_order1_faces |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - 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 - --------------------------------------------- - Yay passed! - - - 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 deserve a pat on the back! - - - 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 - --------------------------------------------- - You get a gold star! - - - -- |
- ||||
test_order2_faces |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - 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 - --------------------------------------------- - Yay passed! - - - 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 - --------------------------------------------- - Once upon a time, a happy little test passed. - - - 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 - --------------------------------------------- - Well done Rowan! - - - -- |
- ||||
test_order3_edges |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - 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 - --------------------------------------------- - The test be workin! - - - 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 - --------------------------------------------- - The test be workin! - - - 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 - --------------------------------------------- - Go Test Go! - - - -- |
- ||||
test_order3_faces |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - 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 are awesome. - - - 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. - - - -- |
- ||||
test_order6_edges |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - 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 - --------------------------------------------- - Go Test Go! - - - 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 - --------------------------------------------- - That was easy! - - - 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 - --------------------------------------------- - Go Test Go! - - - -- |
- ||||
| test_operators.TestAveraging2D | -6 | -6 | -0 | -0 | -Detail | -
test_orderCC2F |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt11.1: - uniformTensorMesh: Averaging 2D: CC2F - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.25e-01 | - 8 | 6.25e-02 | 1.9961 | 0.9972 - 16 | 3.12e-02 | 1.9990 | 0.9993 - 32 | 1.56e-02 | 1.9998 | 0.9998 - --------------------------------------------- - You are awesome. - - - uniformLOM: Averaging 2D: CC2F - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.25e-01 | - 8 | 6.25e-02 | 1.9961 | 0.9972 - 16 | 3.12e-02 | 1.9990 | 0.9993 - 32 | 1.56e-02 | 1.9998 | 0.9998 - --------------------------------------------- - The test be workin! - - - rotateLOM: Averaging 2D: CC2F - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.28e-01 | - 8 | 7.22e-02 | 1.7667 | 0.8210 - 16 | 3.81e-02 | 1.8958 | 0.9228 - 32 | 1.95e-02 | 1.9507 | 0.9640 - --------------------------------------------- - Testing is important. - - - -- |
- ||||
test_orderE2CC |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt11.2: - uniformTensorMesh: Averaging 2D: E2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 6.87e-03 | - 8 | 1.76e-03 | 3.8978 | 1.9627 - 16 | 4.45e-04 | 3.9561 | 1.9841 - 32 | 1.12e-04 | 3.9799 | 1.9927 - --------------------------------------------- - Once upon a time, a happy little test passed. - - - uniformLOM: Averaging 2D: E2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 6.87e-03 | - 8 | 1.76e-03 | 3.8978 | 1.9627 - 16 | 4.45e-04 | 3.9561 | 1.9841 - 32 | 1.12e-04 | 3.9799 | 1.9927 - --------------------------------------------- - Yay passed! - - - rotateLOM: Averaging 2D: E2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 6.88e-03 | - 8 | 1.82e-03 | 3.7846 | 1.9202 - 16 | 4.66e-04 | 3.8970 | 1.9624 - 32 | 1.18e-04 | 3.9552 | 1.9837 - --------------------------------------------- - You deserve a pat on the back! - - - -- |
- ||||
test_orderF2CC |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt11.3: - uniformTensorMesh: Averaging 2D: F2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 6.87e-03 | - 8 | 1.76e-03 | 3.8978 | 1.9627 - 16 | 4.45e-04 | 3.9561 | 1.9841 - 32 | 1.12e-04 | 3.9799 | 1.9927 - --------------------------------------------- - Well done Rowan! - - - uniformLOM: Averaging 2D: F2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 6.87e-03 | - 8 | 1.76e-03 | 3.8978 | 1.9627 - 16 | 4.45e-04 | 3.9561 | 1.9841 - 32 | 1.12e-04 | 3.9799 | 1.9927 - --------------------------------------------- - That was easy! - - - rotateLOM: Averaging 2D: F2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 6.88e-03 | - 8 | 1.82e-03 | 3.7846 | 1.9202 - 16 | 4.66e-04 | 3.8970 | 1.9624 - 32 | 1.18e-04 | 3.9552 | 1.9837 - --------------------------------------------- - You deserve a pat on the back! - - - -- |
- ||||
test_orderN2CC |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt11.4: - uniformTensorMesh: Averaging 2D: N2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.37e-02 | - 8 | 3.52e-03 | 3.8978 | 1.9627 - 16 | 8.90e-04 | 3.9561 | 1.9841 - 32 | 2.24e-04 | 3.9799 | 1.9927 - --------------------------------------------- - Not just a pretty face Rowan - - - uniformLOM: Averaging 2D: N2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.37e-02 | - 8 | 3.52e-03 | 3.8978 | 1.9627 - 16 | 8.90e-04 | 3.9561 | 1.9841 - 32 | 2.24e-04 | 3.9799 | 1.9927 - --------------------------------------------- - Testing is important. - - - rotateLOM: Averaging 2D: N2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.38e-02 | - 8 | 3.64e-03 | 3.7900 | 1.9222 - 16 | 9.33e-04 | 3.8980 | 1.9627 - 32 | 2.36e-04 | 3.9577 | 1.9847 - --------------------------------------------- - Well done Rowan! - - - -- |
- ||||
test_orderN2E |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt11.5: - uniformTensorMesh: Averaging 2D: N2E - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 7.74e-03 | - 8 | 1.95e-03 | 3.9727 | 1.9901 - 16 | 4.88e-04 | 3.9932 | 1.9975 - 32 | 1.22e-04 | 3.9983 | 1.9994 - --------------------------------------------- - Happy little convergence test! - - - uniformLOM: Averaging 2D: N2E - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 7.74e-03 | - 8 | 1.95e-03 | 3.9727 | 1.9901 - 16 | 4.88e-04 | 3.9932 | 1.9975 - 32 | 1.22e-04 | 3.9983 | 1.9994 - --------------------------------------------- - And then everyone was happy. - - - rotateLOM: Averaging 2D: N2E - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.02e-02 | - 8 | 2.73e-03 | 3.7288 | 1.8987 - 16 | 7.34e-04 | 3.7229 | 1.8964 - 32 | 1.86e-04 | 3.9505 | 1.9820 - --------------------------------------------- - Go Test Go! - - - -- |
- ||||
test_orderN2F |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt11.6: - uniformTensorMesh: Averaging 2D: N2F - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 7.74e-03 | - 8 | 1.95e-03 | 3.9727 | 1.9901 - 16 | 4.88e-04 | 3.9932 | 1.9975 - 32 | 1.22e-04 | 3.9983 | 1.9994 - --------------------------------------------- - You deserve a pat on the back! - - - uniformLOM: Averaging 2D: N2F - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 7.74e-03 | - 8 | 1.95e-03 | 3.9727 | 1.9901 - 16 | 4.88e-04 | 3.9932 | 1.9975 - 32 | 1.22e-04 | 3.9983 | 1.9994 - --------------------------------------------- - The test be workin! - - - rotateLOM: Averaging 2D: N2F - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.02e-02 | - 8 | 2.73e-03 | 3.7288 | 1.8987 - 16 | 7.34e-04 | 3.7229 | 1.8964 - 32 | 1.86e-04 | 3.9505 | 1.9820 - --------------------------------------------- - Well done Rowan! - - - -- |
- ||||
| test_operators.TestAveraging3D | -6 | -6 | -0 | -0 | -Detail | -
test_orderCC2F |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt12.1: - uniformTensorMesh: Averaging 3D: CC2F - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 3.19e-01 | - 8 | 1.65e-01 | 1.9394 | 0.9556 - 16 | 8.36e-02 | 1.9692 | 0.9776 - 32 | 4.21e-02 | 1.9845 | 0.9888 - --------------------------------------------- - Well done Rowan! - - - uniformLOM: Averaging 3D: CC2F - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 3.19e-01 | - 8 | 1.65e-01 | 1.9394 | 0.9556 - 16 | 8.36e-02 | 1.9692 | 0.9776 - 32 | 4.21e-02 | 1.9845 | 0.9888 - --------------------------------------------- - Testing is important. - - - rotateLOM: Averaging 3D: CC2F - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 3.57e-01 | - 8 | 1.92e-01 | 1.8621 | 0.8969 - 16 | 9.95e-02 | 1.9268 | 0.9462 - 32 | 4.98e-02 | 1.9972 | 0.9980 - --------------------------------------------- - You are awesome. - - - -- |
- ||||
test_orderE2CC |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt12.2: - uniformTensorMesh: Averaging 3D: E2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 8.53e-03 | - 8 | 2.47e-03 | 3.4463 | 1.7851 - 16 | 6.63e-04 | 3.7311 | 1.8996 - 32 | 1.71e-04 | 3.8674 | 1.9514 - --------------------------------------------- - Go Test Go! - - - uniformLOM: Averaging 3D: E2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 8.53e-03 | - 8 | 2.47e-03 | 3.4463 | 1.7851 - 16 | 6.63e-04 | 3.7311 | 1.8996 - 32 | 1.71e-04 | 3.8674 | 1.9514 - --------------------------------------------- - You get a gold star! - - - rotateLOM: Averaging 3D: E2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 9.08e-03 | - 8 | 2.55e-03 | 3.5588 | 1.8314 - 16 | 7.77e-04 | 3.2852 | 1.7160 - 32 | 2.08e-04 | 3.7415 | 1.9036 - --------------------------------------------- - You get a gold star! - - - -- |
- ||||
test_orderF2CC |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt12.3: - uniformTensorMesh: Averaging 3D: F2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 4.26e-03 | - 8 | 1.24e-03 | 3.4463 | 1.7851 - 16 | 3.32e-04 | 3.7311 | 1.8996 - 32 | 8.57e-05 | 3.8674 | 1.9514 - --------------------------------------------- - You are awesome. - - - uniformLOM: Averaging 3D: F2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 4.26e-03 | - 8 | 1.24e-03 | 3.4463 | 1.7851 - 16 | 3.32e-04 | 3.7311 | 1.8996 - 32 | 8.57e-05 | 3.8674 | 1.9514 - --------------------------------------------- - And then everyone was happy. - - - rotateLOM: Averaging 3D: F2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 4.54e-03 | - 8 | 1.28e-03 | 3.5589 | 1.8314 - 16 | 3.88e-04 | 3.2842 | 1.7155 - 32 | 1.04e-04 | 3.7417 | 1.9037 - --------------------------------------------- - Awesome, Rowan, just awesome. - - - -- |
- ||||
test_orderN2CC |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt12.4: - uniformTensorMesh: Averaging 3D: N2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.28e-02 | - 8 | 3.71e-03 | 3.4463 | 1.7851 - 16 | 9.95e-04 | 3.7311 | 1.8996 - 32 | 2.57e-04 | 3.8674 | 1.9514 - --------------------------------------------- - You get a gold star! - - - uniformLOM: Averaging 3D: N2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.28e-02 | - 8 | 3.71e-03 | 3.4463 | 1.7851 - 16 | 9.95e-04 | 3.7311 | 1.8996 - 32 | 2.57e-04 | 3.8674 | 1.9514 - --------------------------------------------- - Go Test Go! - - - rotateLOM: Averaging 3D: N2CC - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.36e-02 | - 8 | 3.83e-03 | 3.5589 | 1.8314 - 16 | 1.17e-03 | 3.2862 | 1.7164 - 32 | 3.11e-04 | 3.7413 | 1.9036 - --------------------------------------------- - And then everyone was happy. - - - -- |
- ||||
test_orderN2E |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt12.5: - uniformTensorMesh: Averaging 3D: N2E - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.88e-02 | - 8 | 4.99e-03 | 3.7613 | 1.9112 - 16 | 1.29e-03 | 3.8779 | 1.9553 - 32 | 3.27e-04 | 3.9382 | 1.9775 - --------------------------------------------- - You deserve a pat on the back! - - - uniformLOM: Averaging 3D: N2E - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.88e-02 | - 8 | 4.99e-03 | 3.7613 | 1.9112 - 16 | 1.29e-03 | 3.8779 | 1.9553 - 32 | 3.27e-04 | 3.9382 | 1.9775 - --------------------------------------------- - And then everyone was happy. - - - rotateLOM: Averaging 3D: N2E - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 2.41e-02 | - 8 | 6.11e-03 | 3.9523 | 1.9827 - 16 | 1.70e-03 | 3.5908 | 1.8443 - 32 | 4.41e-04 | 3.8566 | 1.9473 - --------------------------------------------- - Go Test Go! - - - -- |
- ||||
test_orderN2F |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt12.6: - uniformTensorMesh: Averaging 3D: N2F - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.78e-02 | - 8 | 4.87e-03 | 3.6557 | 1.8701 - 16 | 1.27e-03 | 3.8285 | 1.9368 - 32 | 3.25e-04 | 3.9144 | 1.9688 - --------------------------------------------- - Go Test Go! - - - uniformLOM: Averaging 3D: N2F - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 1.78e-02 | - 8 | 4.87e-03 | 3.6557 | 1.8701 - 16 | 1.27e-03 | 3.8285 | 1.9368 - 32 | 3.25e-04 | 3.9144 | 1.9688 - --------------------------------------------- - Go Test Go! - - - rotateLOM: Averaging 3D: N2F - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 4 | 2.01e-02 | - 8 | 5.39e-03 | 3.7357 | 1.9014 - 16 | 1.49e-03 | 3.6148 | 1.8539 - 32 | 3.92e-04 | 3.7997 | 1.9259 - --------------------------------------------- - Well done Rowan! - - - -- |
- ||||
| test_operators.TestCellGrad1D_InhomogeneousDirichlet | -1 | -1 | -0 | -0 | -Detail | -
test_order |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt13.1: - uniformTensorMesh: Cell Grad 1D - Dirichlet - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.22e+00 | - 16 | 6.15e-01 | 1.9808 | 0.9861 - 32 | 3.08e-01 | 1.9952 | 0.9965 - 64 | 1.54e-01 | 1.9988 | 0.9991 - --------------------------------------------- - Awesome, Rowan, just awesome. - - - -- |
- ||||
| test_operators.TestCellGrad2D_Dirichlet | -1 | -1 | -0 | -0 | -Detail | -
test_order |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt14.1: - uniformTensorMesh: Cell Grad 2D - Dirichlet - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.48e-01 | - 16 | 3.95e-02 | 3.7462 | 1.9054 - 32 | 1.00e-02 | 3.9364 | 1.9769 - 64 | 2.52e-03 | 3.9841 | 1.9943 - --------------------------------------------- - Once upon a time, a happy little test passed. - - - -- |
- ||||
| test_operators.TestCellGrad2D_Neumann | -1 | -1 | -0 | -0 | -Detail | -
test_order |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt15.1: - uniformTensorMesh: Cell Grad 2D - Neumann - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.48e-01 | - 16 | 3.95e-02 | 3.7462 | 1.9054 - 32 | 1.00e-02 | 3.9364 | 1.9769 - 64 | 2.52e-03 | 3.9841 | 1.9943 - --------------------------------------------- - Happy little convergence test! - - - -- |
- ||||
| test_operators.TestCellGrad3D_Dirichlet | -1 | -1 | -0 | -0 | -Detail | -
test_order |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt16.1: - uniformTensorMesh: Cell Grad 3D - Dirichlet - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.37e-01 | - 16 | 3.88e-02 | 3.5288 | 1.8192 - 32 | 9.99e-03 | 3.8795 | 1.9559 - --------------------------------------------- - The test be workin! - - - -- |
- ||||
| test_operators.TestCellGrad3D_Neumann | -1 | -1 | -0 | -0 | -Detail | -
test_order |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt17.1: - uniformTensorMesh: Cell Grad 3D - Neumann - _____________________________________________ - h | error | e(i-1)/e(i) | order - ~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~~~~|~~~~~~~~~~ - 8 | 1.37e-01 | - 16 | 3.88e-02 | 3.5288 | 1.8192 - 32 | 9.99e-03 | 3.8795 | 1.9559 - --------------------------------------------- - Go Test Go! - - - -- |
- ||||
| test_operators.TestCurl | -1 | -1 | -0 | -0 | -Detail | -
test_order |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt18.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 - --------------------------------------------- - Testing is important. - - - 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 - --------------------------------------------- - And then everyone was happy. - - - 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 - --------------------------------------------- - Once upon a time, a happy little test passed. - - - -- |
- ||||
| test_operators.TestFaceDiv2D | -1 | -1 | -0 | -0 | -Detail | -
test_order |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt19.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 - --------------------------------------------- - Testing is important. - - - 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 - --------------------------------------------- - And then everyone was happy. - - - 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 - --------------------------------------------- - Once upon a time, a happy little test passed. - - - -- |
- ||||
| test_operators.TestFaceDiv3D | -1 | -1 | -0 | -0 | -Detail | -
test_order |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt20.1: - uniformTensorMesh: Face Divergence 3D - _____________________________________________ - 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 - --------------------------------------------- - The test be workin! - - - uniformLOM: Face Divergence 3D - _____________________________________________ - 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 - --------------------------------------------- - And then everyone was happy. - - - rotateLOM: Face Divergence 3D - _____________________________________________ - 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. - - - -- |
- ||||
| test_operators.TestNodalGrad | -1 | -1 | -0 | -0 | -Detail | -
test_order |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt21.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 - --------------------------------------------- - You deserve a pat on the back! - - - 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 get a gold star! - - - 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 - --------------------------------------------- - You deserve a pat on the back! - - - -- |
- ||||
| test_operators.TestNodalGrad2D | -1 | -1 | -0 | -0 | -Detail | -
test_order |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt22.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 - --------------------------------------------- - Not just a pretty face Rowan - - - 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 are awesome. - - - -- |
- ||||
| test_optimizers.TestOptimizers | -4 | -4 | -0 | -0 | -Detail | -
test_GN_Rosenbrock |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt23.1: =========== Gauss Newton =========== - # f |proj(x-g)-x| LS - ----------------------------------- - 0 1.00e+00 2.00e+00 0 - 1 9.53e-01 1.34e+01 2 - 2 4.83e-01 1.19e+00 0 - 3 4.57e-01 1.31e+01 1 - 4 1.89e-01 5.75e-01 0 - 5 1.39e-01 8.15e+00 1 - 6 5.49e-02 5.04e-01 0 - 7 2.91e-02 2.73e+00 1 - 8 9.86e-03 1.37e+00 0 - 9 2.32e-03 1.15e+00 0 - 10 2.38e-04 2.52e-01 0 - 11 4.93e-06 6.73e-02 0 - ------------------------- STOP! ------------------------- - 1 : |fc-fOld| = 2.3305e-04 <= tolF*(1+|f0|) = 2.0000e-01 - 1 : |xc-x_last| = 2.8253e-02 <= tolX*(1+|x0|) = 1.0000e-01 - 1 : |proj(x-g)-x| = 6.7282e-02 <= tolG = 1.0000e-01 - 0 : |proj(x-g)-x| = 6.7282e-02 <= 1e3*eps = 1.0000e-02 - 0 : maxIter = 20 <= iter = 11 - ------------------------- DONE! ------------------------- - xopt: [ 0.99842987 0.99670531] - x_true: [ 1. 1.] - - -- |
- ||||
test_GN_quadratic |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt23.2: =========== Gauss Newton =========== - # f |proj(x-g)-x| LS - ----------------------------------- - 0 0.00e+00 7.07e+00 0 - 1 -2.50e+01 0.00e+00 0 - ------------------------- STOP! ------------------------- - 0 : |fc-fOld| = 2.5000e+01 <= tolF*(1+|f0|) = 1.0000e-01 - 0 : |xc-x_last| = 7.0711e+00 <= tolX*(1+|x0|) = 1.0000e-01 - 1 : |proj(x-g)-x| = 0.0000e+00 <= tolG = 1.0000e-01 - 1 : |proj(x-g)-x| = 0.0000e+00 <= 1e3*eps = 1.0000e-02 - 0 : maxIter = 20 <= iter = 1 - ------------------------- DONE! ------------------------- - xopt: [ 5. 5.] - x_true: [ 5. 5.] - - -- |
- ||||
test_ProjGradient_quadratic1Bound |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt23.3: ========================== Projected Gradient ========================== - # f |proj(x-g)-x| LS itType aSet bSet Comment - ----------------------------------------------------------------------- - 0 0.00e+00 2.24e+00 0 SD 0 0 - 1 -8.50e+00 0.00e+00 0 SD 1 1 - ------------------------- STOP! ------------------------- - 0 : |fc-fOld| = 8.5000e+00 <= tolF*(1+|f0|) = 1.0000e-01 - 0 : |xc-x_last| = 2.2361e+00 <= tolX*(1+|x0|) = 1.0000e-01 - 1 : |proj(x-g)-x| = 0.0000e+00 <= tolG = 1.0000e-01 - 1 : |proj(x-g)-x| = 0.0000e+00 <= 1e3*eps = 1.0000e-02 - 0 : maxIter = 20 <= iter = 1 - 0 : probSize = 2 <= bindingSet = 1 - ------------------------- DONE! ------------------------- - xopt: [ 2. -1.] - x_true: [ 2. -1.] - - -- |
- ||||
test_ProjGradient_quadraticBounded |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt23.4: ========================== Projected Gradient ========================== - # f |proj(x-g)-x| LS itType aSet bSet Comment - ----------------------------------------------------------------------- - 0 0.00e+00 2.83e+00 0 SD 0 0 - 1 -1.60e+01 0.00e+00 0 SD 2 2 - ------------------------- STOP! ------------------------- - 0 : |fc-fOld| = 1.6000e+01 <= tolF*(1+|f0|) = 1.0000e-01 - 0 : |xc-x_last| = 2.8284e+00 <= tolX*(1+|x0|) = 1.0000e-01 - 1 : |proj(x-g)-x| = 0.0000e+00 <= tolG = 1.0000e-01 - 1 : |proj(x-g)-x| = 0.0000e+00 <= 1e3*eps = 1.0000e-02 - 0 : maxIter = 20 <= iter = 1 - 1 : probSize = 2 <= bindingSet = 2 - ------------------------- DONE! ------------------------- - xopt: [ 2. 2.] - x_true: [ 2. 2.] - - -- |
- ||||
| test_Solver.TestSolver | -14 | -14 | -0 | -0 | -Detail | -
test_directDiagonal_1 |
- pass | -||||
test_directDiagonal_M |
- pass | -||||
test_directFactored_1 |
- pass | -||||
test_directFactored_M |
- pass | -||||
test_directLower_1_fortran |
- pass | -||||
test_directLower_1_python |
- pass | -||||
test_directLower_M_fortran |
- pass | -||||
test_directLower_M_python |
- pass | -||||
test_directSpsolve_1 |
- pass | -||||
test_directSpsolve_M |
- pass | -||||
test_directUpper_1_fortran |
- pass | -||||
test_directUpper_1_python |
- pass | -||||
test_directUpper_M_fortran |
- pass | -||||
test_directUpper_M_python |
- pass | -||||
| test_tensorMesh.BasicTensorMeshTests | -7 | -7 | -0 | -0 | -Detail | -
test_area_3D |
- pass | -||||
test_edge_2D |
- pass | -||||
test_edge_3D |
- pass | -||||
test_vectorCC_2D |
- pass | -||||
test_vectorN_2D |
- pass | -||||
test_vol_2D |
- pass | -||||
test_vol_3D |
- pass | -||||
| test_tensorMesh.TestPoissonEqn | -2 | -2 | -0 | -0 | -Detail | -
test_orderBackward |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt26.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 - --------------------------------------------- - You deserve a pat on the back! - - - -- |
- ||||
test_orderForward |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt26.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 - --------------------------------------------- - Awesome, Rowan, just awesome. - - - -- |
- ||||
| test_utils.TestCheckDerivative | -3 | -3 | -0 | -0 | -Detail | -
test_simpleFail |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt27.1: ==================== checkDerivative ==================== - iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order - --------------------------------------------------------- - 0 1.00e-01 1.623e-01 3.292e-01 nan - 1 1.00e-02 1.665e-02 3.335e-02 0.994 - 2 1.00e-03 1.669e-03 3.338e-03 1.000 - 3 1.00e-04 1.669e-04 3.339e-04 1.000 - 4 1.00e-05 1.669e-05 3.339e-05 1.000 - 5 1.00e-06 1.669e-06 3.339e-06 1.000 - 6 1.00e-07 1.669e-07 3.339e-07 1.000 - ********************************************************* - <<<<<<<<<<<<<<<<<<<<<<<<< FAIL! >>>>>>>>>>>>>>>>>>>>>>>>> - ********************************************************* - You had so much promise Rowan, oh well... - - - -- |
- ||||
test_simpleFunction |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt27.2: ==================== checkDerivative ==================== - iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order - --------------------------------------------------------- - 0 1.00e-01 1.738e-01 2.373e-02 nan - 1 1.00e-02 1.802e-02 2.362e-04 2.002 - 2 1.00e-03 1.809e-03 2.360e-06 2.000 - 3 1.00e-04 1.810e-04 2.360e-08 2.000 - 4 1.00e-05 1.810e-05 2.360e-10 2.000 - 5 1.00e-06 1.810e-06 2.360e-12 2.000 - 6 1.00e-07 1.810e-07 2.359e-14 2.000 - ========================= PASS! ========================= - The test be workin! - - - -- |
- ||||
test_simplePass |
-
-
-
-
- pass
-
-
-
-
-
-
-
- [x]
-
- - - pt27.3: ==================== checkDerivative ==================== - iter h |J0-Jt| |J0+h*dJ'*dx-Jt| Order - --------------------------------------------------------- - 0 1.00e-01 1.209e-01 1.275e-02 nan - 1 1.00e-02 1.222e-02 1.274e-04 2.000 - 2 1.00e-03 1.224e-03 1.273e-06 2.000 - 3 1.00e-04 1.224e-04 1.273e-08 2.000 - 4 1.00e-05 1.224e-05 1.273e-10 2.000 - 5 1.00e-06 1.224e-06 1.273e-12 2.000 - 6 1.00e-07 1.224e-07 1.271e-14 2.001 - ========================= PASS! ========================= - You deserve a pat on the back! - - - -- |
- ||||
| test_utils.TestSequenceFunctions | -8 | -8 | -0 | -0 | -Detail | -
test_indexCube_2D |
- pass | -||||
test_indexCube_3D |
- pass | -||||
test_invXXXBlockDiagonal |
- pass | -||||
test_mkvc1 |
- pass | -||||
test_mkvc2 |
- pass | -||||
test_mkvc3 |
- pass | -||||
test_ndgrid_2D |
- pass | -||||
test_ndgrid_3D |
- pass | -||||
| Total | -124 | -124 | -0 | -0 | -- |