adding s2s_inlets and s2s_outlets to ms well ops.

and also fix the s2p and p2s implementation.
This commit is contained in:
Kai Bao
2015-11-17 16:41:28 +01:00
parent 5b43018862
commit 55e4206c0b
2 changed files with 35 additions and 3 deletions

View File

@@ -226,6 +226,8 @@ namespace Opm {
// Eigen::SparseMatrix<double> p2w; // perf -> well (gather)
Eigen::SparseMatrix<double> s2p; // segment -> perf (scatter)
Eigen::SparseMatrix<double> p2s; // perf -> segment (gather)
Eigen::SparseMatrix<double> s2s_inlets; // segment -> its inlet segments
Eigen::SparseMatrix<double> s2s_outlet; // segment -> its outlet segment
std::vector<int> well_cells; // the set of perforated cells
V conn_trans_factors; // connection transmissibility factors
};