diff --git a/test/porousmediumflow/1p/implicit/1pniconvectionproblem.hh b/test/porousmediumflow/1p/implicit/1pniconvectionproblem.hh index af9064770c4c1d0a2f14e81ac35fc7ec1d1c700b..0ca5a8cc0ce4962fb7156bb5dac96c456841c590 100644 --- a/test/porousmediumflow/1p/implicit/1pniconvectionproblem.hh +++ b/test/porousmediumflow/1p/implicit/1pniconvectionproblem.hh @@ -55,7 +55,7 @@ NEW_TYPE_TAG(OnePNIConvectionCCTpfaTypeTag, INHERITS_FROM(CCTpfaModel, OnePNICon NEW_TYPE_TAG(OnePNIConvectionCCMpfaTypeTag, INHERITS_FROM(CCMpfaModel, OnePNIConvectionTypeTag)); // Set the grid type -SET_TYPE_PROP(OnePNIConvectionTypeTag, Grid, Dune::YaspGrid<2>); +SET_TYPE_PROP(OnePNIConvectionTypeTag, Grid, Dune::YaspGrid<1>); // Set the problem property SET_TYPE_PROP(OnePNIConvectionTypeTag, Problem, OnePNIConvectionProblem<TypeTag>); diff --git a/test/porousmediumflow/1p/implicit/CMakeLists.txt b/test/porousmediumflow/1p/implicit/CMakeLists.txt index 61f36568ffde0ab2d4be19a3090789a1ea388512..d021037df340eede379d9c43e0ec25fb9212f3da 100644 --- a/test/porousmediumflow/1p/implicit/CMakeLists.txt +++ b/test/porousmediumflow/1p/implicit/CMakeLists.txt @@ -58,8 +58,8 @@ dune_add_test(NAME test_1pnibox_convection COMPILE_DEFINITIONS TYPETAG=OnePNIConvectionBoxTypeTag COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMD_ARGS --script fuzzy - --files ${CMAKE_SOURCE_DIR}/test/references/1pniboxconvection-reference.vtu - ${CMAKE_CURRENT_BINARY_DIR}/1pnibox_convection-00009.vtu + --files ${CMAKE_SOURCE_DIR}/test/references/1pniboxconvection-reference.vtp + ${CMAKE_CURRENT_BINARY_DIR}/1pnibox_convection-00009.vtp --command "${CMAKE_CURRENT_BINARY_DIR}/test_1pnibox_convection test_1pnifv_convection.input -Problem.Name 1pnibox_convection" --zeroThreshold {"velocity":1e-15}) @@ -78,8 +78,8 @@ dune_add_test(NAME test_1pnicctpfa_convection COMPILE_DEFINITIONS TYPETAG=OnePNIConvectionCCTpfaTypeTag COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMD_ARGS --script fuzzy - --files ${CMAKE_SOURCE_DIR}/test/references/1pniccconvection-reference.vtu - ${CMAKE_CURRENT_BINARY_DIR}/1pnicctpfa_convection-00009.vtu + --files ${CMAKE_SOURCE_DIR}/test/references/1pniccconvection-reference.vtp + ${CMAKE_CURRENT_BINARY_DIR}/1pnicctpfa_convection-00009.vtp --command "${CMAKE_CURRENT_BINARY_DIR}/test_1pnicctpfa_convection test_1pnifv_convection.input -Problem.Name 1pnicctpfa_convection") dune_add_test(NAME test_1pniccmpfa_conduction @@ -91,15 +91,6 @@ dune_add_test(NAME test_1pniccmpfa_conduction ${CMAKE_CURRENT_BINARY_DIR}/1pniccmpfa_conduction-00005.vtu --command "${CMAKE_CURRENT_BINARY_DIR}/test_1pniccmpfa_conduction test_1pnifv_conduction.input -Problem.Name 1pniccmpfa_conduction") -dune_add_test(NAME test_1pniccmpfa_convection - SOURCES test_1pnifv.cc - COMPILE_DEFINITIONS TYPETAG=OnePNIConvectionCCMpfaTypeTag - COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py - CMD_ARGS --script fuzzy - --files ${CMAKE_SOURCE_DIR}/test/references/ccmpfa1pniconvection-reference.vtu - ${CMAKE_CURRENT_BINARY_DIR}/1pniccmpfa_convection-00009.vtu - --command "${CMAKE_CURRENT_BINARY_DIR}/test_1pniccmpfa_convection test_1pnifv_convection.input -Problem.Name 1pniccmpfa_convection") - # dim < dimWorld tests with Dune::Foamgrid<1,3> dune_add_test(NAME test_1pcctpfa_network1d3d SOURCES test_1pfv_network1d3d.cc diff --git a/test/porousmediumflow/1p/implicit/test_1pnifv.cc b/test/porousmediumflow/1p/implicit/test_1pnifv.cc index 41b729e46e813a5d50c4830e733f1dfa5d81844b..5ca82d837bbef3385eef014b6e47b2fd8ab708fc 100644 --- a/test/porousmediumflow/1p/implicit/test_1pnifv.cc +++ b/test/porousmediumflow/1p/implicit/test_1pnifv.cc @@ -116,6 +116,12 @@ int main(int argc, char** argv) try const std::string paramGroup = FVGridGeometry::discMethod == DiscretizationMethod::ccmpfa ? "MpfaTest" : ""; auto problem = std::make_shared<Problem>(fvGridGeometry, paramGroup); + // get some time loop parameters + using Scalar = typename GET_PROP_TYPE(TypeTag, Scalar); + const auto tEnd = getParam<Scalar>("TimeLoop.TEnd"); + const auto maxDt = getParam<Scalar>("TimeLoop.MaxTimeStepSize"); + auto dt = getParam<Scalar>("TimeLoop.DtInitial"); + // the solution vector using SolutionVector = typename GET_PROP_TYPE(TypeTag, SolutionVector); SolutionVector x(fvGridGeometry->numDofs()); @@ -127,17 +133,6 @@ int main(int argc, char** argv) try auto gridVariables = std::make_shared<GridVariables>(problem, fvGridGeometry); gridVariables->init(x, xOld); - // get some time loop parameters - using Scalar = typename GET_PROP_TYPE(TypeTag, Scalar); - const auto tEnd = getParam<Scalar>("TimeLoop.TEnd"); - const auto maxDt = getParam<Scalar>("TimeLoop.MaxTimeStepSize"); - auto dt = getParam<Scalar>("TimeLoop.DtInitial"); - - // check if we are about to restart a previously interrupted simulation - Scalar restartTime = 0; - if (Parameters::getTree().hasKey("Restart") || Parameters::getTree().hasKey("TimeLoop.Restart")) - restartTime = getParam<Scalar>("TimeLoop.Restart"); - // intialize the vtk output module using VtkOutputFields = typename GET_PROP_TYPE(TypeTag, VtkOutputFields); VtkOutputModule<GridVariables, SolutionVector> vtkWriter(*gridVariables, x, problem->name()); @@ -151,7 +146,7 @@ int main(int argc, char** argv) try const int vtkOutputInterval = getParam<int>("Problem.OutputInterval"); // instantiate time loop - auto timeLoop = std::make_shared<TimeLoop<Scalar>>(restartTime, dt, tEnd); + auto timeLoop = std::make_shared<TimeLoop<Scalar>>(0.0, dt, tEnd); timeLoop->setMaxTimeStepSize(maxDt); // the assembler with time loop for instationary problem diff --git a/test/porousmediumflow/1p/implicit/test_1pnifv_convection.input b/test/porousmediumflow/1p/implicit/test_1pnifv_convection.input index 1bab248e671fa7bec7d00c97fa21ee9eed5c4fd8..973b86a0eff8909769685676d00ffd8081b8e428 100644 --- a/test/porousmediumflow/1p/implicit/test_1pnifv_convection.input +++ b/test/porousmediumflow/1p/implicit/test_1pnifv_convection.input @@ -4,12 +4,12 @@ TEnd = 3e4 # [s] MaxTimeStepSize = 1e3 [Grid] -LowerLeft = 0 0 -UpperRight = 20 1 -Cells = 80 1 +LowerLeft = 0 +UpperRight = 20 +Cells = 80 [Problem] -Name = 1pnifv_conduction # name passed to the output routines +Name = 1pnifv_convection # name passed to the output routines OutputInterval = 5 # every 5th timestep an output file is written DarcyVelocity = 1e-4 # [m/s] inflow at the left boundary EnableGravity = false # Disable gravity @@ -22,5 +22,5 @@ AddVelocity = false # enable velocity output [Component] SolidDensity = 2700 -solidThermalConductivity = 2.8 -solidHeatCapacity = 790 +SolidThermalConductivity = 2.8 +SolidHeatCapacity = 790 diff --git a/test/references/1pniboxconvection-reference.vtp b/test/references/1pniboxconvection-reference.vtp new file mode 100644 index 0000000000000000000000000000000000000000..ec90366ab433e79e8b9d6ac3470d68a20732f765 --- /dev/null +++ b/test/references/1pniboxconvection-reference.vtp @@ -0,0 +1,108 @@ +<?xml version="1.0"?> +<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian"> + <PolyData> + <Piece NumberOfLines="80" NumberOfPoints="81"> + <PointData Scalars="p"> + <DataArray type="Float32" Name="p" NumberOfComponents="1" format="ascii"> + 121558 121294 121030 120765 120501 120237 119973 119709 119444 119180 118916 118651 + 118386 118121 117855 117589 117322 117055 116787 116519 116250 115981 115712 115442 + 115172 114902 114631 114360 114090 113819 113548 113277 113006 112735 112464 112193 + 111922 111652 111381 111110 110839 110568 110297 110026 109755 109484 109213 108942 + 108671 108400 108129 107858 107587 107316 107045 106774 106503 106232 105961 105690 + 105419 105148 104877 104606 104335 104065 103794 103523 103252 102981 102710 102439 + 102168 101897 101626 101355 101084 100813 100542 100271 100000 + </DataArray> + <DataArray type="Float32" Name="T" NumberOfComponents="1" format="ascii"> + 291 291 291 291 290.999 290.998 290.994 290.987 290.975 290.955 290.926 290.886 + 290.835 290.774 290.705 290.63 290.551 290.473 290.398 290.328 290.266 290.211 290.164 290.126 + 290.095 290.07 290.051 290.037 290.027 290.019 290.013 290.009 290.007 290.005 290.003 290.003 + 290.002 290.002 290.002 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 + 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 + 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 + 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290 + </DataArray> + <DataArray type="Float32" Name="temperatureExact" NumberOfComponents="1" format="ascii"> + 291 291 291 291 291 291 291 291 291 291 291 291 + 291 291 291 291 291 290 290 290 290 290 290 290 + 290 290 290 290 290 290 290 290 290 290 290 290 + 290 290 290 290 290 290 290 290 290 290 290 290 + 290 290 290 290 290 290 290 290 290 290 290 290 + 290 290 290 290 290 290 290 290 290 290 290 290 + 290 290 290 290 290 290 290 290 290 + </DataArray> + </PointData> + <CellData Scalars="velocity_H2O (m/s)"> + <DataArray type="Float32" Name="velocity_H2O (m/s)" NumberOfComponents="1" format="ascii"> + 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 9.99999e-05 9.99998e-05 9.99995e-05 9.99992e-05 + 9.99988e-05 9.99984e-05 9.99978e-05 9.99973e-05 9.99967e-05 9.99961e-05 9.99955e-05 9.9995e-05 9.99945e-05 9.99941e-05 9.99938e-05 9.99935e-05 + 9.99933e-05 9.99931e-05 9.9993e-05 9.99929e-05 9.99928e-05 9.99928e-05 9.99928e-05 9.99927e-05 9.99927e-05 9.99927e-05 9.99927e-05 9.99928e-05 + 9.99928e-05 9.99928e-05 9.99928e-05 9.99928e-05 9.99928e-05 9.99928e-05 9.99928e-05 9.99928e-05 9.99929e-05 9.99929e-05 9.99929e-05 9.99929e-05 + 9.99929e-05 9.99929e-05 9.99929e-05 9.99929e-05 9.9993e-05 9.9993e-05 9.9993e-05 9.9993e-05 9.9993e-05 9.9993e-05 9.9993e-05 9.9993e-05 + 9.99931e-05 9.99931e-05 9.99931e-05 9.99931e-05 9.99931e-05 9.99931e-05 9.99931e-05 9.99932e-05 9.99932e-05 9.99932e-05 9.99932e-05 9.99932e-05 + 9.99932e-05 9.99932e-05 9.99933e-05 9.99933e-05 9.99933e-05 9.99933e-05 9.99933e-05 9.99933e-05 + </DataArray> + <DataArray type="Float32" Name="process rank" NumberOfComponents="1" format="ascii"> + 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + </DataArray> + </CellData> + <Points> + <DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii"> + 0 0 0 0.25 0 0 0.5 0 0 0.75 0 0 + 1 0 0 1.25 0 0 1.5 0 0 1.75 0 0 + 2 0 0 2.25 0 0 2.5 0 0 2.75 0 0 + 3 0 0 3.25 0 0 3.5 0 0 3.75 0 0 + 4 0 0 4.25 0 0 4.5 0 0 4.75 0 0 + 5 0 0 5.25 0 0 5.5 0 0 5.75 0 0 + 6 0 0 6.25 0 0 6.5 0 0 6.75 0 0 + 7 0 0 7.25 0 0 7.5 0 0 7.75 0 0 + 8 0 0 8.25 0 0 8.5 0 0 8.75 0 0 + 9 0 0 9.25 0 0 9.5 0 0 9.75 0 0 + 10 0 0 10.25 0 0 10.5 0 0 10.75 0 0 + 11 0 0 11.25 0 0 11.5 0 0 11.75 0 0 + 12 0 0 12.25 0 0 12.5 0 0 12.75 0 0 + 13 0 0 13.25 0 0 13.5 0 0 13.75 0 0 + 14 0 0 14.25 0 0 14.5 0 0 14.75 0 0 + 15 0 0 15.25 0 0 15.5 0 0 15.75 0 0 + 16 0 0 16.25 0 0 16.5 0 0 16.75 0 0 + 17 0 0 17.25 0 0 17.5 0 0 17.75 0 0 + 18 0 0 18.25 0 0 18.5 0 0 18.75 0 0 + 19 0 0 19.25 0 0 19.5 0 0 19.75 0 0 + 20 0 0 + </DataArray> + </Points> + <Lines> + <DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii"> + 0 1 1 2 2 3 3 4 4 5 5 6 + 6 7 7 8 8 9 9 10 10 11 11 12 + 12 13 13 14 14 15 15 16 16 17 17 18 + 18 19 19 20 20 21 21 22 22 23 23 24 + 24 25 25 26 26 27 27 28 28 29 29 30 + 30 31 31 32 32 33 33 34 34 35 35 36 + 36 37 37 38 38 39 39 40 40 41 41 42 + 42 43 43 44 44 45 45 46 46 47 47 48 + 48 49 49 50 50 51 51 52 52 53 53 54 + 54 55 55 56 56 57 57 58 58 59 59 60 + 60 61 61 62 62 63 63 64 64 65 65 66 + 66 67 67 68 68 69 69 70 70 71 71 72 + 72 73 73 74 74 75 75 76 76 77 77 78 + 78 79 79 80 + </DataArray> + <DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii"> + 2 4 6 8 10 12 14 16 18 20 22 24 + 26 28 30 32 34 36 38 40 42 44 46 48 + 50 52 54 56 58 60 62 64 66 68 70 72 + 74 76 78 80 82 84 86 88 90 92 94 96 + 98 100 102 104 106 108 110 112 114 116 118 120 + 122 124 126 128 130 132 134 136 138 140 142 144 + 146 148 150 152 154 156 158 160 + </DataArray> + </Lines> + </Piece> + </PolyData> +</VTKFile> diff --git a/test/references/1pniboxconvection-reference.vtu b/test/references/1pniboxconvection-reference.vtu deleted file mode 100644 index 5c0e668a8178b235721846ba2f466c9d369f2b34..0000000000000000000000000000000000000000 --- a/test/references/1pniboxconvection-reference.vtu +++ /dev/null @@ -1,205 +0,0 @@ -<?xml version="1.0"?> -<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian"> - <UnstructuredGrid> - <Piece NumberOfCells="80" NumberOfPoints="162"> - <PointData Scalars="p" Vectors="velocity"> - <DataArray type="Float32" Name="p" NumberOfComponents="1" format="ascii"> - 121561 121297 121561 121297 121033 121033 120769 120769 120505 120505 120241 120241 - 119976 119976 119712 119712 119448 119448 119184 119184 118920 118920 118656 118656 - 118392 118392 118127 118127 117862 117862 117596 117596 117329 117329 117062 117062 - 116794 116794 116525 116525 116255 116255 115985 115985 115715 115715 115444 115444 - 115174 115174 114903 114903 114632 114632 114361 114361 114090 114090 113819 113819 - 113548 113548 113277 113277 113006 113006 112735 112735 112464 112464 112193 112193 - 111923 111923 111652 111652 111381 111381 111110 111110 110839 110839 110568 110568 - 110297 110297 110026 110026 109755 109755 109484 109484 109213 109213 108942 108942 - 108671 108671 108400 108400 108129 108129 107858 107858 107587 107587 107316 107316 - 107045 107045 106774 106774 106503 106503 106232 106232 105961 105961 105690 105690 - 105419 105419 105148 105148 104877 104877 104606 104606 104335 104335 104065 104065 - 103794 103794 103523 103523 103252 103252 102981 102981 102710 102710 102439 102439 - 102168 102168 101897 101897 101626 101626 101355 101355 101084 101084 100813 100813 - 100542 100542 100271 100271 100000 100000 - </DataArray> - <DataArray type="Float32" Name="velocity" NumberOfComponents="3" format="ascii"> - 0.0001 -2.06574e-18 0 0.0001 0 0 0.0001 -2.06574e-18 0 0.0001 0 0 - 0.0001 1.37713e-18 0 0.0001 1.37713e-18 0 0.0001 8.60723e-19 0 0.0001 8.60723e-19 0 - 0.0001 -1.72152e-19 0 0.0001 -1.72152e-19 0 0.0001 0 0 0.0001 0 0 - 0.0001 1.37708e-18 0 0.0001 1.37708e-18 0 0.0001 -1.54913e-18 0 0.0001 -1.54913e-18 0 - 0.0001 1.72143e-19 0 0.0001 1.72143e-19 0 0.0001 0 0 0.0001 0 0 - 0.0001 2.58334e-18 0 0.0001 2.58334e-18 0 0.0001 1.72193e-19 0 0.0001 1.72193e-19 0 - 9.99999e-05 1.03227e-18 0 9.99999e-05 1.03227e-18 0 9.99994e-05 0 0 9.99994e-05 0 0 - 9.99986e-05 1.7133e-19 0 9.99986e-05 1.7133e-19 0 9.99978e-05 1.70818e-19 0 9.99978e-05 1.70818e-19 0 - 9.99968e-05 -1.19189e-18 0 9.99968e-05 -1.19189e-18 0 9.99959e-05 1.18817e-18 0 9.99959e-05 1.18817e-18 0 - 9.99951e-05 -1.18483e-18 0 9.99951e-05 -1.18483e-18 0 9.99944e-05 1.51976e-18 0 9.99944e-05 1.51976e-18 0 - 9.99938e-05 1.17983e-18 0 9.99938e-05 1.17983e-18 0 9.99934e-05 -3.36618e-19 0 9.99934e-05 -3.36618e-19 0 - 9.99932e-05 3.36276e-19 0 9.99932e-05 3.36276e-19 0 9.9993e-05 3.3604e-19 0 9.9993e-05 3.3604e-19 0 - 9.99928e-05 3.19088e-18 0 9.99928e-05 3.19088e-18 0 9.99928e-05 -5.03671e-19 0 9.99928e-05 -5.03671e-19 0 - 9.99927e-05 -1.17501e-18 0 9.99927e-05 -1.17501e-18 0 9.99927e-05 -1.00704e-18 0 9.99927e-05 -1.00704e-18 0 - 9.99927e-05 0 0 9.99927e-05 0 0 9.99927e-05 -6.71286e-19 0 9.99927e-05 -6.71286e-19 0 - 9.99927e-05 8.39089e-19 0 9.99927e-05 8.39089e-19 0 9.99927e-05 -1.67816e-19 0 9.99927e-05 -1.67816e-19 0 - 9.99927e-05 -1.1747e-18 0 9.99927e-05 -1.1747e-18 0 9.99927e-05 5.03442e-19 0 9.99927e-05 5.03442e-19 0 - 9.99927e-05 -6.71254e-19 0 9.99927e-05 -6.71254e-19 0 9.99928e-05 1.84595e-18 0 9.99928e-05 1.84595e-18 0 - 9.99928e-05 -1.67813e-19 0 9.99928e-05 -1.67813e-19 0 9.99928e-05 -1.67813e-19 0 9.99928e-05 -1.67813e-19 0 - 9.99928e-05 -1.51032e-18 0 9.99928e-05 -1.51032e-18 0 9.99928e-05 -2.5172e-18 0 9.99928e-05 -2.5172e-18 0 - 9.99928e-05 3.35626e-19 0 9.99928e-05 3.35626e-19 0 9.99928e-05 1.3425e-18 0 9.99928e-05 1.3425e-18 0 - 9.99928e-05 -1.17469e-18 0 9.99928e-05 -1.17469e-18 0 9.99929e-05 1.67813e-19 0 9.99929e-05 1.67813e-19 0 - 9.99929e-05 3.35626e-19 0 9.99929e-05 3.35626e-19 0 9.99929e-05 3.02063e-18 0 9.99929e-05 3.02063e-18 0 - 9.99929e-05 -1.67813e-19 0 9.99929e-05 -1.67813e-19 0 9.99929e-05 -1.84594e-18 0 9.99929e-05 -1.84594e-18 0 - 9.99929e-05 2.51719e-18 0 9.99929e-05 2.51719e-18 0 9.99929e-05 1.67813e-19 0 9.99929e-05 1.67813e-19 0 - 9.99929e-05 3.35626e-19 0 9.99929e-05 3.35626e-19 0 9.9993e-05 0 0 9.9993e-05 0 0 - 9.9993e-05 3.02063e-18 0 9.9993e-05 3.02063e-18 0 9.9993e-05 3.35626e-19 0 9.9993e-05 3.35626e-19 0 - 9.9993e-05 -3.35625e-19 0 9.9993e-05 -3.35625e-19 0 9.9993e-05 -2.85282e-18 0 9.9993e-05 -2.85282e-18 0 - 9.9993e-05 1.67813e-18 0 9.9993e-05 1.67813e-18 0 9.9993e-05 0 0 9.9993e-05 0 0 - 9.9993e-05 2.51719e-18 0 9.9993e-05 2.51719e-18 0 9.99931e-05 -8.39063e-19 0 9.99931e-05 -8.39063e-19 0 - 9.99931e-05 0 0 9.99931e-05 0 0 9.99931e-05 5.03438e-19 0 9.99931e-05 5.03438e-19 0 - 9.99931e-05 -1.51031e-18 0 9.99931e-05 -1.51031e-18 0 9.99931e-05 5.03438e-19 0 9.99931e-05 5.03438e-19 0 - 9.99931e-05 1.67812e-18 0 9.99931e-05 1.67812e-18 0 9.99931e-05 1.67813e-19 0 9.99931e-05 1.67813e-19 0 - 9.99932e-05 -6.71248e-19 0 9.99932e-05 -6.71248e-19 0 9.99932e-05 3.35626e-19 0 9.99932e-05 3.35626e-19 0 - 9.99932e-05 -1.67812e-19 0 9.99932e-05 -1.67812e-19 0 9.99932e-05 -1.67813e-19 0 9.99932e-05 -1.67813e-19 0 - 9.99932e-05 -1.17468e-18 0 9.99932e-05 -1.17468e-18 0 9.99932e-05 5.0344e-19 0 9.99932e-05 5.0344e-19 0 - 9.99932e-05 0 0 9.99932e-05 0 0 9.99932e-05 0 0 9.99932e-05 0 0 - 9.99933e-05 -1.00686e-18 0 9.99933e-05 -1.00686e-18 0 9.99933e-05 -3.35629e-19 0 9.99933e-05 -3.35629e-19 0 - 9.99933e-05 -1.51029e-18 0 9.99933e-05 -1.51029e-18 0 9.99933e-05 1.17471e-18 0 9.99933e-05 1.17471e-18 0 - 9.99933e-05 -1.67809e-18 0 9.99933e-05 -1.67809e-18 0 9.99933e-05 -1.34253e-18 0 9.99933e-05 -1.34253e-18 0 - 9.99933e-05 0 0 9.99933e-05 0 0 - </DataArray> - <DataArray type="Float32" Name="T" NumberOfComponents="1" format="ascii"> - 291 291 291 291 290.999 290.999 291 291 291.002 291.002 291.001 291.001 - 290.998 290.998 290.996 290.996 291 291 291.01 291.01 291.018 291.018 291.011 291.011 - 290.977 290.977 290.91 290.91 290.813 290.813 290.695 290.695 290.569 290.569 290.446 290.446 - 290.336 290.336 290.244 290.244 290.171 290.171 290.116 290.116 290.076 290.076 290.049 290.049 - 290.031 290.031 290.019 290.019 290.012 290.012 290.007 290.007 290.005 290.005 290.003 290.003 - 290.002 290.002 290.002 290.002 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.001 290.001 290.001 290.002 290.002 290 290 290.002 290.002 - 290 290 290.002 290.002 290 290 - </DataArray> - <DataArray type="Float32" Name="temperatureExact" NumberOfComponents="1" format="ascii"> - 291 291 291 291 291 291 291 291 291 291 291 291 - 291 291 291 291 291 291 291 291 291 291 291 291 - 291 291 291 291 291 291 291 291 291 291 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 - </DataArray> - </PointData> - <CellData Scalars="process rank"> - <DataArray type="Float32" Name="process rank" NumberOfComponents="1" format="ascii"> - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 - </DataArray> - </CellData> - <Points> - <DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii"> - 0 0 0 0.25 0 0 0 1 0 0.25 1 0 - 0.5 0 0 0.5 1 0 0.75 0 0 0.75 1 0 - 1 0 0 1 1 0 1.25 0 0 1.25 1 0 - 1.5 0 0 1.5 1 0 1.75 0 0 1.75 1 0 - 2 0 0 2 1 0 2.25 0 0 2.25 1 0 - 2.5 0 0 2.5 1 0 2.75 0 0 2.75 1 0 - 3 0 0 3 1 0 3.25 0 0 3.25 1 0 - 3.5 0 0 3.5 1 0 3.75 0 0 3.75 1 0 - 4 0 0 4 1 0 4.25 0 0 4.25 1 0 - 4.5 0 0 4.5 1 0 4.75 0 0 4.75 1 0 - 5 0 0 5 1 0 5.25 0 0 5.25 1 0 - 5.5 0 0 5.5 1 0 5.75 0 0 5.75 1 0 - 6 0 0 6 1 0 6.25 0 0 6.25 1 0 - 6.5 0 0 6.5 1 0 6.75 0 0 6.75 1 0 - 7 0 0 7 1 0 7.25 0 0 7.25 1 0 - 7.5 0 0 7.5 1 0 7.75 0 0 7.75 1 0 - 8 0 0 8 1 0 8.25 0 0 8.25 1 0 - 8.5 0 0 8.5 1 0 8.75 0 0 8.75 1 0 - 9 0 0 9 1 0 9.25 0 0 9.25 1 0 - 9.5 0 0 9.5 1 0 9.75 0 0 9.75 1 0 - 10 0 0 10 1 0 10.25 0 0 10.25 1 0 - 10.5 0 0 10.5 1 0 10.75 0 0 10.75 1 0 - 11 0 0 11 1 0 11.25 0 0 11.25 1 0 - 11.5 0 0 11.5 1 0 11.75 0 0 11.75 1 0 - 12 0 0 12 1 0 12.25 0 0 12.25 1 0 - 12.5 0 0 12.5 1 0 12.75 0 0 12.75 1 0 - 13 0 0 13 1 0 13.25 0 0 13.25 1 0 - 13.5 0 0 13.5 1 0 13.75 0 0 13.75 1 0 - 14 0 0 14 1 0 14.25 0 0 14.25 1 0 - 14.5 0 0 14.5 1 0 14.75 0 0 14.75 1 0 - 15 0 0 15 1 0 15.25 0 0 15.25 1 0 - 15.5 0 0 15.5 1 0 15.75 0 0 15.75 1 0 - 16 0 0 16 1 0 16.25 0 0 16.25 1 0 - 16.5 0 0 16.5 1 0 16.75 0 0 16.75 1 0 - 17 0 0 17 1 0 17.25 0 0 17.25 1 0 - 17.5 0 0 17.5 1 0 17.75 0 0 17.75 1 0 - 18 0 0 18 1 0 18.25 0 0 18.25 1 0 - 18.5 0 0 18.5 1 0 18.75 0 0 18.75 1 0 - 19 0 0 19 1 0 19.25 0 0 19.25 1 0 - 19.5 0 0 19.5 1 0 19.75 0 0 19.75 1 0 - 20 0 0 20 1 0 - </DataArray> - </Points> - <Cells> - <DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii"> - 0 1 3 2 1 4 5 3 4 6 7 5 - 6 8 9 7 8 10 11 9 10 12 13 11 - 12 14 15 13 14 16 17 15 16 18 19 17 - 18 20 21 19 20 22 23 21 22 24 25 23 - 24 26 27 25 26 28 29 27 28 30 31 29 - 30 32 33 31 32 34 35 33 34 36 37 35 - 36 38 39 37 38 40 41 39 40 42 43 41 - 42 44 45 43 44 46 47 45 46 48 49 47 - 48 50 51 49 50 52 53 51 52 54 55 53 - 54 56 57 55 56 58 59 57 58 60 61 59 - 60 62 63 61 62 64 65 63 64 66 67 65 - 66 68 69 67 68 70 71 69 70 72 73 71 - 72 74 75 73 74 76 77 75 76 78 79 77 - 78 80 81 79 80 82 83 81 82 84 85 83 - 84 86 87 85 86 88 89 87 88 90 91 89 - 90 92 93 91 92 94 95 93 94 96 97 95 - 96 98 99 97 98 100 101 99 100 102 103 101 - 102 104 105 103 104 106 107 105 106 108 109 107 - 108 110 111 109 110 112 113 111 112 114 115 113 - 114 116 117 115 116 118 119 117 118 120 121 119 - 120 122 123 121 122 124 125 123 124 126 127 125 - 126 128 129 127 128 130 131 129 130 132 133 131 - 132 134 135 133 134 136 137 135 136 138 139 137 - 138 140 141 139 140 142 143 141 142 144 145 143 - 144 146 147 145 146 148 149 147 148 150 151 149 - 150 152 153 151 152 154 155 153 154 156 157 155 - 156 158 159 157 158 160 161 159 - </DataArray> - <DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii"> - 4 8 12 16 20 24 28 32 36 40 44 48 - 52 56 60 64 68 72 76 80 84 88 92 96 - 100 104 108 112 116 120 124 128 132 136 140 144 - 148 152 156 160 164 168 172 176 180 184 188 192 - 196 200 204 208 212 216 220 224 228 232 236 240 - 244 248 252 256 260 264 268 272 276 280 284 288 - 292 296 300 304 308 312 316 320 - </DataArray> - <DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii"> - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 - </DataArray> - </Cells> - </Piece> - </UnstructuredGrid> -</VTKFile> diff --git a/test/references/1pniccconvection-reference.vtp b/test/references/1pniccconvection-reference.vtp new file mode 100644 index 0000000000000000000000000000000000000000..8dd5c5f224b9148fbbda7b5b280f696b3c27762f --- /dev/null +++ b/test/references/1pniccconvection-reference.vtp @@ -0,0 +1,106 @@ +<?xml version="1.0"?> +<VTKFile type="PolyData" version="0.1" byte_order="LittleEndian"> + <PolyData> + <Piece NumberOfLines="80" NumberOfPoints="81"> + <CellData Scalars="p"> + <DataArray type="Float32" Name="p" NumberOfComponents="1" format="ascii"> + 121426 121162 120897 120633 120369 120105 119841 119576 119312 119048 118783 118518 + 118253 117988 117722 117456 117189 116921 116653 116385 116116 115846 115577 115307 + 115037 114766 114496 114225 113954 113683 113413 113142 112871 112600 112329 112058 + 111787 111516 111245 110974 110703 110432 110161 109890 109619 109348 109077 108806 + 108535 108264 107994 107723 107452 107181 106910 106639 106368 106097 105826 105555 + 105284 105013 104742 104471 104200 103929 103658 103387 103116 102845 102574 102303 + 102032 101761 101490 101219 100948 100677 100406 100135 + </DataArray> + <DataArray type="Float32" Name="T" NumberOfComponents="1" format="ascii"> + 291 291 291 291 290.999 290.996 290.991 290.981 290.965 290.94 290.906 290.861 + 290.805 290.74 290.667 290.59 290.512 290.436 290.363 290.297 290.238 290.188 290.145 290.11 + 290.083 290.061 290.044 290.032 290.023 290.016 290.011 290.008 290.006 290.004 290.003 290.002 + 290.002 290.002 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 + 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 + 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 + 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 + </DataArray> + <DataArray type="Float32" Name="velocity_H2O (m/s)" NumberOfComponents="1" format="ascii"> + 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 0.0001 9.99999e-05 9.99997e-05 9.99995e-05 9.99992e-05 + 9.99988e-05 9.99983e-05 9.99978e-05 9.99972e-05 9.99967e-05 9.99961e-05 9.99955e-05 9.9995e-05 9.99945e-05 9.99941e-05 9.99938e-05 9.99935e-05 + 9.99933e-05 9.99931e-05 9.9993e-05 9.99929e-05 9.99928e-05 9.99928e-05 9.99928e-05 9.99927e-05 9.99927e-05 9.99927e-05 9.99927e-05 9.99927e-05 + 9.99927e-05 9.99928e-05 9.99928e-05 9.99928e-05 9.99928e-05 9.99928e-05 9.99928e-05 9.99928e-05 9.99928e-05 9.99929e-05 9.99929e-05 9.99929e-05 + 9.99929e-05 9.99929e-05 9.99929e-05 9.99929e-05 9.99929e-05 9.9993e-05 9.9993e-05 9.9993e-05 9.9993e-05 9.9993e-05 9.9993e-05 9.9993e-05 + 9.99931e-05 9.99931e-05 9.99931e-05 9.99931e-05 9.99931e-05 9.99931e-05 9.99931e-05 9.99931e-05 9.99932e-05 9.99932e-05 9.99932e-05 9.99932e-05 + 9.99932e-05 9.99932e-05 9.99932e-05 9.99933e-05 9.99933e-05 9.99933e-05 9.99933e-05 9.99933e-05 + </DataArray> + <DataArray type="Float32" Name="process rank" NumberOfComponents="1" format="ascii"> + 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 0 0 0 0 + 0 0 0 0 0 0 0 0 + </DataArray> + <DataArray type="Float32" Name="temperatureExact" NumberOfComponents="1" format="ascii"> + 291 291 291 291 291 291 291 291 291 291 291 291 + 291 291 291 291 291 290 290 290 290 290 290 290 + 290 290 290 290 290 290 290 290 290 290 290 290 + 290 290 290 290 290 290 290 290 290 290 290 290 + 290 290 290 290 290 290 290 290 290 290 290 290 + 290 290 290 290 290 290 290 290 290 290 290 290 + 290 290 290 290 290 290 290 290 + </DataArray> + </CellData> + <Points> + <DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii"> + 0 0 0 0.25 0 0 0.5 0 0 0.75 0 0 + 1 0 0 1.25 0 0 1.5 0 0 1.75 0 0 + 2 0 0 2.25 0 0 2.5 0 0 2.75 0 0 + 3 0 0 3.25 0 0 3.5 0 0 3.75 0 0 + 4 0 0 4.25 0 0 4.5 0 0 4.75 0 0 + 5 0 0 5.25 0 0 5.5 0 0 5.75 0 0 + 6 0 0 6.25 0 0 6.5 0 0 6.75 0 0 + 7 0 0 7.25 0 0 7.5 0 0 7.75 0 0 + 8 0 0 8.25 0 0 8.5 0 0 8.75 0 0 + 9 0 0 9.25 0 0 9.5 0 0 9.75 0 0 + 10 0 0 10.25 0 0 10.5 0 0 10.75 0 0 + 11 0 0 11.25 0 0 11.5 0 0 11.75 0 0 + 12 0 0 12.25 0 0 12.5 0 0 12.75 0 0 + 13 0 0 13.25 0 0 13.5 0 0 13.75 0 0 + 14 0 0 14.25 0 0 14.5 0 0 14.75 0 0 + 15 0 0 15.25 0 0 15.5 0 0 15.75 0 0 + 16 0 0 16.25 0 0 16.5 0 0 16.75 0 0 + 17 0 0 17.25 0 0 17.5 0 0 17.75 0 0 + 18 0 0 18.25 0 0 18.5 0 0 18.75 0 0 + 19 0 0 19.25 0 0 19.5 0 0 19.75 0 0 + 20 0 0 + </DataArray> + </Points> + <Lines> + <DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii"> + 0 1 1 2 2 3 3 4 4 5 5 6 + 6 7 7 8 8 9 9 10 10 11 11 12 + 12 13 13 14 14 15 15 16 16 17 17 18 + 18 19 19 20 20 21 21 22 22 23 23 24 + 24 25 25 26 26 27 27 28 28 29 29 30 + 30 31 31 32 32 33 33 34 34 35 35 36 + 36 37 37 38 38 39 39 40 40 41 41 42 + 42 43 43 44 44 45 45 46 46 47 47 48 + 48 49 49 50 50 51 51 52 52 53 53 54 + 54 55 55 56 56 57 57 58 58 59 59 60 + 60 61 61 62 62 63 63 64 64 65 65 66 + 66 67 67 68 68 69 69 70 70 71 71 72 + 72 73 73 74 74 75 75 76 76 77 77 78 + 78 79 79 80 + </DataArray> + <DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii"> + 2 4 6 8 10 12 14 16 18 20 22 24 + 26 28 30 32 34 36 38 40 42 44 46 48 + 50 52 54 56 58 60 62 64 66 68 70 72 + 74 76 78 80 82 84 86 88 90 92 94 96 + 98 100 102 104 106 108 110 112 114 116 118 120 + 122 124 126 128 130 132 134 136 138 140 142 144 + 146 148 150 152 154 156 158 160 + </DataArray> + </Lines> + </Piece> + </PolyData> +</VTKFile> diff --git a/test/references/1pniccconvection-reference.vtu b/test/references/1pniccconvection-reference.vtu deleted file mode 100644 index 42bfb2b30f678ce56f882cca98ceec9aa6fb519d..0000000000000000000000000000000000000000 --- a/test/references/1pniccconvection-reference.vtu +++ /dev/null @@ -1,161 +0,0 @@ -<?xml version="1.0"?> -<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian"> - <UnstructuredGrid> - <Piece NumberOfCells="80" NumberOfPoints="162"> - <CellData Scalars="p" Vectors="velocity_H2O (m/s)"> - <DataArray type="Float32" Name="p" NumberOfComponents="1" format="ascii"> - 121429 121165 120901 120637 120373 120108 119844 119580 119316 119052 118788 118524 - 118259 117994 117729 117463 117196 116928 116659 116390 116120 115850 115580 115309 - 115038 114767 114497 114226 113955 113684 113413 113142 112871 112600 112329 112058 - 111787 111516 111245 110974 110703 110432 110161 109890 109619 109348 109077 108806 - 108535 108264 107994 107723 107452 107181 106910 106639 106368 106097 105826 105555 - 105284 105013 104742 104471 104200 103929 103658 103387 103116 102845 102574 102303 - 102032 101761 101490 101219 100948 100677 100406 100135 - </DataArray> - <DataArray type="Float32" Name="velocity_H2O (m/s)" NumberOfComponents="3" format="ascii"> - 0.0001 0 0 0.0001 0 0 0.0001 0 0 0.0001 0 0 - 0.0001 0 0 0.0001 0 0 0.0001 0 0 0.0001 0 0 - 0.0001 0 0 0.0001 0 0 0.0001 0 0 0.0001 0 0 - 9.99996e-05 0 0 9.9999e-05 0 0 9.99982e-05 0 0 9.99973e-05 0 0 - 9.99963e-05 0 0 9.99955e-05 0 0 9.99947e-05 0 0 9.99941e-05 0 0 - 9.99936e-05 0 0 9.99933e-05 0 0 9.99931e-05 0 0 9.99929e-05 0 0 - 9.99928e-05 0 0 9.99927e-05 0 0 9.99927e-05 0 0 9.99927e-05 0 0 - 9.99927e-05 0 0 9.99927e-05 0 0 9.99927e-05 0 0 9.99927e-05 0 0 - 9.99927e-05 0 0 9.99927e-05 0 0 9.99927e-05 0 0 9.99928e-05 0 0 - 9.99928e-05 0 0 9.99928e-05 0 0 9.99928e-05 0 0 9.99928e-05 0 0 - 9.99928e-05 0 0 9.99928e-05 0 0 9.99928e-05 0 0 9.99929e-05 0 0 - 9.99929e-05 0 0 9.99929e-05 0 0 9.99929e-05 0 0 9.99929e-05 0 0 - 9.99929e-05 0 0 9.99929e-05 0 0 9.99929e-05 0 0 9.9993e-05 0 0 - 9.9993e-05 0 0 9.9993e-05 0 0 9.9993e-05 0 0 9.9993e-05 0 0 - 9.9993e-05 0 0 9.9993e-05 0 0 9.99931e-05 0 0 9.99931e-05 0 0 - 9.99931e-05 0 0 9.99931e-05 0 0 9.99931e-05 0 0 9.99931e-05 0 0 - 9.99931e-05 0 0 9.99931e-05 0 0 9.99932e-05 0 0 9.99932e-05 0 0 - 9.99932e-05 0 0 9.99932e-05 0 0 9.99932e-05 0 0 9.99932e-05 0 0 - 9.99932e-05 0 0 9.99933e-05 0 0 9.99933e-05 0 0 9.99933e-05 0 0 - 9.99933e-05 0 0 9.99933e-05 0 0 9.99933e-05 0 0 9.99933e-05 0 0 - </DataArray> - <DataArray type="Float32" Name="process rank" NumberOfComponents="1" format="ascii"> - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 - </DataArray> - <DataArray type="Float32" Name="T" NumberOfComponents="1" format="ascii"> - 291 291 291 291.001 291.002 291 290.997 290.998 291.005 291.014 291.015 290.994 - 290.943 290.861 290.754 290.632 290.508 290.391 290.29 290.208 290.144 290.096 290.063 290.04 - 290.025 290.015 290.009 290.006 290.004 290.003 290.002 290.002 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.002 290.001 290.002 290 290.002 - </DataArray> - <DataArray type="Float32" Name="temperatureExact" NumberOfComponents="1" format="ascii"> - 291 291 291 291 291 291 291 291 291 291 291 291 - 291 291 291 291 291 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 - </DataArray> - </CellData> - <Points> - <DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii"> - 0 0 0 0.25 0 0 0 1 0 0.25 1 0 - 0.5 0 0 0.5 1 0 0.75 0 0 0.75 1 0 - 1 0 0 1 1 0 1.25 0 0 1.25 1 0 - 1.5 0 0 1.5 1 0 1.75 0 0 1.75 1 0 - 2 0 0 2 1 0 2.25 0 0 2.25 1 0 - 2.5 0 0 2.5 1 0 2.75 0 0 2.75 1 0 - 3 0 0 3 1 0 3.25 0 0 3.25 1 0 - 3.5 0 0 3.5 1 0 3.75 0 0 3.75 1 0 - 4 0 0 4 1 0 4.25 0 0 4.25 1 0 - 4.5 0 0 4.5 1 0 4.75 0 0 4.75 1 0 - 5 0 0 5 1 0 5.25 0 0 5.25 1 0 - 5.5 0 0 5.5 1 0 5.75 0 0 5.75 1 0 - 6 0 0 6 1 0 6.25 0 0 6.25 1 0 - 6.5 0 0 6.5 1 0 6.75 0 0 6.75 1 0 - 7 0 0 7 1 0 7.25 0 0 7.25 1 0 - 7.5 0 0 7.5 1 0 7.75 0 0 7.75 1 0 - 8 0 0 8 1 0 8.25 0 0 8.25 1 0 - 8.5 0 0 8.5 1 0 8.75 0 0 8.75 1 0 - 9 0 0 9 1 0 9.25 0 0 9.25 1 0 - 9.5 0 0 9.5 1 0 9.75 0 0 9.75 1 0 - 10 0 0 10 1 0 10.25 0 0 10.25 1 0 - 10.5 0 0 10.5 1 0 10.75 0 0 10.75 1 0 - 11 0 0 11 1 0 11.25 0 0 11.25 1 0 - 11.5 0 0 11.5 1 0 11.75 0 0 11.75 1 0 - 12 0 0 12 1 0 12.25 0 0 12.25 1 0 - 12.5 0 0 12.5 1 0 12.75 0 0 12.75 1 0 - 13 0 0 13 1 0 13.25 0 0 13.25 1 0 - 13.5 0 0 13.5 1 0 13.75 0 0 13.75 1 0 - 14 0 0 14 1 0 14.25 0 0 14.25 1 0 - 14.5 0 0 14.5 1 0 14.75 0 0 14.75 1 0 - 15 0 0 15 1 0 15.25 0 0 15.25 1 0 - 15.5 0 0 15.5 1 0 15.75 0 0 15.75 1 0 - 16 0 0 16 1 0 16.25 0 0 16.25 1 0 - 16.5 0 0 16.5 1 0 16.75 0 0 16.75 1 0 - 17 0 0 17 1 0 17.25 0 0 17.25 1 0 - 17.5 0 0 17.5 1 0 17.75 0 0 17.75 1 0 - 18 0 0 18 1 0 18.25 0 0 18.25 1 0 - 18.5 0 0 18.5 1 0 18.75 0 0 18.75 1 0 - 19 0 0 19 1 0 19.25 0 0 19.25 1 0 - 19.5 0 0 19.5 1 0 19.75 0 0 19.75 1 0 - 20 0 0 20 1 0 - </DataArray> - </Points> - <Cells> - <DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii"> - 0 1 3 2 1 4 5 3 4 6 7 5 - 6 8 9 7 8 10 11 9 10 12 13 11 - 12 14 15 13 14 16 17 15 16 18 19 17 - 18 20 21 19 20 22 23 21 22 24 25 23 - 24 26 27 25 26 28 29 27 28 30 31 29 - 30 32 33 31 32 34 35 33 34 36 37 35 - 36 38 39 37 38 40 41 39 40 42 43 41 - 42 44 45 43 44 46 47 45 46 48 49 47 - 48 50 51 49 50 52 53 51 52 54 55 53 - 54 56 57 55 56 58 59 57 58 60 61 59 - 60 62 63 61 62 64 65 63 64 66 67 65 - 66 68 69 67 68 70 71 69 70 72 73 71 - 72 74 75 73 74 76 77 75 76 78 79 77 - 78 80 81 79 80 82 83 81 82 84 85 83 - 84 86 87 85 86 88 89 87 88 90 91 89 - 90 92 93 91 92 94 95 93 94 96 97 95 - 96 98 99 97 98 100 101 99 100 102 103 101 - 102 104 105 103 104 106 107 105 106 108 109 107 - 108 110 111 109 110 112 113 111 112 114 115 113 - 114 116 117 115 116 118 119 117 118 120 121 119 - 120 122 123 121 122 124 125 123 124 126 127 125 - 126 128 129 127 128 130 131 129 130 132 133 131 - 132 134 135 133 134 136 137 135 136 138 139 137 - 138 140 141 139 140 142 143 141 142 144 145 143 - 144 146 147 145 146 148 149 147 148 150 151 149 - 150 152 153 151 152 154 155 153 154 156 157 155 - 156 158 159 157 158 160 161 159 - </DataArray> - <DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii"> - 4 8 12 16 20 24 28 32 36 40 44 48 - 52 56 60 64 68 72 76 80 84 88 92 96 - 100 104 108 112 116 120 124 128 132 136 140 144 - 148 152 156 160 164 168 172 176 180 184 188 192 - 196 200 204 208 212 216 220 224 228 232 236 240 - 244 248 252 256 260 264 268 272 276 280 284 288 - 292 296 300 304 308 312 316 320 - </DataArray> - <DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii"> - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 - </DataArray> - </Cells> - </Piece> - </UnstructuredGrid> -</VTKFile> diff --git a/test/references/ccmpfa1pniconvection-reference.vtu b/test/references/ccmpfa1pniconvection-reference.vtu deleted file mode 100644 index eb1b48e23eb3bc4bdd8a18f4640dd935fe4c91c0..0000000000000000000000000000000000000000 --- a/test/references/ccmpfa1pniconvection-reference.vtu +++ /dev/null @@ -1,139 +0,0 @@ -<?xml version="1.0"?> -<VTKFile type="UnstructuredGrid" version="0.1" byte_order="LittleEndian"> - <UnstructuredGrid> - <Piece NumberOfCells="80" NumberOfPoints="162"> - <CellData Scalars="p"> - <DataArray type="Float32" Name="p" NumberOfComponents="1" format="ascii"> - 121429 121165 120901 120637 120373 120108 119844 119580 119316 119052 118788 118524 - 118259 117994 117729 117463 117196 116928 116659 116390 116120 115850 115580 115309 - 115038 114767 114497 114226 113955 113684 113413 113142 112871 112600 112329 112058 - 111787 111516 111245 110974 110703 110432 110161 109890 109619 109348 109077 108806 - 108535 108264 107994 107723 107452 107181 106910 106639 106368 106097 105826 105555 - 105284 105013 104742 104471 104200 103929 103658 103387 103116 102845 102574 102303 - 102032 101761 101490 101219 100948 100677 100406 100135 - </DataArray> - <DataArray type="Float32" Name="process rank" NumberOfComponents="1" format="ascii"> - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 0 0 0 0 - 0 0 0 0 0 0 0 0 - </DataArray> - <DataArray type="Float32" Name="T" NumberOfComponents="1" format="ascii"> - 291 291 291 291.001 291.002 291 290.997 290.998 291.005 291.014 291.014 290.994 - 290.943 290.861 290.754 290.632 290.508 290.392 290.291 290.208 290.144 290.096 290.063 290.04 - 290.025 290.015 290.009 290.006 290.004 290.003 290.002 290.002 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 290.001 - 290.001 290.001 290.001 290.002 290.001 290.002 290 290.002 - </DataArray> - <DataArray type="Float32" Name="temperatureExact" NumberOfComponents="1" format="ascii"> - 291 291 291 291 291 291 291 291 291 291 291 291 - 291 291 291 291 291 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 290 290 290 290 - 290 290 290 290 290 290 290 290 - </DataArray> - </CellData> - <Points> - <DataArray type="Float32" Name="Coordinates" NumberOfComponents="3" format="ascii"> - 0 0 0 0.25 0 0 0 1 0 0.25 1 0 - 0.5 0 0 0.5 1 0 0.75 0 0 0.75 1 0 - 1 0 0 1 1 0 1.25 0 0 1.25 1 0 - 1.5 0 0 1.5 1 0 1.75 0 0 1.75 1 0 - 2 0 0 2 1 0 2.25 0 0 2.25 1 0 - 2.5 0 0 2.5 1 0 2.75 0 0 2.75 1 0 - 3 0 0 3 1 0 3.25 0 0 3.25 1 0 - 3.5 0 0 3.5 1 0 3.75 0 0 3.75 1 0 - 4 0 0 4 1 0 4.25 0 0 4.25 1 0 - 4.5 0 0 4.5 1 0 4.75 0 0 4.75 1 0 - 5 0 0 5 1 0 5.25 0 0 5.25 1 0 - 5.5 0 0 5.5 1 0 5.75 0 0 5.75 1 0 - 6 0 0 6 1 0 6.25 0 0 6.25 1 0 - 6.5 0 0 6.5 1 0 6.75 0 0 6.75 1 0 - 7 0 0 7 1 0 7.25 0 0 7.25 1 0 - 7.5 0 0 7.5 1 0 7.75 0 0 7.75 1 0 - 8 0 0 8 1 0 8.25 0 0 8.25 1 0 - 8.5 0 0 8.5 1 0 8.75 0 0 8.75 1 0 - 9 0 0 9 1 0 9.25 0 0 9.25 1 0 - 9.5 0 0 9.5 1 0 9.75 0 0 9.75 1 0 - 10 0 0 10 1 0 10.25 0 0 10.25 1 0 - 10.5 0 0 10.5 1 0 10.75 0 0 10.75 1 0 - 11 0 0 11 1 0 11.25 0 0 11.25 1 0 - 11.5 0 0 11.5 1 0 11.75 0 0 11.75 1 0 - 12 0 0 12 1 0 12.25 0 0 12.25 1 0 - 12.5 0 0 12.5 1 0 12.75 0 0 12.75 1 0 - 13 0 0 13 1 0 13.25 0 0 13.25 1 0 - 13.5 0 0 13.5 1 0 13.75 0 0 13.75 1 0 - 14 0 0 14 1 0 14.25 0 0 14.25 1 0 - 14.5 0 0 14.5 1 0 14.75 0 0 14.75 1 0 - 15 0 0 15 1 0 15.25 0 0 15.25 1 0 - 15.5 0 0 15.5 1 0 15.75 0 0 15.75 1 0 - 16 0 0 16 1 0 16.25 0 0 16.25 1 0 - 16.5 0 0 16.5 1 0 16.75 0 0 16.75 1 0 - 17 0 0 17 1 0 17.25 0 0 17.25 1 0 - 17.5 0 0 17.5 1 0 17.75 0 0 17.75 1 0 - 18 0 0 18 1 0 18.25 0 0 18.25 1 0 - 18.5 0 0 18.5 1 0 18.75 0 0 18.75 1 0 - 19 0 0 19 1 0 19.25 0 0 19.25 1 0 - 19.5 0 0 19.5 1 0 19.75 0 0 19.75 1 0 - 20 0 0 20 1 0 - </DataArray> - </Points> - <Cells> - <DataArray type="Int32" Name="connectivity" NumberOfComponents="1" format="ascii"> - 0 1 3 2 1 4 5 3 4 6 7 5 - 6 8 9 7 8 10 11 9 10 12 13 11 - 12 14 15 13 14 16 17 15 16 18 19 17 - 18 20 21 19 20 22 23 21 22 24 25 23 - 24 26 27 25 26 28 29 27 28 30 31 29 - 30 32 33 31 32 34 35 33 34 36 37 35 - 36 38 39 37 38 40 41 39 40 42 43 41 - 42 44 45 43 44 46 47 45 46 48 49 47 - 48 50 51 49 50 52 53 51 52 54 55 53 - 54 56 57 55 56 58 59 57 58 60 61 59 - 60 62 63 61 62 64 65 63 64 66 67 65 - 66 68 69 67 68 70 71 69 70 72 73 71 - 72 74 75 73 74 76 77 75 76 78 79 77 - 78 80 81 79 80 82 83 81 82 84 85 83 - 84 86 87 85 86 88 89 87 88 90 91 89 - 90 92 93 91 92 94 95 93 94 96 97 95 - 96 98 99 97 98 100 101 99 100 102 103 101 - 102 104 105 103 104 106 107 105 106 108 109 107 - 108 110 111 109 110 112 113 111 112 114 115 113 - 114 116 117 115 116 118 119 117 118 120 121 119 - 120 122 123 121 122 124 125 123 124 126 127 125 - 126 128 129 127 128 130 131 129 130 132 133 131 - 132 134 135 133 134 136 137 135 136 138 139 137 - 138 140 141 139 140 142 143 141 142 144 145 143 - 144 146 147 145 146 148 149 147 148 150 151 149 - 150 152 153 151 152 154 155 153 154 156 157 155 - 156 158 159 157 158 160 161 159 - </DataArray> - <DataArray type="Int32" Name="offsets" NumberOfComponents="1" format="ascii"> - 4 8 12 16 20 24 28 32 36 40 44 48 - 52 56 60 64 68 72 76 80 84 88 92 96 - 100 104 108 112 116 120 124 128 132 136 140 144 - 148 152 156 160 164 168 172 176 180 184 188 192 - 196 200 204 208 212 216 220 224 228 232 236 240 - 244 248 252 256 260 264 268 272 276 280 284 288 - 292 296 300 304 308 312 316 320 - </DataArray> - <DataArray type="UInt8" Name="types" NumberOfComponents="1" format="ascii"> - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 9 9 9 9 - 9 9 9 9 9 9 9 9 - </DataArray> - </Cells> - </Piece> - </UnstructuredGrid> -</VTKFile>