Skip to content

Commit fae562e

Browse files
fix: remove geothermal heat pump references from mock data
1 parent dd10ad6 commit fae562e

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

test/conftest.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ def mock_input_data():
110110
"technology": ["random_tech"] * 50
111111
+ [
112112
"central air-sourced heat pump",
113-
"central geothermal-sourced heat pump",
114113
"central gas boiler",
115114
"central resistive heater",
116115
"decentral air-sourced heat pump",
@@ -170,7 +169,6 @@ def mock_input_data():
170169
"EUR/MWh",
171170
"MW",
172171
"EUR/MW",
173-
"EUR/MW/year",
174172
"EUR/MWh",
175173
"MW",
176174
"EUR/MW",
@@ -186,7 +184,7 @@ def mock_input_data():
186184
+ [0.000001] * 3
187185
+ [0.001] * 3
188186
+ [1000.0]
189-
+ [1.0] * 46,
187+
+ [1.0] * 45,
190188
},
191189
).set_index(["technology"])
192190

@@ -247,7 +245,6 @@ def mock_output(source):
247245
if source == "dea":
248246
unit_list += [
249247
"EUR/MW_th",
250-
"EUR/MW_th/year",
251248
"EUR/MWh_th",
252249
"MW_th",
253250
"EUR/MW_th",
@@ -261,7 +258,6 @@ def mock_output(source):
261258
else:
262259
unit_list += [
263260
"EUR/MW",
264-
"EUR/MW/year",
265261
"EUR/MWh",
266262
"MW",
267263
"EUR/MW",
@@ -278,7 +274,6 @@ def mock_output(source):
278274
"technology": ["random_tech"] * 50
279275
+ [
280276
"central air-sourced heat pump",
281-
"central geothermal-sourced heat pump",
282277
"central gas boiler",
283278
"central resistive heater",
284279
"decentral air-sourced heat pump",
@@ -294,7 +289,7 @@ def mock_output(source):
294289
]
295290
+ [1.0] * 7
296291
+ [3.6]
297-
+ [1.0] * 45,
292+
+ [1.0] * 44,
298293
},
299294
).set_index(["technology"])
300295

0 commit comments

Comments
 (0)