-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduction.i
305 lines (292 loc) · 7 KB
/
production.i
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
[Mesh]
type = FileMesh
file = pro.msh
[]
[UserObjects]
[./viscosity]
type = MoskitoViscosityWaterSmith
[../]
[./eos]
type = MoskitoEOS1P_Brine
[../]
[]
[Materials]
[./l0_430]
type = MoskitoFluidWell_1p1c
pressure = p
temperature = T
flowrate = q
well_direction = z
well_type = 1
eos_uo = eos
viscosity_uo = viscosity
well_diameter = 0.244475
roughness_type = rough
roughness = 1e-04
gravity = '0 0 -9.8'
# block = l0_430
# outputs = exodus
[../]
[./lat-5000-4950]
type = MoskitoLatHeat_Inc_Formation_1p
temperature_inner = T
outer_diameters = '0.244475 0.274475 0.346075 0.376075 0.473075 0.503075 0.5588'
conductivities = '43.75 0.01 43.75 0.7 43.75 0.7'
formation_density = 2500
formation_heat_capacity = 1000
formation_temperature_function = grad_func
convective_thermal_resistance = true
nondimensional_time_function = Hasan_Kabir_2012
# outputs = exodus
block = '5000_4950'
formation_thermal_conductivity = 2.8
[../]
[./lat-4950-3000]
type = MoskitoLatHeat_Inc_Formation_1p
temperature_inner = T
outer_diameters = '0.244475 0.274475 0.346075 0.376075 0.4318'
conductivities = '43.75 0.01 43.75 0.7'
formation_density = 2500
formation_heat_capacity = 1000
formation_temperature_function = grad_func
convective_thermal_resistance = true
nondimensional_time_function = Hasan_Kabir_2012
# outputs = exodus
block = '4950_3000'
formation_thermal_conductivity = 2.8
[../]
[./lat-3000-200]
type = MoskitoLatHeat_Inc_Formation_1p
temperature_inner = T
outer_diameters = '0.244475 0.274475 0.31115'
conductivities = '43.75 0.01'
formation_density = 2500
formation_heat_capacity = 1000
formation_temperature_function = grad_func
convective_thermal_resistance = true
nondimensional_time_function = Hasan_Kabir_2012
# outputs = exodus
block = '3000_200'
formation_thermal_conductivity = 2.8
[../]
[./lat-200-0]
type = MoskitoLatHeat_Inc_Formation_1p
temperature_inner = T
outer_diameters = '0.244475 0.245475'
conductivities = '2.8'
formation_density = 2500
formation_heat_capacity = 1000
formation_temperature_function = grad_func
convective_thermal_resistance = true
nondimensional_time_function = Hasan_Kabir_2012
# outputs = exodus
block = '200_0'
formation_thermal_conductivity = 2.8
[../]
[]
[Functions]
[./dts]
type = PiecewiseLinear
x = '0 10000 315360 31536000 630720000'
y = '1000.0 1000.0 86400 3153600 1000000'
#x = '0 7200 72000.0 943000 315360000 3153600000'
#y = '1000 1000.0 1000.0 360000 3600000 3600000'
[../]
[./conc]
type = ParsedFunction
expression = 'if(t>16000 & t<73000, 1.72, 0.25)'
# value = 0.4
[../]
[./grad_func]
type = ParsedFunction
expression ='283.5 - (z-4950) * 0.03'
[../]
[./conductivity_gradient]
type = ParsedFunction
expression ='1.5 - (z-4950) * 0.00075'
[../]
[]
[BCs]
# [./pleft]
# type = DirichletBC
# variable = p
# boundary = outlet
# value = 34000000
# [../]
# [./qleft]
# type = FunctionDirichletBC
# variable = q
# boundary = outlet
# function = '0.008'
# [../]
# [./tleft]
# type = DirichletBC
# variable = T
# boundary = outlet
# value = 305.0
# [../]
[./pleft]
type = PostprocessorDirichletBC
variable = p
boundary = inlet
postprocessor = P_receiver3
[../]
[./qleft]
type = PostprocessorDirichletBC
variable = q
boundary = inlet
postprocessor = Q_receiver3
[../]
[./tleft]
type = PostprocessorDirichletBC
variable = T
boundary = inlet
postprocessor = T_receiver3
[../]
[]
[Variables]
[./T]
[./InitialCondition]
type = FunctionIC
function = '283.5 - (z-4950) * 0.03'
variable = T
[../]
[../]
[./p]
[./InitialCondition]
type = FunctionIC
function = '24000000 -10000 * (z-4950)'
variable = p
[../]
[../]
[./q]
initial_condition = 0.045
[../]
[]
[Kernels]
[./Tkernel]
type = MoskitoEnergy_1p1c
variable = T
flowrate = q
pressure = p
#block = 'right_vertical_up right_vertical_bet right_vertical_down horizontal left_vertical'
gravity_energy = false
[../]
[./Ttkernel]
type = MoskitoTimeEnergy_1p1c
variable = T
flowrate = q
pressure = p
#block = 'right_vertical_up right_vertical_bet right_vertical_down horizontal left_vertical'
[../]
[./pkernel]
type = MoskitoMass_1p1c
variable = p
flowrate = q
temperature = T
#block = 'right_vertical_up right_vertical_bet right_vertical_down horizontal left_vertical'
[../]
[./ptkernel]
type = MoskitoTimeMass_1p1c
variable = p
temperature = T
#block = 'right_vertical_up right_vertical_bet right_vertical_down horizontal left_vertical'
[../]
[./qkernel]
type = MoskitoMomentum_1p1c
variable = q
pressure = p
temperature = T
#block = 'right_vertical_up right_vertical_bet right_vertical_down horizontal left_vertical'
[../]
[./qtkernel]
type = MoskitoTimeMomentum_1p1c
variable = q
pressure = p
temperature = T
#block = 'right_vertical_up right_vertical_bet right_vertical_down horizontal left_vertical'
[../]
[./heat]
type = MoskitoLatHeatIncFormation_1p
variable = T
#block = 'right_vertical_up right_vertical_bet right_vertical_down horizontal left_vertical'
[../]
[]
[AuxVariables]
[./HeatFlux]
family = MONOMIAL
[../]
[]
[Preconditioning]
active = pn1
[./p1]
type = SMP
full = true
petsc_options_iname = '-pc_type -sub_pc_type -sub_pc_factor_shift_type'
petsc_options_value = ' bjacobi ilu NONZERO '
[../]
[./pn1]
type = SMP
full = true
petsc_options_iname = '-pc_type -sub_pc_type -sub_pc_factor_shift_type -snes_type -snes_linesearch_type'
petsc_options_value = ' bjacobi ilu NONZERO newtonls basic '
[../]
[]
[Executioner]
type = Transient
start_time = 0
end_time = 1576800
l_max_its = 100
solve_type = NEWTON
steady_state_detection = false
nl_abs_tol = 1e-6
[./TimeStepper]
type = FunctionDT
function = dts
[../]
[]
# [Outputs]
# exodus = true
# print_linear_residuals = true
# []
[Outputs]
# execute_on = 'timestep_end'
file_base = production_out
exodus = true
csv = true
[]
[Postprocessors]
[./P_receiver3]
type = Receiver
# execute_on = NONLINEAR
outputs = console
[../]
[./T_receiver3]
type = Receiver
# execute_on = NONLINEAR
outputs = console
[../]
[./Q_receiver3]
type = Receiver
# execute_on = NONLINEAR
outputs = console
[../]
[belphip]
type = PointValue
variable = p
point = '500 0 4950'
outputs = 'csv'
[]
[belphit]
type = PointValue
variable = T
point = '500 0 4950'
outputs = 'csv'
[]
[belphiq]
type = PointValue
variable = q
point = '500 0 4950'
outputs = 'csv'
[]
[]