Skip to content
Snippets Groups Projects
Commit 7fee08b8 authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

Merge branch 'feature/opm-2016.10' into 'master'

[opm] Update to opm 2016.10 version

See merge request !262
parent 21ae3761
No related branches found
No related tags found
2 merge requests!617[WIP] Next,!263Merge branch 'feature/opm-2016.10' into 'master'
...@@ -63,7 +63,7 @@ installErt() ...@@ -63,7 +63,7 @@ installErt()
fi fi
if [ ! -e ert ]; then if [ ! -e ert ]; then
git clone -b release/2016.04 https://github.com/Ensembles/ert.git git clone -b release/2016.10 https://github.com/Ensembles/ert.git
fi fi
if test "$DOWNLOAD_ONLY" == "y"; then if test "$DOWNLOAD_ONLY" == "y"; then
...@@ -80,7 +80,7 @@ installErt() ...@@ -80,7 +80,7 @@ installErt()
cd $TOPDIR/ert cd $TOPDIR/ert
mkdir build mkdir build
cd build cd build
cmake ../devel cmake ..
make make
# show additional information # show additional information
...@@ -294,25 +294,29 @@ installOPM() ...@@ -294,25 +294,29 @@ installOPM()
fi fi
if [ ! -e opm-common ]; then if [ ! -e opm-common ]; then
git clone -b release/2016.04 https://github.com/OPM/opm-common git clone -b release/2016.10 https://github.com/OPM/opm-common
fi fi
if [ ! -e opm-core ]; then if [ ! -e opm-core ]; then
git clone -b release/2016.04 https://github.com/OPM/opm-core git clone -b release/2016.10 https://github.com/OPM/opm-core
fi fi
if [ ! -e opm-material ]; then if [ ! -e opm-material ]; then
git clone -b release/2016.04 https://github.com/OPM/opm-material git clone -b release/2016.10 https://github.com/OPM/opm-material
fi fi
if [ ! -e opm-parser ]; then if [ ! -e opm-parser ]; then
git clone -b release/2016.04 https://github.com/OPM/opm-parser git clone -b release/2016.10 https://github.com/OPM/opm-parser
fi fi
if [ ! -e opm-grid ]; then if [ ! -e opm-grid ]; then
git clone -b release/2016.04 https://github.com/OPM/opm-grid git clone -b release/2016.10 https://github.com/OPM/opm-grid
fi fi
if [ ! -e opm-output ]; then
git clone -b release/2016.10 https://github.com/OPM/opm-output
fi
if test "$DOWNLOAD_ONLY" == "y"; then if test "$DOWNLOAD_ONLY" == "y"; then
return return
fi fi
...@@ -323,6 +327,7 @@ installOPM() ...@@ -323,6 +327,7 @@ installOPM()
rm -rf opm-material rm -rf opm-material
rm -rf opm-parser rm -rf opm-parser
rm -rf opm-grid rm -rf opm-grid
rm -rf opm-output
return return
fi fi
...@@ -344,6 +349,8 @@ installOPM() ...@@ -344,6 +349,8 @@ installOPM()
echo " -Dopm-core_PREFIX=/path/to/opm-core \\" echo " -Dopm-core_PREFIX=/path/to/opm-core \\"
echo " -Dopm-material_PREFIX=/path/to/opm-material \\" echo " -Dopm-material_PREFIX=/path/to/opm-material \\"
echo " -Dopm-parser_PREFIX=/path/to/opm-parser \\" echo " -Dopm-parser_PREFIX=/path/to/opm-parser \\"
echo " -Dopm-output_PREFIX=/path/to/opm-output \\"
echo " -DUSE_MPI=ON \\"
echo " -DHAVE_OPM_GRID=1 \\" echo " -DHAVE_OPM_GRID=1 \\"
cd $TOPDIR cd $TOPDIR
......
...@@ -50,6 +50,7 @@ class CpGridCreator ...@@ -50,6 +50,7 @@ class CpGridCreator
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
typedef typename GET_PROP_TYPE(TypeTag, Grid) Grid; typedef typename GET_PROP_TYPE(TypeTag, Grid) Grid;
typedef std::shared_ptr<Grid> GridPointer; typedef std::shared_ptr<Grid> GridPointer;
typedef Opm::Deck Deck;
public: public:
/*! /*!
...@@ -59,12 +60,11 @@ public: ...@@ -59,12 +60,11 @@ public:
{ {
std::string fileName = GET_RUNTIME_PARAM_FROM_GROUP(TypeTag, std::string, Grid, File); std::string fileName = GET_RUNTIME_PARAM_FROM_GROUP(TypeTag, std::string, Grid, File);
parser_() = *(new Opm::ParserPtr(new Opm::Parser())); deck() = Opm::Parser().parseFile(fileName);
Opm::ParseContext parseContext; Opm::EclipseGrid ecl_grid(deck());
deck() = *(new Opm::DeckConstPtr(parser_()->parseFile(fileName, parseContext)));
gridPtr() = std::make_shared<Grid>(*(new Grid())); gridPtr() = std::make_shared<Grid>(*(new Grid()));
gridPtr()->processEclipseFormat(deck(), 0.0, false, false); gridPtr()->processEclipseFormat(ecl_grid, false, false);
} }
/*! /*!
...@@ -89,9 +89,9 @@ public: ...@@ -89,9 +89,9 @@ public:
* *
* The input deck can be used to read parameters like porosity/permeability. * The input deck can be used to read parameters like porosity/permeability.
*/ */
static Opm::DeckConstPtr &deck() static Deck &deck()
{ {
static Opm::DeckConstPtr deck_; static Deck deck_;
return deck_; return deck_;
} }
...@@ -102,13 +102,6 @@ public: ...@@ -102,13 +102,6 @@ public:
{ {
gridPtr()->loadBalance(); gridPtr()->loadBalance();
} }
private:
static Opm::ParserPtr &parser_()
{
static Opm::ParserPtr parser;
return parser;
}
}; };
} }
#endif // HAVE_OPM_GRID #endif // HAVE_OPM_GRID
......
...@@ -92,9 +92,9 @@ public: ...@@ -92,9 +92,9 @@ public:
const std::vector<int>& globalCell = GridCreator::grid().globalCell(); const std::vector<int>& globalCell = GridCreator::grid().globalCell();
if (GridCreator::deck()->hasKeyword("PORO")) { if (GridCreator::deck().hasKeyword("PORO")) {
std::cout << "Found PORO..." << std::endl; std::cout << "Found PORO..." << std::endl;
std::vector<double> eclVector = GridCreator::deck()->getKeyword("PORO").getRawDoubleData(); std::vector<double> eclVector = GridCreator::deck().getKeyword("PORO").getRawDoubleData();
porosity_.resize(globalCell.size()); porosity_.resize(globalCell.size());
for (size_t i = 0; i < globalCell.size(); ++i) { for (size_t i = 0; i < globalCell.size(); ++i) {
...@@ -105,9 +105,9 @@ public: ...@@ -105,9 +105,9 @@ public:
} }
} }
if (GridCreator::deck()->hasKeyword("PERMX")) { if (GridCreator::deck().hasKeyword("PERMX")) {
std::cout << "Found PERMX..." << std::endl; std::cout << "Found PERMX..." << std::endl;
std::vector<double> eclVector = GridCreator::deck()->getKeyword("PERMX").getRawDoubleData(); std::vector<double> eclVector = GridCreator::deck().getKeyword("PERMX").getRawDoubleData();
permX_.resize(globalCell.size()); permX_.resize(globalCell.size());
for (size_t i = 0; i < globalCell.size(); ++i) { for (size_t i = 0; i < globalCell.size(); ++i) {
...@@ -119,9 +119,9 @@ public: ...@@ -119,9 +119,9 @@ public:
} }
} }
if (GridCreator::deck()->hasKeyword("PERMZ")) { if (GridCreator::deck().hasKeyword("PERMZ")) {
std::cout << "Found PERMZ..." << std::endl; std::cout << "Found PERMZ..." << std::endl;
std::vector<double> eclVector = GridCreator::deck()->getKeyword("PERMZ").getRawDoubleData(); std::vector<double> eclVector = GridCreator::deck().getKeyword("PERMZ").getRawDoubleData();
permZ_.resize(globalCell.size()); permZ_.resize(globalCell.size());
for (size_t i = 0; i < globalCell.size(); ++i) { for (size_t i = 0; i < globalCell.size(); ++i) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment