mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
114 lines
4.2 KiB
C++
114 lines
4.2 KiB
C++
/*
|
|
Copyright (C) 2010-2013 by Andreas Lauser
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
OPM 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 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OPM 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 OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
/*!
|
|
* \file
|
|
*
|
|
* \brief This is a program to test the tabulation class for of
|
|
* individual components.
|
|
*
|
|
* It either prints "success" or "error", it does not do anything
|
|
* else.
|
|
*/
|
|
#include "config.h"
|
|
|
|
#include <opm/material/components/H2O.hpp>
|
|
#include <opm/material/components/TabulatedComponent.hpp>
|
|
|
|
bool success;
|
|
|
|
template <class Scalar>
|
|
void isSame(const char *str, Scalar v, Scalar vRef, Scalar tol=1e-3)
|
|
{
|
|
if (std::abs( (v - vRef)/vRef ) > tol) {
|
|
std::cout << "error for \"" << str << "\": " << (v - vRef)/vRef*100 << "% difference (tolerance: " << tol*100 << "%)\n";
|
|
success = false;
|
|
//exit(1);
|
|
}
|
|
}
|
|
|
|
int main()
|
|
{
|
|
typedef double Scalar;
|
|
typedef Opm::H2O<Scalar> IapwsH2O;
|
|
typedef Opm::TabulatedComponent<Scalar, IapwsH2O> TabulatedH2O;
|
|
|
|
Scalar tempMin = 274.15;
|
|
Scalar tempMax = 622.15;
|
|
int nTemp = static_cast<int>(tempMax - tempMin) * 6/8;
|
|
|
|
Scalar pMin = 10.00;
|
|
Scalar pMax = IapwsH2O::vaporPressure(tempMax*1.1);
|
|
int nPress = 200;
|
|
|
|
std::cout << "Creating tabulation with " << nTemp*nPress << " entries per quantity\n";
|
|
TabulatedH2O::init(tempMin, tempMax, nTemp,
|
|
pMin, pMax, nPress);
|
|
|
|
std::cout << "Checking tabulation\n";
|
|
success = true;
|
|
int m = nTemp*3;
|
|
int n = nPress*3;
|
|
for (int i = 0; i < m; ++i) {
|
|
Scalar T = tempMin + (tempMax - tempMin)*Scalar(i)/m;
|
|
|
|
if (i % std::max(1, m/1000) == 0) {
|
|
std::cout << Scalar(i)/m*100 << "% done \r";
|
|
std::cout.flush();
|
|
}
|
|
|
|
isSame("vaporPressure",
|
|
TabulatedH2O::vaporPressure(T),
|
|
IapwsH2O::vaporPressure(T),
|
|
1e-3);
|
|
for (int j = 0; j < n; ++j) {
|
|
Scalar p = pMin + (pMax - pMin)*Scalar(j)/n;
|
|
if (p < IapwsH2O::vaporPressure(T) * 1.001) {
|
|
Scalar tol = 1e-3;
|
|
if (p > IapwsH2O::vaporPressure(T))
|
|
tol = 1e-2;
|
|
Scalar rho = IapwsH2O::gasDensity(T,p);
|
|
//isSame("Iapws::gasPressure", IapwsH2O::gasPressure(T,rho), p, 1e-6);
|
|
//isSame("gasPressure", TabulatedH2O::gasPressure(T,rho), p, 2e-2);
|
|
isSame("gasEnthalpy", TabulatedH2O::gasEnthalpy(T,p), IapwsH2O::gasEnthalpy(T,p), tol);
|
|
isSame("gasInternalEnergy", TabulatedH2O::gasInternalEnergy(T,p), IapwsH2O::gasInternalEnergy(T,p), tol);
|
|
isSame("gasDensity", TabulatedH2O::gasDensity(T,p), rho, tol);
|
|
isSame("gasViscosity", TabulatedH2O::gasViscosity(T,p), IapwsH2O::gasViscosity(T,p), tol);
|
|
}
|
|
|
|
if (p > IapwsH2O::vaporPressure(T) / 1.001) {
|
|
Scalar tol = 1e-3;
|
|
if (p < IapwsH2O::vaporPressure(T))
|
|
tol = 1e-2;
|
|
Scalar rho = IapwsH2O::liquidDensity(T,p);
|
|
//isSame("Iapws::liquidPressure", IapwsH2O::liquidPressure(T,rho), p, 1e-6);
|
|
//isSame("liquidPressure", TabulatedH2O::liquidPressure(T,rho), p, 2e-2);
|
|
isSame("liquidEnthalpy", TabulatedH2O::liquidEnthalpy(T,p), IapwsH2O::liquidEnthalpy(T,p), tol);
|
|
isSame("liquidInternalEnergy", TabulatedH2O::liquidInternalEnergy(T,p), IapwsH2O::liquidInternalEnergy(T,p), tol);
|
|
isSame("liquidDensity", TabulatedH2O::liquidDensity(T,p), rho, tol);
|
|
isSame("liquidViscosity", TabulatedH2O::liquidViscosity(T,p), IapwsH2O::liquidViscosity(T,p), tol);
|
|
}
|
|
}
|
|
//std::cerr << "\n";
|
|
}
|
|
|
|
if (success)
|
|
std::cout << "\nsuccess\n";
|
|
return 0;
|
|
}
|