-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathinjectionwell.cpp
More file actions
128 lines (99 loc) · 4.16 KB
/
injectionwell.cpp
File metadata and controls
128 lines (99 loc) · 4.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
* This file is part of the ResOpt project.
*
* Copyright (C) 2011-2012 Aleksander O. Juell <aleksander.juell@ntnu.no>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "injectionwell.h"
#include "intvariable.h"
#include "cost.h"
#include "wellconnection.h"
#include "wellconnectionvariable.h"
#include "wellcontrol.h"
namespace ResOpt
{
InjectionWell::InjectionWell()
{
}
InjectionWell::InjectionWell(const InjectionWell &w)
: Well(w)
{
}
InjectionWell::~InjectionWell()
{
}
//-----------------------------------------------------------------------------------------------
// generates a description for driver file
//-----------------------------------------------------------------------------------------------
QString InjectionWell::description() const
{
QString str("START WELL\n");
str.append(" NAME " + name() + "\n");
str.append(" TYPE I \n");
str.append(" GROUP " + group() + "\n");
str.append(" BHPLIMIT " + QString::number(bhpLimit()) + "\n");
str.append(" BHPINJ ");
if(bhpInj() == WellControl::QWAT) str.append("WATER\n");
else if(bhpInj() == WellControl::QOIL) str.append("OIL\n");
else if(bhpInj() == WellControl::QGAS) str.append("GAS\n");
if(hasInstallTime())
{
str.append(" INSTALLTIME " + QString::number(installTime()->value()) + " " + QString::number(installTime()->max()) + " " + QString::number(installTime()->min()) + "\n");
}
if(hasCost())
{
str.append(" COST " + QString::number(cost()->constantCost()) + " " + QString::number(cost()->fractionCost()) + " " + QString::number(cost()->capacityCost()) + "\n");
}
if(numberOfConstantConnections() > 0)
{
str.append(" START CONNECTIONS\n");
for(int i = 0; i < numberOfConnections(); ++i)
{
WellConnection *wc = constantConnection(i);
if(wc->cell() >= 0) str.append(" " + QString::number(wc->cell()) + " " + QString::number(wc->wellIndex()) + "\n");
else str.append(" " + QString::number(wc->i()) + " " +
QString::number(wc->j()) + " " +
QString::number(wc->k1()) + " " +
QString::number(wc->k2()) + " " +
QString::number(wc->wellIndex()) + "\n");
}
str.append(" END CONNECTIONS\n\n");
}
if(numberOfVariableConnections() > 0)
{
str.append(" START VARCONNECTIONS\n");
for(int i = 0; i < numberOfVariableConnections(); ++i)
{
WellConnectionVariable *wcv = variableConnection(i);
str.append(" " + QString::number(wcv->iVariable()->value()) + " " +
QString::number(wcv->iVariable()->max()) + " " +
QString::number(wcv->iVariable()->min()) + " " +
QString::number(wcv->jVariable()->value()) + " " +
QString::number(wcv->jVariable()->max()) + " " +
QString::number(wcv->jVariable()->min()) + " " +
QString::number(wcv->wellConnection()->k1()) + " " +
QString::number(wcv->wellConnection()->k2()) + " " +
QString::number(wcv->wellConnection()->wellIndex()) + "\n");
}
str.append(" END VARCONNECTIONS\n");
}
str.append(" START SCHEDULE\n");
for(int i = 0; i < numberOfControls(); ++i) str.append(control(i)->description());
str.append(" END SCHEDULE\n\n");
str.append("END WELL\n\n");
return str;
}
} // namespace ResOpt