2012-03-29 11:34:51 -05:00
|
|
|
/*
|
|
|
|
Copyright 2011 SINTEF ICT, Applied Mathematics.
|
|
|
|
|
|
|
|
|
|
|
|
This file is part of The Open Reservoir Simulator Project (OpenRS).
|
|
|
|
|
|
|
|
OpenRS 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.
|
|
|
|
|
|
|
|
OpenRS 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 OpenRS. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef OPM_WELLCOLLECTION_HPP
|
|
|
|
#define OPM_WELLCOLLECTION_HPP
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <opm/core/WellsGroup.hpp>
|
2012-04-12 07:25:39 -05:00
|
|
|
#include <opm/core/grid.h>
|
2012-03-29 11:34:51 -05:00
|
|
|
#include <opm/core/eclipse/EclipseGridParser.hpp>
|
|
|
|
|
|
|
|
namespace Opm
|
|
|
|
{
|
|
|
|
|
|
|
|
class WellCollection
|
|
|
|
{
|
|
|
|
public:
|
2012-04-25 07:03:57 -05:00
|
|
|
/// Adds and creates if necessary the child to the collection
|
|
|
|
/// and appends it to parent's children. Also adds and creates the parent
|
|
|
|
/// if necessary.
|
|
|
|
/// \param[in] child name of child node
|
|
|
|
/// \param[in] parent name of parent node
|
|
|
|
/// \param[in] deck deck from which we will extract group control data
|
|
|
|
void addChild(const std::string& child,
|
|
|
|
const std::string& parent,
|
|
|
|
const EclipseGridParser& deck);
|
2012-03-29 11:34:51 -05:00
|
|
|
|
2012-04-25 07:03:57 -05:00
|
|
|
/// Builds the WellControlResult object for the current well group hierachy.
|
|
|
|
void conditionsMet(const std::vector<double>& well_bhp,
|
|
|
|
const std::vector<double>& well_rate,
|
|
|
|
const UnstructuredGrid& grid,
|
2012-04-17 09:36:49 -05:00
|
|
|
WellControlResult& result,
|
2012-04-25 07:03:57 -05:00
|
|
|
const double epsilon=1e-8) const;
|
2012-04-12 07:25:39 -05:00
|
|
|
|
2012-03-30 03:51:31 -05:00
|
|
|
const std::vector<std::tr1::shared_ptr<WellsGroupInterface> >& getLeafNodes() const;
|
2012-04-13 03:32:36 -05:00
|
|
|
|
|
|
|
void calculateGuideRates();
|
2012-04-23 06:24:47 -05:00
|
|
|
|
|
|
|
WellsGroupInterface* findNode(std::string name);
|
|
|
|
const WellsGroupInterface* findNode(std::string name) const;
|
2012-03-29 11:34:51 -05:00
|
|
|
private:
|
|
|
|
// To account for the possibility of a forest
|
|
|
|
std::vector<std::tr1::shared_ptr<WellsGroupInterface> > roots_;
|
2012-03-30 03:51:31 -05:00
|
|
|
|
|
|
|
// This will be used to traverse the bottom nodes.
|
|
|
|
std::vector<std::tr1::shared_ptr<WellsGroupInterface> > leaf_nodes_;
|
|
|
|
|
2012-04-23 06:24:47 -05:00
|
|
|
|
2012-03-29 11:34:51 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Opm
|
|
|
|
#endif /* OPM_WELLCOLLECTION_HPP */
|
|
|
|
|