Add sat table id to well struct

This commit is contained in:
Tor Harald Sandve
2017-04-06 13:52:27 +02:00
parent 05a616f483
commit ef78f01715
+2 -1
View File
@@ -324,10 +324,11 @@ try
for (int i = 0; i < num_wells; ++i) {
const int well_cells = i*nx;
const double well_index = 1;
const int sat_table_id = -1;
std::stringstream well_name;
well_name << "well" << i;
bool allowCrossFlow = true;
add_well(PRODUCER, 0, 1, NULL, &well_cells, &well_index,
add_well(PRODUCER, 0, 1, NULL, &well_cells, &well_index, &sat_table_id,
well_name.str().c_str(), allowCrossFlow, wells);
}
/// \internal[well cells]