Adding class BlackoilPropertiesFromDeck and test program.

This commit is contained in:
Atgeirr Flø Rasmussen
2012-01-04 14:44:55 +01:00
parent 44eb3cf277
commit dd4c0c2b1b
6 changed files with 444 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ noinst_PROGRAMS = \
bo_fluid_p_and_z_deps \
bo_fluid_pressuredeps \
bo_fluid_test \
bo_resprop_test \
monotcubicinterpolator_test \
param_test \
sparsetable_test \
@@ -23,6 +24,7 @@ test_sf2p
bo_fluid_p_and_z_deps_SOURCES = bo_fluid_p_and_z_deps.cpp
bo_fluid_pressuredeps_SOURCES = bo_fluid_pressuredeps.cpp
bo_fluid_test_SOURCES = bo_fluid_test.cpp
bo_resprop_test_SOURCES = bo_resprop_test.cpp
monotcubicinterpolator_test_SOURCES = monotcubicinterpolator_test.cpp
param_test_SOURCES = param_test.cpp
sparsetable_test_SOURCES = sparsetable_test.cpp

49
tests/bo_resprop_test.cpp Normal file
View File

@@ -0,0 +1,49 @@
/*
Copyright 2012 SINTEF ICT, Applied Mathematics.
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 3 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/>.
*/
#include "config.h"
#include <opm/core/utility/parameters/ParameterGroup.hpp>
#include <opm/core/eclipse/EclipseGridParser.hpp>
#include <opm/core/fluid/BlackoilPropertiesFromDeck.hpp>
#include <iterator>
#include <iostream>
int main(int argc, char** argv)
{
// Parameters.
Dune::parameter::ParameterGroup param(argc, argv);
// Parser.
std::string ecl_file = param.get<std::string>("filename");
Dune::EclipseGridParser deck(ecl_file);
Opm::BlackoilPropertiesFromDeck props(deck);
const int n = 1;
double p[n] = { 150e5 };
double z[3*n] = { 1.0, 1.0, 1.0 };
int cells[n] = { 0 };
double A[9*n];
props.matrix(n, p, z, cells, A, 0);
std::copy(A, A + 9, std::ostream_iterator<double>(std::cout, " "));
std::cout << std::endl;
}