mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-18 21:43:27 -06:00
Hack to set compi for producer.
compi is set to [0 1 0] for all producers
This commit is contained in:
parent
eb19031c17
commit
d90717877b
@ -761,6 +761,11 @@ namespace Opm
|
||||
OPM_THROW(std::runtime_error, "Control mode type " << mode << " not present in well " << well_names[well_index]);
|
||||
}
|
||||
set_current_control(well_index, cpos, w_);
|
||||
|
||||
// Set well component fraction in producers to 1 for all phases. This HACK make sure volrates are nonzero for all perforations.
|
||||
double cf[3] = { 0, 1, 0};
|
||||
std::copy(cf, cf + phaseUsage.num_phases, w_->comp_frac + well_index*phaseUsage.num_phases);
|
||||
|
||||
}
|
||||
well_index++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user