-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path20250113141155_remove_external_wtp.rb
66 lines (52 loc) · 2.51 KB
/
20250113141155_remove_external_wtp.rb
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
require 'etengine/scenario_migration'
class RemoveExternalWtp < ActiveRecord::Migration[7.0]
include ETEngine::ScenarioMigration
# All relevant building stock keys that could've been set
EXTERNAL_WTP_KEYS = %w[
external_coupling_industry_chemical_refineries_p2h_wtp
external_coupling_industry_chemical_fertilizers_p2h_wtp
external_coupling_industry_chemical_other_p2h_wtp
external_coupling_industry_other_food_p2h_wtp
external_coupling_industry_other_paper_p2h_wtp
].freeze
#REGULAR_WTP_KEYS = %w[
# wtp_of_industry_chemicals_refineries_flexibility_p2h_electricity
#wtp_of_industry_chemicals_fertilizers_flexibility_p2h_electricity
#wtp_of_industry_chemicals_other_flexibility_p2h_electricity
#wtp_of_industry_other_food_flexibility_p2h_electricity
#wtp_of_industry_other_paper_flexibility_p2h_electricity
#].freeze
# Mapping of regular keys to external keys
WTP_KEYS_MAPPING = {
'wtp_of_industry_chemicals_refineries_flexibility_p2h_electricity' => 'external_coupling_industry_chemical_refineries_p2h_wtp',
'wtp_of_industry_chemicals_fertilizers_flexibility_p2h_electricity' => 'external_coupling_industry_chemical_fertilizers_p2h_wtp',
'wtp_of_industry_chemicals_other_flexibility_p2h_electricity' => 'external_coupling_industry_chemical_other_p2h_wtp',
'wtp_of_industry_other_food_flexibility_p2h_electricity' => 'external_coupling_industry_other_food_p2h_wtp',
'wtp_of_industry_other_paper_flexibility_p2h_electricity' => 'external_coupling_industry_other_paper_p2h_wtp'
}.freeze
def up
migrate_scenarios do |scenario|
# Check if one of external wtip sliders is touched, then some correction should be done to set keys
next unless EXTERNAL_WTP_KEYS.any? { |key| scenario.user_values.key?(key)}
set_regular_keys(scenario)
remove_external_keys(scenario)
end
end
def set_regular_keys(scenario)
# Obtain old default area values
WTP_KEYS_MAPPING.each do |regular_key, external_key|
# Skip if key is not set in user_values
next unless scenario.user_values.key?(external_key)
# Retrieve the value from the external key
value_to_transfer = scenario.user_values[external_key]
# Set the corresponding regular key with the retrieved value
scenario.user_values[regular_key] = value_to_transfer
end
end
def remove_external_keys(scenario)
EXTERNAL_WTP_KEYS.each do |external_key|
# Remove the external key from user_values
scenario.user_values.delete(external_key)
end
end
end