FaultCollection.hpp
Go to the documentation of this file.
1 /*
2  Copyright 2014 Statoil ASA.
3 
4  This file is part of the Open Porous Media project (OPM).
5 
6  OPM is free software: you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
10 
11  OPM is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with OPM. If not, see <http://www.gnu.org/licenses/>.
18 */
19 #ifndef FAULT_COLLECTION_HPP_
20 #define FAULT_COLLECTION_HPP_
21 
22 #include <cstddef>
23 #include <string>
24 #include <memory>
25 #include <map>
26 
27 
29 
31 
36 
37 namespace Opm {
38 
39 
41 public:
43  FaultCollection( std::shared_ptr<const Deck> deck, std::shared_ptr<const EclipseGrid> grid);
44 
45  size_t size() const;
46  bool hasFault(const std::string& faultName) const;
47  std::shared_ptr<Fault> getFault(const std::string& faultName) const;
48  std::shared_ptr<Fault> getFault(size_t faultIndex) const;
49  void addFault(std::shared_ptr<Fault> fault);
50  void setTransMult(const std::string& faultName , double transMult);
51 
52 private:
54 };
55 }
56 
57 
58 #endif
bool hasFault(const std::string &faultName) const
void addFault(std::shared_ptr< Fault > fault)
Definition: Deck.hpp:29
size_t size() const
Definition: OrderedMap.hpp:32
Definition: FaultCollection.hpp:40
void setTransMult(const std::string &faultName, double transMult)
std::shared_ptr< Fault > getFault(const std::string &faultName) const