Add temperature to SingleWellState

This commit is contained in:
Joakim Hove
2021-08-03 21:25:03 +02:00
parent 1dd9b91ad3
commit d5ab308fbd
7 changed files with 13 additions and 21 deletions

View File

@@ -25,14 +25,13 @@ namespace Opm {
class SingleWellState {
public:
explicit SingleWellState(bool is_producer);
SingleWellState(bool is_producer, double temp);
bool producer;
double bhp{0};
double thp{0};
double temperature{};
void init_timestep(const SingleWellState& other);
void shut();