Fix typo in variable name.

This commit is contained in:
Atgeirr Flø Rasmussen 2015-10-15 15:40:36 +02:00 committed by Kai Bao
parent 81e9c25b10
commit 9dea3c6b57
2 changed files with 3 additions and 3 deletions

View File

@ -188,7 +188,7 @@ namespace Opm {
V well_perforation_cell_densities_; V well_perforation_cell_densities_;
ADB well_perforation_cell_densities_adb_; // TODO: NOT NEEDED 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 // the density of the fluid mixture in the segments
// which is calculated in an implicit way // which is calculated in an implicit way

View File

@ -456,7 +456,7 @@ namespace Opm {
// TODO // TODO
well_perforations_segment_pressure_diffs_ = ADB::constant(V::Zero(xw.numPerforations())); well_perforations_segment_pressure_diffs_ = ADB::constant(V::Zero(xw.numPerforations()));
well_perforation_pressure_cell_diffs_ = 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 #if 0
std::cout << " avg_press " << std::endl; std::cout << " avg_press " << std::endl;
std::cout << avg_press << std::endl; std::cout << avg_press << std::endl;
@ -638,7 +638,7 @@ namespace Opm {
{ {
// get H_nc // get H_nc
const ADB& h_nc = subset(well_perforations_segment_pressure_diffs_, Span(nperf, 1, start_perforation)); 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); // V seg_pressures_perf = V::Zero(nperf);
// for (int i = 0; i < nseg; ++i) { // for (int i = 0; i < nseg; ++i) {