diff --git a/CHANGELOG.md b/CHANGELOG.md
index 62a24bf12b1e3446780e843760e5a0717a4e548e..ec4303e55a8b9697f25d6953a9ea7e36e8ebbd2d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -61,6 +61,8 @@ The change is made in the attempt to unify assembly for CVFE schemes
 - __Box/Diamond/Bubble/CVFE Assembly__: The classes `BoxLocalAssembler`, `FaceCenteredDiamondLocalAssembler`, `PQ1BubbleLocalAssembler`, `BoxSubdomainLocalAssembler`, `FaceCenteredDiamondSubdomainLocalAssembler`, `PQ1BubbleSubdomainLocalAssembler` and corresponding
 headers have been replaced by `CVFELocalAssembler` and `CVFESubdomainLocalAssembler`.
 
+- __Default CO2 Table__: The new header `defaultco2table.hh` provides the CO2 density and enthalpy values with in the range of 290 K to 340 K and 100 KPa to 100 MPa. The script `make_co2_table.py` now generates the `co2table.hh` for a specified range, which can be directly included in the properties file.
+
 ### Deprecated properties/classes/functions/files, to be removed after 3.7:
 
 - __AMGBackend__: `AMGBiCGSTABBackend` have been deprecated, use `AMGBiCGSTABIstlSolver` instead
diff --git a/test/porousmediumflow/co2/co2tables.hh b/bin/util/co2table.hh.template
similarity index 68%
rename from test/porousmediumflow/co2/co2tables.hh
rename to bin/util/co2table.hh.template
index 870953368587ea15ae70331e9c8f3cdb2c0d18f6..5c2c9021a98eda9d4d00cc73e2fa3a67defa8e55 100644
--- a/test/porousmediumflow/co2/co2tables.hh
+++ b/bin/util/co2table.hh.template
@@ -22,11 +22,43 @@
  * \brief A generic template for tabulated material laws that depend
  *        on two parameters.
  */
-#ifndef DUMUX_TEST_CO2_CO2TABLES_HH
-#define DUMUX_TEST_CO2_CO2TABLES_HH
+#ifndef DUMUX_COMPONENTS_CO2_CO2TABLES_HH
+#define DUMUX_COMPONENTS_CO2_CO2TABLES_HH
 
 #include <dune/common/float_cmp.hh>
 
+ /* Tables for CO2 fluid properties calculated according to Span and
+ * Wagner (1996) and using a web service of the National Institute
+ * of Standards and Techlology of the U.S. Department of Commerce:
+ * https://webbook.nist.gov/
+ *
+ * THIS AN AUTO-GENERATED FILE! DO NOT EDIT IT!
+ *
+ ********************************************************************
+
+    In case you are using this the data generated with this script
+    please cite the following publications:
+
+    P.J. Linstrom and W.G. Mallard, Eds.,
+    NIST Chemistry WebBook, NIST Standard Reference Database Number 69,
+    National Institute of Standards and Technology, Gaithersburg MD, 20899,
+    https://doi.org/10.18434/T4D303, (retrieved $DATE).
+
+    Span, Roland, and Wolfgang Wagner.
+    "A new equation of state for carbon dioxide covering
+    the fluid region from the triple‐point temperature
+    to 1100 K at pressures up to 800 MPa."
+    Journal of physical and chemical reference data 25.6 (1996): 1509-1596.
+    https://doi.org/10.1063/1.555991
+
+ ********************************************************************
+ *
+ * Generated using:
+ *
+ * ./make_co2_table.py -t1 $MIN_TEMP -t2 $MAX_TEMP -nt $NUM_TEMP_SAMPLES -p1 $MIN_PRESS -p2 $MAX_PRESS -np $NUM_PRESS_SAMPLES
+ */
+
+
 namespace Dumux::GeneratedCO2Tables {
 
 /*!
@@ -122,11 +154,35 @@ private:
     { return j*(maxPress() - minPress())/(numPressSteps - 1) + minPress(); }
 };
 
-#ifndef DOXYGEN // hide from doxygen
-// the real work is done by some external program which provides
-// ready-to-use tables.
-#include "co2values.inc"
-#endif
+struct TabulatedDensityTraits
+{
+    using Scalar = double;
+    static constexpr std::string_view name = "density";
+    static constexpr int numTempSteps = $NUM_TEMP_SAMPLES;
+    static constexpr Scalar minTemp = $MIN_TEMP;
+    static constexpr Scalar maxTemp = $MAX_TEMP;
+    static constexpr int numPressSteps = $NUM_PRESS_SAMPLES;
+    static constexpr Scalar minPress = $MIN_PRESS;
+    static constexpr Scalar maxPress = $MAX_PRESS;
+    static constexpr Scalar vals[numTempSteps][numPressSteps] = {
+    $DENSITY_VALS
+    };
+};
+
+struct TabulatedEnthalpyTraits
+{
+    using Scalar = double;
+    static constexpr std::string_view name = "enthalpy";
+    static constexpr int numTempSteps = $NUM_TEMP_SAMPLES;
+    static constexpr Scalar minTemp = $MIN_TEMP;
+    static constexpr Scalar maxTemp = $MAX_TEMP;
+    static constexpr int numPressSteps = $NUM_PRESS_SAMPLES;
+    static constexpr Scalar minPress = $MIN_PRESS;
+    static constexpr Scalar maxPress = $MAX_PRESS;
+    static constexpr Scalar vals[numTempSteps][numPressSteps] = {
+    $ENTHALPY_VALS
+    };
+};
 
 using TabulatedDensity = TabulatedProperties<TabulatedDensityTraits>;
 using TabulatedEnthalpy = TabulatedProperties<TabulatedEnthalpyTraits>;
@@ -137,7 +193,6 @@ struct CO2Tables
    static constexpr inline TabulatedEnthalpy tabulatedEnthalpy = {};
    static constexpr inline TabulatedDensity tabulatedDensity = {};
 };
-
 } // end namespace Dumux::GeneratedCO2Tables
 
 #endif
diff --git a/bin/util/co2values.inc.template b/bin/util/co2values.inc.template
deleted file mode 100644
index 9f16b1ab2ead83912d36e70b3c3d6b5dfe3a1ea7..0000000000000000000000000000000000000000
--- a/bin/util/co2values.inc.template
+++ /dev/null
@@ -1,60 +0,0 @@
-/* Tables for CO2 fluid properties calculated according to Span and
- * Wagner (1996) and using a web service of the National Institute
- * of Standards and Techlology of the U.S. Department of Commerce:
- * https://webbook.nist.gov/
- *
- * THIS AN AUTO-GENERATED FILE! DO NOT EDIT IT!
- *
- ********************************************************************
-
-    In case you are using this the data generated with this script
-    please cite the following publications:
-
-    P.J. Linstrom and W.G. Mallard, Eds.,
-    NIST Chemistry WebBook, NIST Standard Reference Database Number 69,
-    National Institute of Standards and Technology, Gaithersburg MD, 20899,
-    https://doi.org/10.18434/T4D303, (retrieved $DATE).
-
-    Span, Roland, and Wolfgang Wagner.
-    "A new equation of state for carbon dioxide covering
-    the fluid region from the triple‐point temperature
-    to 1100 K at pressures up to 800 MPa."
-    Journal of physical and chemical reference data 25.6 (1996): 1509-1596.
-    https://doi.org/10.1063/1.555991
-
- ********************************************************************
- *
- * Generated using:
- *
- * ./make_co2_table.py -t1 $MIN_TEMP -t2 $MAX_TEMP -nt $NUM_TEMP_SAMPLES -p1 $MIN_PRESS -p2 $MAX_PRESS -np $NUM_PRESS_SAMPLES
- */
-
-struct TabulatedDensityTraits
-{
-    using Scalar = double;
-    static constexpr std::string_view name = "density";
-    static constexpr int numTempSteps = $NUM_TEMP_SAMPLES;
-    static constexpr Scalar minTemp = $MIN_TEMP;
-    static constexpr Scalar maxTemp = $MAX_TEMP;
-    static constexpr int numPressSteps = $NUM_PRESS_SAMPLES;
-    static constexpr Scalar minPress = $MIN_PRESS;
-    static constexpr Scalar maxPress = $MAX_PRESS;
-    static constexpr Scalar vals[numTempSteps][numPressSteps] = {
-    $DENSITY_VALS
-    };
-};
-
-struct TabulatedEnthalpyTraits
-{
-    using Scalar = double;
-    static constexpr std::string_view name = "enthalpy";
-    static constexpr int numTempSteps = $NUM_TEMP_SAMPLES;
-    static constexpr Scalar minTemp = $MIN_TEMP;
-    static constexpr Scalar maxTemp = $MAX_TEMP;
-    static constexpr int numPressSteps = $NUM_PRESS_SAMPLES;
-    static constexpr Scalar minPress = $MIN_PRESS;
-    static constexpr Scalar maxPress = $MAX_PRESS;
-    static constexpr Scalar vals[numTempSteps][numPressSteps] = {
-    $ENTHALPY_VALS
-    };
-};
diff --git a/bin/util/make_co2_table.py b/bin/util/make_co2_table.py
index e00ecb2a4be7de713de07f37328d136ac2266eb9..d436b39ae3fe11048dc885c0a0b4a16f6152c0bc 100755
--- a/bin/util/make_co2_table.py
+++ b/bin/util/make_co2_table.py
@@ -152,7 +152,7 @@ DENSITY_DATA = ",\n".join(DENSITY_DATA)
 ENTHALPY_DATA = ",\n".join(ENTHALPY_DATA)
 
 # write the table by filling the gaps in the template
-with open("co2values.inc.template", "r") as templateFile:
+with open("co2table.hh.template", "r") as templateFile:
     template = Template(templateFile.read())
 
 replacements = {
@@ -167,5 +167,5 @@ replacements = {
     "DATE": date.today().strftime("%B %d, %Y"),
 }
 
-with open("co2values.inc", "w") as tables:
+with open("co2table.hh", "w") as tables:
     tables.write(template.substitute(replacements))
diff --git a/test/porousmediumflow/co2/co2values.inc b/dumux/material/components/defaultco2table.hh
similarity index 99%
rename from test/porousmediumflow/co2/co2values.inc
rename to dumux/material/components/defaultco2table.hh
index 80abe439dae2bd7a734f88681f6485cf0ebd17cf..4a6b3925ce6a7d1b15de5aa333ac9d59dc1522d6 100644
--- a/test/porousmediumflow/co2/co2values.inc
+++ b/dumux/material/components/defaultco2table.hh
@@ -1,4 +1,38 @@
-/* Tables for CO2 fluid properties calculated according to Span and
+// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
+// vi: set et ts=4 sw=4 sts=4:
+/*****************************************************************************
+ *   See the file COPYING for full copying permissions.                      *
+ *                                                                           *
+ *   This program is free software: you can redistribute it and/or modify    *
+ *   it under the terms of the GNU General Public License as published by    *
+ *   the Free Software Foundation, either version 3 of the License, or       *
+ *   (at your option) any later version.                                     *
+ *                                                                           *
+ *   This program is distributed in the hope that it will be useful,         *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of          *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the            *
+ *   GNU General Public License for more details.                            *
+ *                                                                           *
+ *   You should have received a copy of the GNU General Public License       *
+ *   along with this program.  If not, see <http://www.gnu.org/licenses/>.   *
+ *****************************************************************************/
+/*!
+ * \file
+ * \ingroup Components
+ * \brief The default CO2 table provides the CO2 density and enthalpy values with in
+ *        the range of 290 K to 340 K and 100 KPa to 100 MPa.
+ *
+ * \note If you need a CO2 table with specified pressure and temperature ranges,
+ *       use the script bin/utils/make_co2_table.py to generate the new table and
+ *       include the new table in the properties.hh.
+ *
+ */
+#ifndef DUMUX_COMPONENTS_DEFAULT_CO2_CO2TABLE_HH
+#define DUMUX_COMPONENTS_DEFAULT_CO2_CO2TABLE_HH
+
+#include <dune/common/float_cmp.hh>
+
+ /* Tables for CO2 fluid properties calculated according to Span and
  * Wagner (1996) and using a web service of the National Institute
  * of Standards and Techlology of the U.S. Department of Commerce:
  * https://webbook.nist.gov/
@@ -13,7 +47,7 @@
     P.J. Linstrom and W.G. Mallard, Eds.,
     NIST Chemistry WebBook, NIST Standard Reference Database Number 69,
     National Institute of Standards and Technology, Gaithersburg MD, 20899,
-    https://doi.org/10.18434/T4D303, (retrieved March 30, 2022).
+    https://doi.org/10.18434/T4D303, (retrieved March 22, 2023).
 
     Span, Roland, and Wolfgang Wagner.
     "A new equation of state for carbon dioxide covering
@@ -29,6 +63,106 @@
  * ./make_co2_table.py -t1 290.0 -t2 340.0 -nt 50 -p1 100000.0 -p2 100000000.0 -np 495
  */
 
+
+namespace Dumux::GeneratedCO2Tables {
+
+/*!
+ * \ingroup Components
+ * \brief A generic template for tabulated material laws that depend
+ *        on two parameters.
+ *
+ * \note If you need a CO2 table with specified pressure and temperature ranges,
+ *       use the script bin/utils/make_co2_table.py to generate the new table and
+ *       include the new table in the properties.hh.
+ */
+template <class Traits>
+class TabulatedProperties
+{
+    using Scalar = typename Traits::Scalar;
+
+    static constexpr auto numTempSteps = Traits::numTempSteps;
+    static constexpr auto numPressSteps = Traits::numPressSteps;
+
+public:
+    TabulatedProperties() = default;
+
+    constexpr Scalar minTemp() const { return Traits::minTemp; }
+    constexpr Scalar maxTemp() const { return Traits::maxTemp; }
+    constexpr Scalar minPress() const { return Traits::minPress; }
+    constexpr Scalar maxPress() const { return Traits::maxPress; }
+
+    constexpr bool applies(Scalar temperature, Scalar pressure) const
+    {
+        return minTemp() <= temperature && temperature <= maxTemp() &&
+               minPress() <= pressure && pressure <= maxPress();
+    }
+
+    constexpr Scalar at(Scalar temperature, Scalar pressure) const
+    {
+        if (!applies(temperature, pressure))
+        {
+            if (temperature<minTemp()) temperature = minTemp();
+            else if (temperature>maxTemp()) temperature = maxTemp();
+
+            if (pressure<minPress()) pressure = minPress();
+            else if (pressure>maxPress()) pressure = maxPress();
+        }
+
+        const int i = findTempIdx_(temperature);
+        const int j = findPressIdx_(pressure);
+
+        const Scalar tempAtI = temperatureAt_(i);
+        const Scalar tempAtI1 = temperatureAt_(i + 1);
+        const Scalar pressAtI = pressureAt_(j);
+        const Scalar pressAtI1 = pressureAt_(j + 1);
+
+        const Scalar alpha = (temperature - tempAtI)/(tempAtI1 - tempAtI);
+        const Scalar beta = (pressure - pressAtI)/(pressAtI1 - pressAtI);
+
+        // bi-linear interpolation
+        const Scalar lowresValue =
+            (1-alpha)*(1-beta)*val(i, j) +
+            (1-alpha)*(  beta)*val(i, j + 1) +
+            (  alpha)*(1-beta)*val(i + 1, j) +
+            (  alpha)*(  beta)*val(i + 1, j + 1);
+
+        // return the weighted sum of the low- and high-resolution values
+        return lowresValue;
+    }
+
+    constexpr Scalar val(int i, int j) const
+    { return Traits::vals[i][j]; }
+
+private:
+    constexpr int findTempIdx_(Scalar temperature) const
+    {
+        if (Dune::FloatCmp::eq<Scalar>(temperature, maxTemp()))
+            return numTempSteps - 2;
+
+        const int result = static_cast<int>((temperature - minTemp())/(maxTemp() - minTemp())*(numTempSteps - 1));
+
+        using std::clamp;
+        return clamp(result, 0, numTempSteps - 2);
+    }
+
+    constexpr int findPressIdx_(Scalar pressure) const
+    {
+        if (Dune::FloatCmp::eq<Scalar>(pressure, maxPress()))
+            return numPressSteps - 2;
+
+        const int result = static_cast<int>((pressure - minPress())/(maxPress() - minPress())*(numPressSteps - 1));
+
+        using std::clamp;
+        return clamp(result, 0, numPressSteps - 2);
+    }
+
+    constexpr Scalar temperatureAt_(int i) const
+    { return i*(maxTemp() - minTemp())/(numTempSteps - 1) + minTemp(); }
+
+    constexpr Scalar pressureAt_(int j) const
+    { return j*(maxPress() - minPress())/(numPressSteps - 1) + minPress(); }
+};
+
 struct TabulatedDensityTraits
 {
     using Scalar = double;
@@ -156,3 +290,16 @@ struct TabulatedEnthalpyTraits
     {5.741625418787e+04, 5.599295977487e+04, 5.455521865487e+04, 5.310265597487e+04, 5.163488165387e+04, 5.015148960287e+04, 4.865205690287e+04, 4.713614293787e+04, 4.560328846687e+04, 4.405301465187e+04, 4.248482201787e+04, 4.089818935587e+04, 3.929257255987e+04, 3.766740339487e+04, 3.602208819487e+04, 3.435600648187e+04, 3.266850950787e+04, 3.095891872187e+04, 2.922652414487e+04, 2.747058266587e+04, 2.569031625187e+04, 2.388491007687e+04, 2.205351056887e+04, 2.019522338487e+04, 1.830911132187e+04, 1.639419217687e+04, 1.444943658187e+04, 1.247376583687e+04, 1.046604978287e+04, 8.425104765871e+03, 6.349691767871e+03, 4.238514782871e+03, 2.090219584871e+03, -9.660698712949e+01, -2.323436986129e+03, -4.591800317129e+03, -6.903282340129e+03, -9.259519683129e+03, -1.166219369413e+04, -1.411302081213e+04, -1.661373895313e+04, -1.916608874913e+04, -2.177178822513e+04, -2.443249913213e+04, -2.714978280313e+04, -2.992504300613e+04, -3.275945288413e+04, -3.565386286313e+04, -3.860868644713e+04, -4.162376142113e+04, -4.469818548413e+04, -4.783012809913e+04, -5.101662486713e+04, -5.425336687013e+04, -5.753450484413e+04, -6.085249494513e+04, -6.419801709513e+04, -6.755999565013e+04, -7.092574398513e+04, -7.428124036513e+04, -7.761152542213e+04, -8.090119633713e+04, -8.413496255613e+04, -8.729822301913e+04, -9.037762316213e+04, -9.336154946613e+04, -9.624052014413e+04, -9.900743559413e+04, -1.016576617561e+05, -1.041889756381e+05, -1.066013426941e+05, -1.088965539721e+05, -1.110778207071e+05, -1.131493740951e+05, -1.151161102631e+05, -1.169833010411e+05, -1.187563742871e+05, -1.204407566071e+05, -1.220417662391e+05, -1.235645432241e+05, -1.250140057721e+05, -1.263948244121e+05, -1.277114081361e+05, -1.289678987731e+05, -1.301681712451e+05, -1.313158381991e+05, -1.324142579651e+05, -1.334665450521e+05, -1.344755824791e+05, -1.354440353541e+05, -1.363743651521e+05, -1.372688442391e+05, -1.381295702641e+05, -1.389584801331e+05, -1.397573633401e+05, -1.405278745141e+05, -1.412715451041e+05, -1.419897941581e+05, -1.426839381991e+05, -1.433552002281e+05, -1.440047178881e+05, -1.446335508551e+05, -1.452426875171e+05, -1.458330509891e+05, -1.464055045511e+05, -1.469608565371e+05, -1.474998647641e+05, -1.480232405201e+05, -1.485316521791e+05, -1.490257284741e+05, -1.495060614681e+05, -1.499732092521e+05, -1.504276984041e+05, -1.508700262321e+05, -1.513006628211e+05, -1.517200529121e+05, -1.521286176171e+05, -1.525267559981e+05, -1.529148465201e+05, -1.532932483881e+05, -1.536623027751e+05, -1.540223339671e+05, -1.543736504051e+05, -1.547165456701e+05, -1.550512993741e+05, -1.553781780041e+05, -1.556974356971e+05, -1.560093149591e+05, -1.563140473391e+05, -1.566118540571e+05, -1.569029465791e+05, -1.571875271701e+05, -1.574657893941e+05, -1.577379185911e+05, -1.580040923211e+05, -1.582644807751e+05, -1.585192471701e+05, -1.587685481041e+05, -1.590125339061e+05, -1.592513489481e+05, -1.594851319531e+05, -1.597140162701e+05, -1.599381301481e+05, -1.601575969761e+05, -1.603725355271e+05, -1.605830601741e+05, -1.607892811001e+05, -1.609913044971e+05, -1.611892327471e+05, -1.613831646031e+05, -1.615731953491e+05, -1.617594169631e+05, -1.619419182561e+05, -1.621207850231e+05, -1.622961001671e+05, -1.624679438261e+05, -1.626363934961e+05, -1.628015241411e+05, -1.629634082981e+05, -1.631221161821e+05, -1.632777157821e+05, -1.634302729501e+05, -1.635798514891e+05, -1.637265132381e+05, -1.638703181481e+05, -1.640113243561e+05, -1.641495882601e+05, -1.642851645841e+05, -1.644181064431e+05, -1.645484654051e+05, -1.646762915491e+05, -1.648016335231e+05, -1.649245385951e+05, -1.650450527041e+05, -1.651632205131e+05, -1.652790854481e+05, -1.653926897511e+05, -1.655040745151e+05, -1.656132797291e+05, -1.657203443171e+05, -1.658253061721e+05, -1.659282021961e+05, -1.660290683301e+05, -1.661279395891e+05, -1.662248500941e+05, -1.663198330981e+05, -1.664129210221e+05, -1.665041454741e+05, -1.665935372831e+05, -1.666811265191e+05, -1.667669425221e+05, -1.668510139211e+05, -1.669333686611e+05, -1.670140340191e+05, -1.670930366321e+05, -1.671704025101e+05, -1.672461570611e+05, -1.673203251051e+05, -1.673929308951e+05, -1.674639981321e+05, -1.675335499831e+05, -1.676016090981e+05, -1.676681976201e+05, -1.677333372071e+05, -1.677970490401e+05, -1.678593538421e+05, -1.679202718871e+05, -1.679798230151e+05, -1.680380266431e+05, -1.680949017781e+05, -1.681504670291e+05, -1.682047406161e+05, -1.682577403831e+05, -1.683094838061e+05, -1.683599880051e+05, -1.684092697521e+05, -1.684573454821e+05, -1.685042313011e+05, -1.685499429951e+05, -1.685944960381e+05, -1.686379056001e+05, -1.686801865571e+05, -1.687213534941e+05, -1.687614207201e+05, -1.688004022651e+05, -1.688383118971e+05, -1.688751631231e+05, -1.689109691951e+05, -1.689457431201e+05, -1.689794976621e+05, -1.690122453541e+05, -1.690439984941e+05, -1.690747691621e+05, -1.691045692171e+05, -1.691334103031e+05, -1.691613038611e+05, -1.691882611251e+05, -1.692142931321e+05, -1.692394107251e+05, -1.692636245601e+05, -1.692869451051e+05, -1.693093826501e+05, -1.693309473081e+05, -1.693516490191e+05, -1.693714975561e+05, -1.693905025271e+05, -1.694086733781e+05, -1.694260193981e+05, -1.694425497241e+05, -1.694582733401e+05, -1.694731990841e+05, -1.694873356511e+05, -1.695006915931e+05, -1.695132753261e+05, -1.695250951301e+05, -1.695361591531e+05, -1.695464754161e+05, -1.695560518111e+05, -1.695648961071e+05, -1.695730159521e+05, -1.695804188751e+05, -1.695871122891e+05, -1.695931034921e+05, -1.695983996731e+05, -1.696030079101e+05, -1.696069351731e+05, -1.696101883291e+05, -1.696127741421e+05, -1.696146992741e+05, -1.696159702881e+05, -1.696165936531e+05, -1.696165757391e+05, -1.696159228281e+05, -1.696146411051e+05, -1.696127366701e+05, -1.696102155331e+05, -1.696070836191e+05, -1.696033467681e+05, -1.695990107371e+05, -1.695940812021e+05, -1.695885637601e+05, -1.695824639281e+05, -1.695757871481e+05, -1.695685387861e+05, -1.695607241331e+05, -1.695523484081e+05, -1.695434167601e+05, -1.695339342661e+05, -1.695239059361e+05, -1.695133367121e+05, -1.695022314681e+05, -1.694905950151e+05, -1.694784320991e+05, -1.694657474041e+05, -1.694525455531e+05, -1.694388311051e+05, -1.694246085631e+05, -1.694098823691e+05, -1.693946569101e+05, -1.693789365151e+05, -1.693627254561e+05, -1.693460279541e+05, -1.693288481721e+05, -1.693111902251e+05, -1.692930581711e+05, -1.692744560221e+05, -1.692553877361e+05, -1.692358572231e+05, -1.692158683461e+05, -1.691954249181e+05, -1.691745307061e+05, -1.691531894311e+05, -1.691314047691e+05, -1.691091803501e+05, -1.690865197611e+05, -1.690634265461e+05, -1.690399042071e+05, -1.690159562021e+05, -1.689915859501e+05, -1.689667968281e+05, -1.689415921741e+05, -1.689159752861e+05, -1.688899494251e+05, -1.688635178111e+05, -1.688366836301e+05, -1.688094500281e+05, -1.687818201181e+05, -1.687537969731e+05, -1.687253836341e+05, -1.686965831081e+05, -1.686673983651e+05, -1.686378323421e+05, -1.686078879451e+05, -1.685775680461e+05, -1.685468754841e+05, -1.685158130681e+05, -1.684843835751e+05, -1.684525897501e+05, -1.684204343111e+05, -1.683879199431e+05, -1.683550493031e+05, -1.683218250201e+05, -1.682882496921e+05, -1.682543258901e+05, -1.682200561591e+05, -1.681854430141e+05, -1.681504889451e+05, -1.681151964141e+05, -1.680795678571e+05, -1.680436056861e+05, -1.680073122861e+05, -1.679706900171e+05, -1.679337412151e+05, -1.678964681901e+05, -1.678588732301e+05, -1.678209585971e+05, -1.677827265331e+05, -1.677441792531e+05, -1.677053189531e+05, -1.676661478031e+05, -1.676266679531e+05, -1.675868815311e+05, -1.675467906431e+05, -1.675063973741e+05, -1.674657037891e+05, -1.674247119291e+05, -1.673834238201e+05, -1.673418414621e+05, -1.672999668391e+05, -1.672578019151e+05, -1.672153486331e+05, -1.671726089181e+05, -1.671295846761e+05, -1.670862777961e+05, -1.670426901441e+05, -1.669988235741e+05, -1.669546799181e+05, -1.669102609901e+05, -1.668655685901e+05, -1.668206044981e+05, -1.667753704781e+05, -1.667298682771e+05, -1.666840996251e+05, -1.666380662371e+05, -1.665917698101e+05, -1.665452120271e+05, -1.664983945541e+05, -1.664513190411e+05, -1.664039871241e+05, -1.663564004241e+05, -1.663085605461e+05, -1.662604690791e+05, -1.662121276001e+05, -1.661635376711e+05, -1.661147008381e+05, -1.660656186351e+05, -1.660162925811e+05, -1.659667241811e+05, -1.659169149281e+05, -1.658668662991e+05, -1.658165797601e+05, -1.657660567621e+05, -1.657152987461e+05, -1.656643071381e+05, -1.656130833501e+05, -1.655616287851e+05, -1.655099448321e+05, -1.654580328661e+05, -1.654058942531e+05, -1.653535303461e+05, -1.653009424851e+05, -1.652481320001e+05, -1.651951002091e+05, -1.651418484181e+05, -1.650883779221e+05, -1.650346900051e+05, -1.649807859411e+05, -1.649266669921e+05, -1.648723344091e+05, -1.648177894331e+05, -1.647630332951e+05, -1.647080672141e+05, -1.646528924011e+05, -1.645975100551e+05, -1.645419213651e+05, -1.644861275121e+05, -1.644301296651e+05, -1.643739289841e+05, -1.643175266201e+05, -1.642609237141e+05, -1.642041213981e+05, -1.641471207931e+05, -1.640899230141e+05, -1.640325291641e+05, -1.639749403381e+05, -1.639171576231e+05, -1.638591820961e+05, -1.638010148271e+05, -1.637426568741e+05, -1.636841092901e+05, -1.636253731181e+05, -1.635664493931e+05, -1.635073391411e+05, -1.634480433821e+05, -1.633885631241e+05, -1.633288993721e+05, -1.632690531201e+05, -1.632090253531e+05, -1.631488170521e+05, -1.630884291871e+05, -1.630278627231e+05, -1.629671186151e+05, -1.629061978121e+05, -1.628451012571e+05, -1.627838298831e+05, -1.627223846171e+05, -1.626607663791e+05, -1.625989760821e+05, -1.625370146321e+05, -1.624748829281e+05, -1.624125818631e+05, -1.623501123201e+05, -1.622874751801e+05, -1.622246713151e+05, -1.621617015891e+05, -1.620985668621e+05, -1.620352679861e+05, -1.619718058081e+05, -1.619081811681e+05, -1.618443948991e+05, -1.617804478291e+05, -1.617163407781e+05, -1.616520745631e+05, -1.615876499931e+05, -1.615230678711e+05, -1.614583289941e+05, -1.613934341551e+05, -1.613283841391e+05, -1.612631797251e+05, -1.611978216901e+05, -1.611323108011e+05, -1.610666478231e+05, -1.610008335121e+05, -1.609348686211e+05, -1.608687538981e+05, -1.608024900831e+05, -1.607360779141e+05, -1.606695181221e+05, -1.606028114321e+05, -1.605359585651e+05, -1.604689602371e+05, -1.604018171581e+05, -1.603345300351e+05, -1.602670995681e+05, -1.601995264531e+05}
     };
 };
+
+using TabulatedDensity = TabulatedProperties<TabulatedDensityTraits>;
+using TabulatedEnthalpy = TabulatedProperties<TabulatedEnthalpyTraits>;
+
+// this class collects all the tabulated quantities in one convenient place
+struct CO2Tables
+{
+   static constexpr inline TabulatedEnthalpy tabulatedEnthalpy = {};
+   static constexpr inline TabulatedDensity tabulatedDensity = {};
+};
+} // end namespace Dumux::GeneratedCO2Tables
+
+#endif
diff --git a/test/porousmediumflow/co2/problem.hh b/test/porousmediumflow/co2/problem.hh
index 8c68a6699c2b5ea8dae7df585e158c10bb3b7ce4..d624ec153ab52d3c407afabfe2254716bd1f0f2c 100644
--- a/test/porousmediumflow/co2/problem.hh
+++ b/test/porousmediumflow/co2/problem.hh
@@ -38,7 +38,6 @@
 #include <dumux/discretization/box/scvftoscvboundarytypes.hh>
 #include <dumux/common/gridcapabilities.hh>
 
-#include "co2tables.hh"
 
 namespace Dumux {
 
diff --git a/test/porousmediumflow/co2/properties.hh b/test/porousmediumflow/co2/properties.hh
index 030700fda0733f4ed46aab248096b3540b8e1f03..bc57810b9726b1f230e041211a45a49b1ff4c0ac 100644
--- a/test/porousmediumflow/co2/properties.hh
+++ b/test/porousmediumflow/co2/properties.hh
@@ -34,6 +34,7 @@
 
 #include <dumux/material/components/tabulatedcomponent.hh>
 #include <dumux/material/components/co2.hh>
+#include <dumux/material/components/defaultco2table.hh>
 #include <dumux/material/components/h2o.hh>
 #include <dumux/material/fluidsystems/brineco2.hh>
 
@@ -48,7 +49,6 @@
 
 #include "problem.hh"
 #include "spatialparams.hh"
-#include "co2tables.hh"
 
 namespace Dumux::Properties {