-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.i
254 lines (241 loc) · 5.43 KB
/
1.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
[Mesh]
type = FileMesh
file = 1.msh
[]
[FluidProperties]
[co2]
type = CO2FluidProperties
[]
[]
[UserObjects]
[./eos]
#type = MoskitoEOS1P_Brine
type = MoskitoEOS1P_FPModule
fp = co2
[../]
[./viscosity]
#type = MoskitoViscosityWaterVogel
type = MoskitoEOS1P_FPVIS
fp = co2
[../]
[]
[Materials]
[./injection_vertical]
type = MoskitoFluidWell_1p1c
pressure = p
temperature = T
flowrate = q
well_direction = -z
well_type = 1
eos_uo = eos
viscosity_uo = viscosity
well_diameter = 0.1429
roughness_type = rough
roughness = 0.0001
gravity = '0 0 -9.8'
[../]
[./injection_vertical_lat]
type = MoskitoLatHeat_Inc_Formation_1p
temperature_inner = T
outer_diameters = '0.1429 0.1778 0.2168'
conductivities = '43.75 0.7'
formation_density = 2200.0
formation_heat_capacity = 850.0
formation_temperature_function = grad_func
convective_thermal_resistance = true
nondimensional_time_function = Hasan_Kabir_2012
formation_thermal_conductivity = 2.0
[../]
[]
[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 ='300.0 - z * 0.029'
[../]
[./conductivity_gradient]
type = ParsedFunction
expression ='1.5 - z * 0.00075'
[../]
# [./csv_data]
# type = MoskitoConstant
# data_file = pc.csv
# direction = RIGHT
# format = columns
# execute_on = TIMESTEP_BEGIN
# [../]
# [./csv_datat]
# type = MoskitoConstant
# data_file = tc.csv
# direction = RIGHT_INCLUSIVE
# format = columns
# execute_on = TIMESTEP_BEGIN
# [../]
# [./csv_dataq]
# type = MoskitoConstant
# data_file = qc.csv
# direction = RIGHT_INCLUSIVE
# format = columns
# execute_on = TIMESTEP_BEGIN
# [../]
[]
[BCs]
[./pleft]
type = FunctionDirichletBC
variable = p
boundary = inlet
# function = csv_data
function = '10000000.0'
[../]
[./qleft]
type = FunctionDirichletBC
variable = q
boundary = inlet
# function = csv_dataq
function = '0.001'
[../]
[./tleft]
type = FunctionDirichletBC
variable = T
boundary = inlet
# function = csv_datat
function = '300.0'
[../]
[]
[Variables]
[./T]
[./InitialCondition]
type = FunctionIC
function = '300.0 - z * 0.029'
variable = T
[../]
[../]
[./p]
[./InitialCondition]
type = FunctionIC
function = '12000000 -10000 * z'
variable = p
[../]
[../]
[./q]
initial_condition = 0.001
[../]
[]
[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 = 630720000
l_max_its = 100
# nl_abs_tol = 1e-7
solve_type = NEWTON
steady_state_detection = false
[./TimeStepper]
type = FunctionDT
function = dts
[../]
[]
[Outputs]
file_base = 1_out
exodus = true
csv = true
[]
# [Postprocessors]
# [belphip]
# type = PointValue
# variable = p
# point = '-50 0 0'
# outputs = 'csv'
# []
# [belphit]
# type = PointValue
# variable = T
# point = '-50 0 0'
# outputs = 'csv'
# []
# [belphiq]
# type = PointValue
# variable = q
# point = '-50 0 0'
# outputs = 'csv'
# []
# []