mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Fix typo in variable name.
This commit is contained in:
parent
81e9c25b10
commit
9dea3c6b57
@ -188,7 +188,7 @@ namespace Opm {
|
||||
V well_perforation_cell_densities_;
|
||||
ADB well_perforation_cell_densities_adb_; // TODO: NOT NEEDED
|
||||
|
||||
V well_perforatoin_cell_pressure_diffs_;
|
||||
V well_perforation_cell_pressure_diffs_;
|
||||
|
||||
// the density of the fluid mixture in the segments
|
||||
// which is calculated in an implicit way
|
||||
|
@ -456,7 +456,7 @@ namespace Opm {
|
||||
// TODO
|
||||
well_perforations_segment_pressure_diffs_ = ADB::constant(V::Zero(xw.numPerforations()));
|
||||
well_perforation_pressure_cell_diffs_ = V::Zero(xw.numPerforations());
|
||||
well_perforatoin_cell_pressure_diffs_ = V::Zero(xw.numPerforations());
|
||||
well_perforation_cell_pressure_diffs_ = V::Zero(xw.numPerforations());
|
||||
#if 0
|
||||
std::cout << " avg_press " << std::endl;
|
||||
std::cout << avg_press << std::endl;
|
||||
@ -638,7 +638,7 @@ namespace Opm {
|
||||
{
|
||||
// get H_nc
|
||||
const ADB& h_nc = subset(well_perforations_segment_pressure_diffs_, Span(nperf, 1, start_perforation));
|
||||
const V& h_cj = subset(well_perforatoin_cell_pressure_diffs_, Span(nperf, 1, start_perforation));
|
||||
const V& h_cj = subset(well_perforation_cell_pressure_diffs_, Span(nperf, 1, start_perforation));
|
||||
|
||||
// V seg_pressures_perf = V::Zero(nperf);
|
||||
// for (int i = 0; i < nseg; ++i) {
|
||||
|
Loading…
Reference in New Issue
Block a user