Quick Start

Running a SAP10 calculation

This example takes a SAP10 XML input file and runs a SAP10 calculation.

import sap10calcs
result = sap10calcs.calculate(
    input_file = 'my_sap10_file.xml',
    auth_token = None
)

This uses the sap10calcs.calculate function:

  • input_file is an SAP10 XML file provided by the user and stored on the local computer.

  • auth_token is an authorization token for the remote API service provided by the user (see here for details).

  • result is a Python dictionary which contains the final SAP calculated values (such as energy consumption and the SAP rating), the intermediate calculations and any error messages.

We can now query the result dictionary to see the results of the SAP calculation.

output_dict = result['sap_calculation_output_dict']
print('SAP rating:', output_dict['value_258'])
print('SAP band:', output_dict['sap_band'])
# SAP rating: 75
# SAP band: C

So this has demonstrated how to run a SAP10 calculation. Below are further details of what the input and output files look like.

An example SAP10 input file

An example of a complete SAP10 XML input file is:

<?xml version='1.0' encoding='UTF-8'?>
<SAP-Report xmlns="https://epbr.digital.communities.gov.uk/xsd/sap">
<Schema-Version-Original>SAP-Schema-19.1.0</Schema-Version-Original>
<SAP-Version>10.2</SAP-Version>
<Report-Header>
    <Property>
    <Address>
        <Postcode>LE11 3TU</Postcode>
    </Address>
    </Property>
</Report-Header>
<SAP10-Data>
    <Data-Type>1</Data-Type>
    <SAP-Property-Details>
    <Cold-Water-Source>1</Cold-Water-Source>
    <Living-Area>30</Living-Area>
    <Windows-Overshading>2</Windows-Overshading>
    <SAP-Building-Parts>
        <SAP-Building-Part>
        <Building-Part-Number>1</Building-Part-Number>
        <SAP-Floor-Dimensions>
            <SAP-Floor-Dimension>
            <Floor-Type>2</Floor-Type>
            <Storey>0</Storey>
            <Total-Floor-Area>100</Total-Floor-Area>
            <Storey-Height>3</Storey-Height>
            <Heat-Loss-Area>100</Heat-Loss-Area>
            <U-Value>0.5</U-Value>
            </SAP-Floor-Dimension>
        </SAP-Floor-Dimensions>
        <SAP-Walls>
            <SAP-Wall>
            <Wall-Type>2</Wall-Type>
            <Total-Wall-Area>120</Total-Wall-Area>
            <U-Value>0.5</U-Value>
            <Name>sap_wall_1_1</Name>
            </SAP-Wall>
        </SAP-Walls>
        <SAP-Roofs>
            <SAP-Roof>
            <Total-Roof-Area>100</Total-Roof-Area>
            <U-Value>0.5</U-Value>
            <Roof-Type>2</Roof-Type>
            <Name>sap_roof_1_1</Name>
            </SAP-Roof>
        </SAP-Roofs>
        <SAP-Openings>
            <SAP-Opening>
            <Type>sap_opening_type_1</Type>
            <Height>1.5</Height>
            <Width>5</Width>
            <Location>sap_wall_1_1</Location>
            <Orientation>5</Orientation>
            </SAP-Opening>
        </SAP-Openings>
        <SAP-Thermal-Bridges>
            <Thermal-Bridge-Code>1</Thermal-Bridge-Code>
        </SAP-Thermal-Bridges>
        </SAP-Building-Part>
    </SAP-Building-Parts>
    <SAP-Opening-Types>
        <SAP-Opening-Type>
        <Name>sap_opening_type_1</Name>
        <Type>4</Type>
        <Data-Source>2</Data-Source>
        <U-Value>1.5</U-Value>
        <Glazing-Type>3</Glazing-Type>
        </SAP-Opening-Type>
    </SAP-Opening-Types>
    <SAP-Heating>
        <Has-Hot-Water-Cylinder>0</Has-Hot-Water-Cylinder>
        <Thermal-Store>1</Thermal-Store>
        <Secondary-Heating-Category>1</Secondary-Heating-Category>
        <Water-Heating-Code>901</Water-Heating-Code>
        <Main-Heating-Details>
        <Main-Heating>
            <Main-Heating-Number>1</Main-Heating-Number>
            <Main-Fuel-Type>1</Main-Fuel-Type>
            <Main-Heating-Category>2</Main-Heating-Category>
            <Main-Heating-Data-Source>3</Main-Heating-Data-Source>
            <Main-Heating-Code>104</Main-Heating-Code>
            <Is-Central-Heating-Pump-In-Heated-Space>1</Is-Central-Heating-Pump-In-Heated-Space>
            <Main-Heating-Fraction>1</Main-Heating-Fraction>
            <Heat-Emitter-Type>1</Heat-Emitter-Type>
            <Main-Heating-Control>2106</Main-Heating-Control>
            <Has-Separate-Delayed-Start>0</Has-Separate-Delayed-Start>
            <Is-Interlocked-System>0</Is-Interlocked-System>
        </Main-Heating>
        </Main-Heating-Details>
    </SAP-Heating>
    <SAP-Ventilation>
        <Open-Chimneys-Count>0</Open-Chimneys-Count>
        <Open-Flues-Count>0</Open-Flues-Count>
        <Closed-Flues-Count>0</Closed-Flues-Count>
        <Boilers-Flues-Count>0</Boilers-Flues-Count>
        <Other-Flues-Count>0</Other-Flues-Count>
        <Blocked-Chimneys-Count>0</Blocked-Chimneys-Count>
        <Extract-Fans-Count>0</Extract-Fans-Count>
        <PSV-Count>0</PSV-Count>
        <Flueless-Gas-Fires-Count>0</Flueless-Gas-Fires-Count>
        <Pressure-Test>2</Pressure-Test>
        <Air-Permeability>3.5</Air-Permeability>
        <Sheltered-Sides-Count>2</Sheltered-Sides-Count>
        <Ventilation-Type>1</Ventilation-Type>
    </SAP-Ventilation>
    <SAP-Energy-Source>
        <Electricity-Tariff>1</Electricity-Tariff>
    </SAP-Energy-Source>
    </SAP-Property-Details>
</SAP10-Data>
</SAP-Report>

An example SAP10 output dictionary

An example of the result dictionary, i.e. the returned value of the sap10calcs.calculate() function, is:

{
   "api_call_datetime": "2025-09-03T20:26:50.262061",
   "api_call_url": "https://netzeroapis.com/calc/sap10?calculation_type=Energy%20rating",
   "api_call_filename": "file",
   "api_call_server_time_seconds": 0.026097947033122182,
   "licenses": [
      "https://netzeroapis.com/terms_and_conditions",
      "https://creativecommons.org/publicdomain/zero/1.0/"
   ],
   "api_call_overwrite": null,
   "api_call_addition": null,
   "api_call_break_point": null,
   "sap_calculation_output_dict": {
      "calculation_type": "Energy rating",
      "region_code": 0,
      "postcode": null,
      "postcode_area": null,
      "postcode_district": null,
      "latitude": 53.5,
      "pcdb_fuel_price_table_name": null,
      "main_heating_1_fghrs_index_number": null,
      "value_1_building_part_1_level_0": 100.0,
      "value_2_building_part_1_level_0": 3.0,
      "value_3_level_0": 300.0,
      "value_4": 100.0,
      "value_5": 300.0,
      "value_6a_total": 0,
      "value_6a": 0.0,
      "value_6b_total": 0,
      "value_6b": 0.0,
      "value_6c_total": 0,
      "value_6c": 0.0,
      "value_6d_total": 0,
      "value_6d": 0.0,
      "value_6e_total": 0,
      "value_6e": 0.0,
      "value_6f_total": 0,
      "value_6f": 0.0,
      "value_7a_total": 0,
      "value_7a": 0.0,
      "value_7b_total": 0,
      "value_7b": 0.0,
      "value_7c_total": 0,
      "value_7c": 0.0,
      "total_value_6a_7c": 0.0,
      "value_8": 0.0,
      "has_pressure_test_been_carried_out_or_is_intended": true,
      "value_9": null,
      "value_10": null,
      "value_11": null,
      "value_12": null,
      "value_13": null,
      "value_14": null,
      "value_15": null,
      "value_16": null,
      "value_17": 3.5,
      "value_17a": null,
      "value_18": 0.175,
      "value_19": 2,
      "value_20": 0.85,
      "value_21": 0.14875,
      "value_22_1": 5.1,
      "value_22_2": 5,
      "value_22_3": 4.9,
      "value_22_4": 4.4,
      "value_22_5": 4.3,
      "value_22_6": 3.8,
      "value_22_7": 3.8,
      "value_22_8": 3.7,
      "value_22_9": 4,
      "value_22_10": 4.3,
      "value_22_11": 4.5,
      "value_22_12": 4.7,
      "value_22a_1": 1.275,
      "value_22a_2": 1.25,
      "value_22a_3": 1.225,
      "value_22a_4": 1.1,
      "value_22a_5": 1.075,
      "value_22a_6": 0.95,
      "value_22a_7": 0.95,
      "value_22a_8": 0.925,
      "value_22a_9": 1.0,
      "value_22a_10": 1.075,
      "value_22a_11": 1.125,
      "value_22a_12": 1.175,
      "value_22b_1": 0.18965624999999997,
      "value_22b_2": 0.18593749999999998,
      "value_22b_3": 0.18221875,
      "value_22b_4": 0.163625,
      "value_22b_5": 0.15990625,
      "value_22b_6": 0.14131249999999998,
      "value_22b_7": 0.14131249999999998,
      "value_22b_8": 0.13759375,
      "value_22b_9": 0.14875,
      "value_22b_10": 0.15990625,
      "value_22b_11": 0.16734374999999999,
      "value_22b_12": 0.17478125,
      "value_23a": null,
      "value_23b": null,
      "mhvr_heat_exchanger_efficiency": null,
      "mhvr_in_use_factor": null,
      "value_23c": null,
      "value_24a_1": null,
      "value_24a_2": null,
      "value_24a_3": null,
      "value_24a_4": null,
      "value_24a_5": null,
      "value_24a_6": null,
      "value_24a_7": null,
      "value_24a_8": null,
      "value_24a_9": null,
      "value_24a_10": null,
      "value_24a_11": null,
      "value_24a_12": null,
      "value_24b_1": null,
      "value_24b_2": null,
      "value_24b_3": null,
      "value_24b_4": null,
      "value_24b_5": null,
      "value_24b_6": null,
      "value_24b_7": null,
      "value_24b_8": null,
      "value_24b_9": null,
      "value_24b_10": null,
      "value_24b_11": null,
      "value_24b_12": null,
      "value_24c_1": null,
      "value_24c_2": null,
      "value_24c_3": null,
      "value_24c_4": null,
      "value_24c_5": null,
      "value_24c_6": null,
      "value_24c_7": null,
      "value_24c_8": null,
      "value_24c_9": null,
      "value_24c_10": null,
      "value_24c_11": null,
      "value_24c_12": null,
      "value_24d_1": 0.5179847465820312,
      "value_24d_2": 0.517286376953125,
      "value_24d_3": 0.5166018364257813,
      "value_24d_4": 0.5133865703125,
      "value_24d_5": 0.5127850043945312,
      "value_24d_6": 0.509984611328125,
      "value_24d_7": 0.509984611328125,
      "value_24d_8": 0.5094660200195312,
      "value_24d_9": 0.51106328125,
      "value_24d_10": 0.5127850043945312,
      "value_24d_11": 0.5140019653320312,
      "value_24d_12": 0.5152742426757813,
      "value_25_1": 0.5179847465820312,
      "value_25_2": 0.517286376953125,
      "value_25_3": 0.5166018364257813,
      "value_25_4": 0.5133865703125,
      "value_25_5": 0.5127850043945312,
      "value_25_6": 0.509984611328125,
      "value_25_7": 0.509984611328125,
      "value_25_8": 0.5094660200195312,
      "value_25_9": 0.51106328125,
      "value_25_10": 0.5127850043945312,
      "value_25_11": 0.5140019653320312,
      "value_25_12": 0.5152742426757813,
      "value_26_net_area": null,
      "value_26_u_value_description": null,
      "value_26_UA": null,
      "value_26a_net_area": null,
      "value_26a_u_value_description": null,
      "value_26a_UA": null,
      "window_1_net_area": 7.5,
      "window_1_u_value": 1.4150943396226414,
      "value_27_net_area": 7.5,
      "value_27_u_value_description": "1.42",
      "value_27_UA": 10.61320754716981,
      "value_27a_net_area": null,
      "value_27a_u_value_description": null,
      "value_27a_UA": null,
      "value_28_net_area": null,
      "value_28_u_value_description": null,
      "value_28_UA": null,
      "value_28_k_value_description": null,
      "value_28_Ak": null,
      "ground_floor_1_net_area": 100.0,
      "ground_floor_1_u_value": 0.5,
      "value_28a_net_area": 100.0,
      "value_28a_u_value_description": "0.50",
      "value_28a_UA": 50.0,
      "ground_floor_1_kappa_value": null,
      "value_28a_k_value_description": null,
      "value_28a_Ak": null,
      "value_28b_net_area": null,
      "value_28b_u_value_description": null,
      "value_28b_UA": null,
      "value_28b_k_value_description": null,
      "value_28b_Ak": null,
      "value_29_gross_area": null,
      "value_29_openings_area": null,
      "value_29_net_area": null,
      "value_29_u_value_description": null,
      "value_29_UA": null,
      "value_29_k_value_description": null,
      "value_29_Ak": null,
      "external_wall_1_gross_area": 120.0,
      "external_wall_1_openings_area": 7.5,
      "external_wall_1_net_area": 112.5,
      "external_wall_1_u_value": 0.5,
      "value_29a_gross_area": 120.0,
      "value_29a_openings_area": 7.5,
      "value_29a_net_area": 112.5,
      "value_29a_u_value_description": "0.50",
      "value_29a_UA": 56.25,
      "external_wall_1_kappa_value": null,
      "value_29a_k_value_description": null,
      "value_29a_Ak": null,
      "roof_1_gross_area": 100.0,
      "roof_1_openings_area": 0,
      "roof_1_net_area": 100.0,
      "roof_1_u_value": 0.5,
      "value_30_gross_area": 100.0,
      "value_30_openings_area": null,
      "value_30_net_area": 100.0,
      "value_30_u_value_description": "0.50",
      "value_30_UA": 50.0,
      "roof_1_kappa_value": null,
      "value_30_k_value_description": null,
      "value_30_Ak": null,
      "value_31": 320.0,
      "value_32_net_area": null,
      "value_32_u_value_description": null,
      "value_32_UA": null,
      "value_32_k_value_description": null,
      "value_32_Ak": null,
      "value_32a_net_area": null,
      "value_32a_k_value_description": null,
      "value_32a_Ak": null,
      "value_32b_net_area": null,
      "value_32b_k_value_description": null,
      "value_32b_Ak": null,
      "value_32c_net_area": null,
      "value_32c_k_value_description": null,
      "value_32c_Ak": null,
      "value_32d_net_area": null,
      "value_32d_k_value_description": null,
      "value_32d_Ak": null,
      "value_32e_net_area": null,
      "value_32e_k_value_description": null,
      "value_32e_Ak": null,
      "value_33": 166.8632075471698,
      "value_34": 0,
      "value_35": 0.0,
      "linear_thermal_bridge_loss_building_part_1": 64.0,
      "value_36": 64.0,
      "value_36a": 0,
      "value_37": 230.8632075471698,
      "value_38_1": 51.280489911621096,
      "value_38_2": 51.21135131835938,
      "value_38_3": 51.14358180615235,
      "value_38_4": 50.8252704609375,
      "value_38_5": 50.765715435058596,
      "value_38_6": 50.48847652148438,
      "value_38_7": 50.48847652148438,
      "value_38_8": 50.437135981933594,
      "value_38_9": 50.59526484375,
      "value_38_10": 50.765715435058596,
      "value_38_11": 50.886194567871094,
      "value_38_12": 51.01215002490235,
      "value_39_1": 282.1436974587909,
      "value_39_2": 282.0745588655292,
      "value_39_3": 282.0067893533221,
      "value_39_4": 281.68847800810727,
      "value_39_5": 281.6289229822284,
      "value_39_6": 281.35168406865415,
      "value_39_7": 281.35168406865415,
      "value_39_8": 281.3003435291034,
      "value_39_9": 281.4584723909198,
      "value_39_10": 281.6289229822284,
      "value_39_11": 281.7494021150409,
      "value_39_12": 281.8753575720721,
      "value_39": 281.6881927828876,
      "value_40_1": 2.821436974587909,
      "value_40_2": 2.8207455886552917,
      "value_40_3": 2.820067893533221,
      "value_40_4": 2.8168847800810726,
      "value_40_5": 2.816289229822284,
      "value_40_6": 2.8135168406865416,
      "value_40_7": 2.8135168406865416,
      "value_40_8": 2.8130034352910336,
      "value_40_9": 2.814584723909198,
      "value_40_10": 2.816289229822284,
      "value_40_11": 2.817494021150409,
      "value_40_12": 2.8187535757207214,
      "value_40": 2.8168819278288755,
      "value_41_1": 31,
      "value_41_2": 28,
      "value_41_3": 31,
      "value_41_4": 30,
      "value_41_5": 31,
      "value_41_6": 30,
      "value_41_7": 31,
      "value_41_8": 31,
      "value_41_9": 30,
      "value_41_10": 31,
      "value_41_11": 30,
      "value_41_12": 31,
      "value_42": 2.739525875076067,
      "is_new_dwelling": true,
      "are_baths_present": false,
      "number_of_showers_per_day": 0,
      "cold_water_temperature_1": 8.0,
      "cold_water_temperature_2": 8.2,
      "cold_water_temperature_3": 9.3,
      "cold_water_temperature_4": 12.7,
      "cold_water_temperature_5": 14.6,
      "cold_water_temperature_6": 16.7,
      "cold_water_temperature_7": 18.4,
      "cold_water_temperature_8": 17.6,
      "cold_water_temperature_9": 16.6,
      "cold_water_temperature_10": 14.3,
      "cold_water_temperature_11": 11.1,
      "cold_water_temperature_12": 8.5,
      "value_42a_1": 0,
      "value_42a_2": 0,
      "value_42a_3": 0,
      "value_42a_4": 0,
      "value_42a_5": 0,
      "value_42a_6": 0,
      "value_42a_7": 0,
      "value_42a_8": 0,
      "value_42a_9": 0,
      "value_42a_10": 0,
      "value_42a_11": 0,
      "value_42a_12": 0,
      "annual_average_daily_hot_water_use_for_mixer_showers": 0.0,
      "are_showers_present": false,
      "average_number_of_baths_per_day": 1.4588340562766233,
      "is_dwelling_designed_to_achieve_a_water_use_target_of_not_more_than_125_litres_per_person_per_day": false,
      "daily_warm_water_consumption_for_baths_1": 110.22220712198026,
      "daily_warm_water_consumption_for_baths_2": 108.73127871646555,
      "daily_warm_water_consumption_for_baths_3": 107.24035031095084,
      "daily_warm_water_consumption_for_baths_4": 105.74942190543614,
      "daily_warm_water_consumption_for_baths_5": 104.25849349992143,
      "daily_warm_water_consumption_for_baths_6": 102.76756509440672,
      "daily_warm_water_consumption_for_baths_7": 102.76756509440672,
      "daily_warm_water_consumption_for_baths_8": 104.25849349992143,
      "daily_warm_water_consumption_for_baths_9": 105.74942190543614,
      "daily_warm_water_consumption_for_baths_10": 107.24035031095084,
      "daily_warm_water_consumption_for_baths_11": 108.73127871646555,
      "daily_warm_water_consumption_for_baths_12": 110.22220712198026,
      "value_42b_1": 85.17170550334838,
      "value_42b_2": 83.90678585882502,
      "value_42b_3": 82.12551417255486,
      "value_42b_4": 78.84117205672466,
      "value_42b_5": 76.38189095983549,
      "value_42b_6": 73.65494042177026,
      "value_42b_7": 72.18198024488092,
      "value_42b_8": 73.95079190110707,
      "value_42b_9": 75.87670385305304,
      "value_42b_10": 78.79463404809916,
      "value_42b_11": 82.14661399361334,
      "value_42b_12": 84.88376870313422,
      "annual_average_daily_hot_water_use_for_baths": 78.96759387759919,
      "monthly_volume_of_warm_water_used_for_baths_1": 3416.888420781388,
      "monthly_volume_of_warm_water_used_for_baths_2": 3044.4758040610354,
      "monthly_volume_of_warm_water_used_for_baths_3": 3324.450859639476,
      "monthly_volume_of_warm_water_used_for_baths_4": 3172.4826571630842,
      "monthly_volume_of_warm_water_used_for_baths_5": 3232.0132984975644,
      "monthly_volume_of_warm_water_used_for_baths_6": 3083.0269528322015,
      "monthly_volume_of_warm_water_used_for_baths_7": 3185.7945179266085,
      "monthly_volume_of_warm_water_used_for_baths_8": 3232.0132984975644,
      "monthly_volume_of_warm_water_used_for_baths_9": 3172.4826571630842,
      "monthly_volume_of_warm_water_used_for_baths_10": 3324.450859639476,
      "monthly_volume_of_warm_water_used_for_baths_11": 3261.9383614939666,
      "monthly_volume_of_warm_water_used_for_baths_12": 3416.888420781388,
      "average_daily_hot_water_use_for_other_hot_water_uses": 40.84735357574546,
      "value_42c_1": 44.93208893332001,
      "value_42c_2": 43.29819479029019,
      "value_42c_3": 41.66430064726037,
      "value_42c_4": 40.03040650423055,
      "value_42c_5": 38.39651236120073,
      "value_42c_6": 36.762618218170914,
      "value_42c_7": 36.762618218170914,
      "value_42c_8": 38.39651236120073,
      "value_42c_9": 40.03040650423055,
      "value_42c_10": 41.66430064726037,
      "value_42c_11": 43.29819479029019,
      "value_42c_12": 44.93208893332001,
      "value_43": 119.81494745334464,
      "value_44_1": 130.10379443666838,
      "value_44_2": 127.20498064911521,
      "value_44_3": 123.78981481981523,
      "value_44_4": 118.87157856095521,
      "value_44_5": 114.77840332103622,
      "value_44_6": 110.41755863994118,
      "value_44_7": 108.94459846305183,
      "value_44_8": 112.3473042623078,
      "value_44_9": 115.90711035728359,
      "value_44_10": 120.45893469535952,
      "value_44_11": 125.44480878390354,
      "value_44_12": 129.81585763645424,
      "value_45_1": 206.05260723793148,
      "value_45_2": 181.1381963779314,
      "value_45_3": 190.26033764605992,
      "value_45_4": 162.72924747101962,
      "value_45_5": 154.51379382986423,
      "value_45_6": 135.77127039631566,
      "value_45_7": 131.75904997586105,
      "value_45_8": 139.10943078029405,
      "value_45_9": 142.92505778156638,
      "value_45_10": 163.4616367138863,
      "value_45_11": 178.71912832761433,
      "value_45_12": 203.26026089309184,
      "value_45": 1989.7000174314362,
      "is_hot_water_instantaneous_at_point_of_use": false,
      "is_hot_water_from_heat_network": false,
      "value_46_1": 30.90789108568972,
      "value_46_2": 27.17072945668971,
      "value_46_3": 28.539050646908986,
      "value_46_4": 24.40938712065294,
      "value_46_5": 23.177069074479633,
      "value_46_6": 20.365690559447348,
      "value_46_7": 19.763857496379156,
      "value_46_8": 20.866414617044107,
      "value_46_9": 21.438758667234957,
      "value_46_10": 24.519245507082942,
      "value_46_11": 26.807869249142147,
      "value_46_12": 30.489039133963775,
      "value_47": 0,
      "is_manufacturer_declared_loss_factor_known": false,
      "value_48": null,
      "value_49": null,
      "value_50": null,
      "value_51": null,
      "value_52": null,
      "value_53": null,
      "value_54": null,
      "value_55": 0,
      "value_56_1": 0,
      "value_56_2": 0,
      "value_56_3": 0,
      "value_56_4": 0,
      "value_56_5": 0,
      "value_56_6": 0,
      "value_56_7": 0,
      "value_56_8": 0,
      "value_56_9": 0,
      "value_56_10": 0,
      "value_56_11": 0,
      "value_56_12": 0,
      "does_vessel_contain_dedicated_solar_storage": false,
      "does_vessel_contain_dedicated_wwhrs_storage": false,
      "V_s": null,
      "value_57_1": 0,
      "value_57_2": 0,
      "value_57_3": 0,
      "value_57_4": 0,
      "value_57_5": 0,
      "value_57_6": 0,
      "value_57_7": 0,
      "value_57_8": 0,
      "value_57_9": 0,
      "value_57_10": 0,
      "value_57_11": 0,
      "value_57_12": 0,
      "value_59_1": 0,
      "value_59_2": 0,
      "value_59_3": 0,
      "value_59_4": 0,
      "value_59_5": 0,
      "value_59_6": 0,
      "value_59_7": 0,
      "value_59_8": 0,
      "value_59_9": 0,
      "value_59_10": 0,
      "value_59_11": 0,
      "value_59_12": 0,
      "value_61_1": 50.95890410958904,
      "value_61_2": 46.02739726027397,
      "value_61_3": 50.95890410958904,
      "value_61_4": 49.31506849315068,
      "value_61_5": 50.95890410958904,
      "value_61_6": 49.31506849315068,
      "value_61_7": 50.95890410958904,
      "value_61_8": 50.95890410958904,
      "value_61_9": 49.31506849315068,
      "value_61_10": 50.95890410958904,
      "value_61_11": 49.31506849315068,
      "value_61_12": 50.95890410958904,
      "value_62_1": 257.0115113475205,
      "value_62_2": 227.16559363820537,
      "value_62_3": 241.21924175564894,
      "value_62_4": 212.0443159641703,
      "value_62_5": 205.47269793945324,
      "value_62_6": 185.08633888946633,
      "value_62_7": 182.7179540854501,
      "value_62_8": 190.0683348898831,
      "value_62_9": 192.24012627471706,
      "value_62_10": 214.4205408234753,
      "value_62_11": 228.034196820765,
      "value_62_12": 254.21916500268088,
      "number_of_showers_per_day_taken_using_each_electric_shower_present": null,
      "value_64a_1": null,
      "value_64a_2": null,
      "value_64a_3": null,
      "value_64a_4": null,
      "value_64a_5": null,
      "value_64a_6": null,
      "value_64a_7": null,
      "value_64a_8": null,
      "value_64a_9": null,
      "value_64a_10": null,
      "value_64a_11": null,
      "value_64a_12": null,
      "value_64a": null,
      "value_65_1": 81.25221793400948,
      "value_65_2": 71.73529961073068,
      "value_65_3": 76.00128829471218,
      "value_65_4": 66.4362419074017,
      "value_65_5": 64.11556247582712,
      "value_65_6": 57.47271453006262,
      "value_65_7": 56.54961014437106,
      "value_65_8": 58.99361176184503,
      "value_65_9": 59.851348835658484,
      "value_65_10": 67.09072023476445,
      "value_65_11": 71.75287729221944,
      "value_65_12": 80.3237627743503,
      "value_66_1": 164.37155250456402,
      "value_66_2": 164.37155250456402,
      "value_66_3": 164.37155250456402,
      "value_66_4": 164.37155250456402,
      "value_66_5": 164.37155250456402,
      "value_66_6": 164.37155250456402,
      "value_66_7": 164.37155250456402,
      "value_66_8": 164.37155250456402,
      "value_66_9": 164.37155250456402,
      "value_66_10": 164.37155250456402,
      "value_66_11": 164.37155250456402,
      "value_66_12": 164.37155250456402,
      "annual_base_lighting_requirement_L1": 9430.413245416414,
      "G_l_L2a": 0.028236599999999997,
      "daylighting_correction_factor_L2b": 1.193947547253032,
      "fixed_lighting_requirement_L3": 7506.279175964954,
      "reference_fixed_lighting_capacity_upper_limit_L4": 33000.0,
      "capacity_of_fixed_lighting_provided_L5": 18500.0,
      "fixed_lighting_provision_L6": 4208.06559864702,
      "top_up_lighting_requirement_L7": 0,
      "average_efficacy_of_fixed_lighting_provided_L8": 21.3,
      "energy_required_for_fixed_lighting_L9a": 352.40747304999786,
      "energy_required_for_top_up_lighting_L9b": 0.0,
      "energy_required_for_portable_lighting_L9c": 176.20373652499893,
      "total_energy_required_for_lighting_L9d": 528.6112095749968,
      "lighting_energy_required_in_each_month_L10_1": 65.40289923835887,
      "lighting_energy_required_in_each_month_L10_2": 52.46863587037062,
      "lighting_energy_required_in_each_month_L10_3": 47.24218826457619,
      "lighting_energy_required_in_each_month_L10_4": 34.61165220309128,
      "lighting_energy_required_in_each_month_L10_5": 26.73503559286089,
      "lighting_energy_required_in_each_month_L10_6": 21.842753305091186,
      "lighting_energy_required_in_each_month_L10_7": 24.388593894928253,
      "lighting_energy_required_in_each_month_L10_8": 31.701217705376795,
      "lighting_energy_required_in_each_month_L10_9": 41.1767466471396,
      "lighting_energy_required_in_each_month_L10_10": 54.02611919009282,
      "lighting_energy_required_in_each_month_L10_11": 61.02237826492862,
      "lighting_energy_required_in_each_month_L10_12": 67.22064805135956,
      "lighting_energy_annual_total_as_sum_of_monthly_values_L11": 527.8388682281746,
      "lighting_internal_heat_gain_L12_1": 74.72105423737236,
      "lighting_internal_heat_gain_L12_2": 66.36657810984379,
      "lighting_internal_heat_gain_L12_3": 53.972930140980864,
      "lighting_internal_heat_gain_L12_4": 40.860978295316094,
      "lighting_internal_heat_gain_L12_5": 30.54405948109107,
      "lighting_internal_heat_gain_L12_6": 25.786583762954873,
      "lighting_internal_heat_gain_L12_7": 27.863312917592758,
      "lighting_internal_heat_gain_L12_8": 36.217789045121336,
      "lighting_internal_heat_gain_L12_9": 48.61143701398425,
      "lighting_internal_heat_gain_L12_10": 61.72338885964905,
      "lighting_internal_heat_gain_L12_11": 72.04030767387407,
      "lighting_internal_heat_gain_L12_12": 76.79778339201025,
      "value_67_1": 74.72105423737236,
      "value_67_2": 66.36657810984379,
      "value_67_3": 53.972930140980864,
      "value_67_4": 40.860978295316094,
      "value_67_5": 30.54405948109107,
      "value_67_6": 25.786583762954873,
      "value_67_7": 27.863312917592758,
      "value_67_8": 36.217789045121336,
      "value_67_9": 48.61143701398425,
      "value_67_10": 61.72338885964905,
      "value_67_11": 72.04030767387407,
      "value_67_12": 76.79778339201025,
      "appliances_annual_energy_use_L13": 2929.3126695091173,
      "appliances_energy_use_L14_1": 284.6385975720036,
      "appliances_energy_use_L14_2": 259.7607469340976,
      "appliances_energy_use_L14_3": 280.1491320802802,
      "appliances_energy_use_L14_4": 255.77768335059017,
      "appliances_energy_use_L14_5": 244.30147356247554,
      "appliances_energy_use_L14_6": 218.22802224093158,
      "appliances_energy_use_L14_7": 212.94328053639433,
      "appliances_energy_use_L14_8": 209.9896225742185,
      "appliances_energy_use_L14_9": 210.41878647882365,
      "appliances_energy_use_L14_10": 233.27827197945484,
      "appliances_energy_use_L14_11": 245.11006891540885,
      "appliances_energy_use_L14_12": 272.07958845943534,
      "appliances_annual_total_as_sum_of_monthly_values_L15": 2926.6752746841144,
      "appliance_internal_heat_gain_1": 382.5787601774242,
      "appliance_internal_heat_gain_2": 386.5487305566929,
      "appliance_internal_heat_gain_3": 376.54453236596805,
      "appliance_internal_heat_gain_4": 355.24678243137527,
      "appliance_internal_heat_gain_5": 328.36219564848864,
      "appliance_internal_heat_gain_6": 303.0944753346272,
      "appliance_internal_heat_gain_7": 286.2140867424655,
      "appliance_internal_heat_gain_8": 282.2441163631969,
      "appliance_internal_heat_gain_9": 292.2483145539218,
      "appliance_internal_heat_gain_10": 313.54606448851456,
      "appliance_internal_heat_gain_11": 340.43065127140113,
      "appliance_internal_heat_gain_12": 365.6983715852625,
      "value_68_1": 382.5787601774242,
      "value_68_2": 386.5487305566929,
      "value_68_3": 376.54453236596805,
      "value_68_4": 355.24678243137527,
      "value_68_5": 328.36219564848864,
      "value_68_6": 303.0944753346272,
      "value_68_7": 286.2140867424655,
      "value_68_8": 282.2441163631969,
      "value_68_9": 292.2483145539218,
      "value_68_10": 313.54606448851456,
      "value_68_11": 340.43065127140113,
      "value_68_12": 365.6983715852625,
      "value_69_1": 54.17668112553247,
      "value_69_2": 54.17668112553247,
      "value_69_3": 54.17668112553247,
      "value_69_4": 54.17668112553247,
      "value_69_5": 54.17668112553247,
      "value_69_6": 54.17668112553247,
      "value_69_7": 54.17668112553247,
      "value_69_8": 54.17668112553247,
      "value_69_9": 54.17668112553247,
      "value_69_10": 54.17668112553247,
      "value_69_11": 54.17668112553247,
      "value_69_12": 54.17668112553247,
      "cooking_electricity_consumption_L20": 214.70672450212987,
      "cooking_electricity_consumption_L21_1": 18.235365642646645,
      "cooking_electricity_consumption_L21_2": 16.470652838519552,
      "cooking_electricity_consumption_L21_3": 18.235365642646645,
      "cooking_electricity_consumption_L21_4": 17.64712804127095,
      "cooking_electricity_consumption_L21_5": 18.235365642646645,
      "cooking_electricity_consumption_L21_6": 17.64712804127095,
      "cooking_electricity_consumption_L21_7": 18.235365642646645,
      "cooking_electricity_consumption_L21_8": 18.235365642646645,
      "cooking_electricity_consumption_L21_9": 17.64712804127095,
      "cooking_electricity_consumption_L21_10": 18.235365642646645,
      "cooking_electricity_consumption_L21_11": 17.64712804127095,
      "cooking_electricity_consumption_L21_12": 18.235365642646645,
      "value_70_1": 7,
      "value_70_2": 7,
      "value_70_3": 7,
      "value_70_4": 7,
      "value_70_5": 7,
      "value_70_6": 0,
      "value_70_7": 0,
      "value_70_8": 0,
      "value_70_9": 0,
      "value_70_10": 7,
      "value_70_11": 7,
      "value_70_12": 7,
      "value_71_1": -109.58103500304269,
      "value_71_2": -109.58103500304269,
      "value_71_3": -109.58103500304269,
      "value_71_4": -109.58103500304269,
      "value_71_5": -109.58103500304269,
      "value_71_6": -109.58103500304269,
      "value_71_7": -109.58103500304269,
      "value_71_8": -109.58103500304269,
      "value_71_9": -109.58103500304269,
      "value_71_10": -109.58103500304269,
      "value_71_11": -109.58103500304269,
      "value_71_12": -109.58103500304269,
      "value_72_1": 109.20997034141058,
      "value_72_2": 106.74895775406351,
      "value_72_3": 102.15226921332282,
      "value_72_4": 92.27255820472458,
      "value_72_5": 86.17683128471387,
      "value_72_6": 79.82321462508696,
      "value_72_7": 76.00754051662777,
      "value_72_8": 79.29248892721107,
      "value_72_9": 83.126873382859,
      "value_72_10": 90.1756992402748,
      "value_72_11": 99.65677401697144,
      "value_72_12": 107.96204673971815,
      "value_73_1": 682.476983383261,
      "value_73_2": 675.631465047654,
      "value_73_3": 648.6369303473256,
      "value_73_4": 604.3475175584698,
      "value_73_5": 561.0502850413474,
      "value_73_6": 517.6714723497228,
      "value_73_7": 499.0521388037398,
      "value_73_8": 506.72159296258314,
      "value_73_9": 532.9538235778189,
      "value_73_10": 581.4123512154922,
      "value_73_11": 628.0949315893005,
      "value_73_12": 666.4254003440448,
      "window_0_orientation": "South",
      "window_0_winter_solar_access_factor": 0.77,
      "window_0_summer_solar_access_factor": 0.9,
      "value_78_access_factor": "0.9 / 0.77",
      "window_0_window_area": 7.5,
      "value_78_area": 7.5,
      "solar_declination_1": -20.7,
      "solar_declination_2": -12.8,
      "solar_declination_3": -1.8,
      "solar_declination_4": 9.8,
      "solar_declination_5": 18.8,
      "solar_declination_6": 23.1,
      "solar_declination_7": 21.2,
      "solar_declination_8": 13.7,
      "solar_declination_9": 2.9,
      "solar_declination_10": -8.7,
      "solar_declination_11": -18.4,
      "solar_declination_12": -23.0,
      "solar_radiation_on_horizontal_plane_1": 26,
      "solar_radiation_on_horizontal_plane_2": 54,
      "solar_radiation_on_horizontal_plane_3": 96,
      "solar_radiation_on_horizontal_plane_4": 150,
      "solar_radiation_on_horizontal_plane_5": 192,
      "solar_radiation_on_horizontal_plane_6": 200,
      "solar_radiation_on_horizontal_plane_7": 189,
      "solar_radiation_on_horizontal_plane_8": 157,
      "solar_radiation_on_horizontal_plane_9": 115,
      "solar_radiation_on_horizontal_plane_10": 66,
      "solar_radiation_on_horizontal_plane_11": 33,
      "solar_radiation_on_horizontal_plane_12": 21,
      "window_0_R_h_inc_1": 1.7981563495008537,
      "window_0_R_h_inc_2": 1.417922875065787,
      "window_0_R_h_inc_3": 1.0159775026270774,
      "window_0_R_h_inc_4": 0.7348960811522556,
      "window_0_R_h_inc_5": 0.5982868593217621,
      "window_0_R_h_inc_6": 0.5527389093249218,
      "window_0_R_h_inc_7": 0.5714915931832962,
      "window_0_R_h_inc_8": 0.668118018345337,
      "window_0_R_h_inc_9": 0.885961835194544,
      "window_0_R_h_inc_10": 1.2512968810006075,
      "window_0_R_h_inc_11": 1.6793072914175657,
      "window_0_R_h_inc_12": 1.923718443605849,
      "window_0_solar_flux_1": 46.752065087022196,
      "window_0_solar_flux_2": 76.5678352535525,
      "window_0_solar_flux_3": 97.53384025219944,
      "window_0_solar_flux_4": 110.23441217283833,
      "window_0_solar_flux_5": 114.87107698977832,
      "window_0_solar_flux_6": 110.54778186498436,
      "window_0_solar_flux_7": 108.01191111164299,
      "window_0_solar_flux_8": 104.8945288802179,
      "window_0_solar_flux_9": 101.88561104737255,
      "window_0_solar_flux_10": 82.5855941460401,
      "window_0_solar_flux_11": 55.41714061677967,
      "window_0_solar_flux_12": 40.398087315722826,
      "value_78_solar_flux": "46.8, 76.6, 97.5, 110.2, 114.9, 110.5, 108.0, 104.9, 101.9, 82.6, 55.4, 40.4",
      "window_0_solar_transmittance": 0.684,
      "value_78_solar_transmittance": "0.7",
      "window_0_frame_factor": 0.7,
      "value_78_frame_factor": "0.7",
      "window_0_solar_gains_1": 116.34545934915523,
      "window_0_solar_gains_2": 190.54388180208642,
      "window_0_solar_gains_3": 242.71910609953426,
      "window_0_solar_gains_4": 274.32527946007514,
      "window_0_solar_gains_5": 285.8639119669137,
      "window_0_solar_gains_6": 275.1051196812711,
      "window_0_solar_gains_7": 268.7944455517237,
      "window_0_solar_gains_8": 261.0366434737417,
      "window_0_solar_gains_9": 253.54876188488262,
      "window_0_solar_gains_10": 205.519453924852,
      "window_0_solar_gains_11": 137.90904570471508,
      "window_0_solar_gains_12": 100.53318536467714,
      "value_78_1": 116.34545934915523,
      "value_78_2": 190.54388180208642,
      "value_78_3": 242.71910609953426,
      "value_78_4": 274.32527946007514,
      "value_78_5": 285.8639119669137,
      "value_78_6": 275.1051196812711,
      "value_78_7": 268.7944455517237,
      "value_78_8": 261.0366434737417,
      "value_78_9": 253.54876188488262,
      "value_78_10": 205.519453924852,
      "value_78_11": 137.90904570471508,
      "value_78_12": 100.53318536467714,
      "value_78": 2612.244294263628,
      "value_83_1": 116.34545934915523,
      "value_83_2": 190.54388180208642,
      "value_83_3": 242.71910609953426,
      "value_83_4": 274.32527946007514,
      "value_83_5": 285.8639119669137,
      "value_83_6": 275.1051196812711,
      "value_83_7": 268.7944455517237,
      "value_83_8": 261.0366434737417,
      "value_83_9": 253.54876188488262,
      "value_83_10": 205.519453924852,
      "value_83_11": 137.90904570471508,
      "value_83_12": 100.53318536467714,
      "value_84_1": 798.8224427324162,
      "value_84_2": 866.1753468497404,
      "value_84_3": 891.3560364468599,
      "value_84_4": 878.672797018545,
      "value_84_5": 846.914197008261,
      "value_84_6": 792.7765920309939,
      "value_84_7": 767.8465843554635,
      "value_84_8": 767.7582364363249,
      "value_84_9": 786.5025854627015,
      "value_84_10": 786.9318051403442,
      "value_84_11": 766.0039772940156,
      "value_84_12": 766.9585857087219,
      "pcdb_temperature_reduction_zone_1": null,
      "value_85": 21,
      "time_constant_gains_zone_1_1": 0.0,
      "time_constant_gains_zone_1_2": 0.0,
      "time_constant_gains_zone_1_3": 0.0,
      "time_constant_gains_zone_1_4": 0.0,
      "time_constant_gains_zone_1_5": 0.0,
      "time_constant_gains_zone_1_6": 0.0,
      "time_constant_gains_zone_1_7": 0.0,
      "time_constant_gains_zone_1_8": 0.0,
      "time_constant_gains_zone_1_9": 0.0,
      "time_constant_gains_zone_1_10": 0.0,
      "time_constant_gains_zone_1_11": 0.0,
      "time_constant_gains_zone_1_12": 0.0,
      "a_gains_zone_1_1": 1.0,
      "a_gains_zone_1_2": 1.0,
      "a_gains_zone_1_3": 1.0,
      "a_gains_zone_1_4": 1.0,
      "a_gains_zone_1_5": 1.0,
      "a_gains_zone_1_6": 1.0,
      "a_gains_zone_1_7": 1.0,
      "a_gains_zone_1_8": 1.0,
      "a_gains_zone_1_9": 1.0,
      "a_gains_zone_1_10": 1.0,
      "a_gains_zone_1_11": 1.0,
      "a_gains_zone_1_12": 1.0,
      "value_96_1": 4.3,
      "value_96_2": 4.9,
      "value_96_3": 6.5,
      "value_96_4": 8.9,
      "value_96_5": 11.7,
      "value_96_6": 14.6,
      "value_96_7": 16.6,
      "value_96_8": 16.4,
      "value_96_9": 14.1,
      "value_96_10": 10.6,
      "value_96_11": 7.1,
      "value_96_12": 4.2,
      "heat_loss_rate_gains_zone_1_1": 4711.799747561808,
      "heat_loss_rate_gains_zone_1_2": 4541.40039773502,
      "heat_loss_rate_gains_zone_1_3": 4089.098445623171,
      "heat_loss_rate_gains_zone_1_4": 3408.4305838980977,
      "heat_loss_rate_gains_zone_1_5": 2619.1489837347244,
      "heat_loss_rate_gains_zone_1_6": 1800.6507780393868,
      "heat_loss_rate_gains_zone_1_7": 1237.9474099020779,
      "heat_loss_rate_gains_zone_1_8": 1293.981580233876,
      "heat_loss_rate_gains_zone_1_9": 1942.0634594973467,
      "heat_loss_rate_gains_zone_1_10": 2928.9407990151753,
      "heat_loss_rate_gains_zone_1_11": 3916.3166893990683,
      "heat_loss_rate_gains_zone_1_12": 4735.506007210812,
      "y_gains_zone_1_1": 0.16953658591831688,
      "y_gains_zone_1_2": 0.19072868960898867,
      "y_gains_zone_1_3": 0.21798351110889405,
      "y_gains_zone_1_4": 0.25779395395919696,
      "y_gains_zone_1_5": 0.3233547240984437,
      "y_gains_zone_1_6": 0.4402722625062243,
      "y_gains_zone_1_7": 0.6202578382681058,
      "y_gains_zone_1_8": 0.5933301123943041,
      "y_gains_zone_1_9": 0.4049829482226433,
      "y_gains_zone_1_10": 0.2686745342906697,
      "y_gains_zone_1_11": 0.19559296094911915,
      "y_gains_zone_1_12": 0.1619591622396561,
      "value_86_1": 0.8550395191055975,
      "value_86_2": 0.8398218743922092,
      "value_86_3": 0.8210291772255321,
      "value_86_4": 0.7950427785507072,
      "value_86_5": 0.7556552916537671,
      "value_86_6": 0.6943131698307482,
      "value_86_7": 0.6171857196931695,
      "value_86_8": 0.627616331494103,
      "value_86_9": 0.7117524104225165,
      "value_86_10": 0.7882242237636711,
      "value_86_11": 0.8364050581279368,
      "value_86_12": 0.8606154437239579,
      "pcdb_additional_hours_heating_off_zone_1": null,
      "hours_heating_off_period_0_zone_1": 7,
      "hours_heating_off_period_1_zone_1": 8,
      "main_heating_1_responsiveness": 1.0,
      "main_heating_2_responsiveness": null,
      "value_201": 0,
      "value_202": 1.0,
      "value_203": 0,
      "value_204": 1.0,
      "value_205": 0.0,
      "weighted_average_responsiveness_of_main_heating_systems": 1.0,
      "tc_off_period_0_zone_1_1": 4.0,
      "tc_off_period_0_zone_1_2": 4.0,
      "tc_off_period_0_zone_1_3": 4.0,
      "tc_off_period_0_zone_1_4": 4.0,
      "tc_off_period_0_zone_1_5": 4.0,
      "tc_off_period_0_zone_1_6": 4.0,
      "tc_off_period_0_zone_1_7": 4.0,
      "tc_off_period_0_zone_1_8": 4.0,
      "tc_off_period_0_zone_1_9": 4.0,
      "tc_off_period_0_zone_1_10": 4.0,
      "tc_off_period_0_zone_1_11": 4.0,
      "tc_off_period_0_zone_1_12": 4.0,
      "tc_off_period_1_zone_1_1": 4.0,
      "tc_off_period_1_zone_1_2": 4.0,
      "tc_off_period_1_zone_1_3": 4.0,
      "tc_off_period_1_zone_1_4": 4.0,
      "tc_off_period_1_zone_1_5": 4.0,
      "tc_off_period_1_zone_1_6": 4.0,
      "tc_off_period_1_zone_1_7": 4.0,
      "tc_off_period_1_zone_1_8": 4.0,
      "tc_off_period_1_zone_1_9": 4.0,
      "tc_off_period_1_zone_1_10": 4.0,
      "tc_off_period_1_zone_1_11": 4.0,
      "tc_off_period_1_zone_1_12": 4.0,
      "Tsc_off_period_0_zone_1_1": 6.720840030936522,
      "Tsc_off_period_0_zone_1_2": 7.478867822285432,
      "Tsc_off_period_0_zone_1_3": 9.095076930229785,
      "Tsc_off_period_0_zone_1_4": 11.379982379536447,
      "Tsc_off_period_0_zone_1_5": 13.972405787619966,
      "Tsc_off_period_0_zone_1_6": 16.556395713083212,
      "Tsc_off_period_0_zone_1_7": 18.284382833350055,
      "Tsc_off_period_0_zone_1_8": 18.112964875127126,
      "Tsc_off_period_0_zone_1_9": 16.08890836808464,
      "Tsc_off_period_0_zone_1_10": 12.80246807285782,
      "Tsc_off_period_0_zone_1_11": 9.37396969202168,
      "Tsc_off_period_0_zone_1_12": 6.541660545437508,
      "Tsc_off_period_1_zone_1_1": 6.720840030936522,
      "Tsc_off_period_1_zone_1_2": 7.478867822285432,
      "Tsc_off_period_1_zone_1_3": 9.095076930229785,
      "Tsc_off_period_1_zone_1_4": 11.379982379536447,
      "Tsc_off_period_1_zone_1_5": 13.972405787619966,
      "Tsc_off_period_1_zone_1_6": 16.556395713083212,
      "Tsc_off_period_1_zone_1_7": 18.284382833350055,
      "Tsc_off_period_1_zone_1_8": 18.112964875127126,
      "Tsc_off_period_1_zone_1_9": 16.08890836808464,
      "Tsc_off_period_1_zone_1_10": 12.80246807285782,
      "Tsc_off_period_1_zone_1_11": 9.37396969202168,
      "Tsc_off_period_1_zone_1_12": 6.541660545437508,
      "temperature_reduction_off_period_0_zone_1_1": 2.974824993554891,
      "temperature_reduction_off_period_0_zone_1_2": 2.8169025370238683,
      "temperature_reduction_off_period_0_zone_1_3": 2.480192306202128,
      "temperature_reduction_off_period_0_zone_1_4": 2.0041703375965736,
      "temperature_reduction_off_period_0_zone_1_5": 1.464082127579174,
      "temperature_reduction_off_period_0_zone_1_6": 0.9257508931076641,
      "temperature_reduction_off_period_0_zone_1_7": 0.5657535763854052,
      "temperature_reduction_off_period_0_zone_1_8": 0.601465651015182,
      "temperature_reduction_off_period_0_zone_1_9": 1.023144089982367,
      "temperature_reduction_off_period_0_zone_1_10": 1.7078191514879542,
      "temperature_reduction_off_period_0_zone_1_11": 2.422089647495483,
      "temperature_reduction_off_period_0_zone_1_12": 3.012154053033852,
      "temperature_reduction_off_period_1_zone_1_1": 3.5697899922658696,
      "temperature_reduction_off_period_1_zone_1_2": 3.380283044428642,
      "temperature_reduction_off_period_1_zone_1_3": 2.9762307674425537,
      "temperature_reduction_off_period_1_zone_1_4": 2.4050044051158883,
      "temperature_reduction_off_period_1_zone_1_5": 1.7568985530950085,
      "temperature_reduction_off_period_1_zone_1_6": 1.110901071729197,
      "temperature_reduction_off_period_1_zone_1_7": 0.6789042916624863,
      "temperature_reduction_off_period_1_zone_1_8": 0.7217587812182185,
      "temperature_reduction_off_period_1_zone_1_9": 1.2277729079788404,
      "temperature_reduction_off_period_1_zone_1_10": 2.049382981785545,
      "temperature_reduction_off_period_1_zone_1_11": 2.90650757699458,
      "temperature_reduction_off_period_1_zone_1_12": 3.614584863640623,
      "value_87_1": 14.455385014179239,
      "value_87_2": 14.80281441854749,
      "value_87_3": 15.543576926355318,
      "value_87_4": 16.590825257287538,
      "value_87_5": 17.77901931932582,
      "value_87_6": 18.96334803516314,
      "value_87_7": 19.75534213195211,
      "value_87_8": 19.6767755677666,
      "value_87_9": 18.749083002038795,
      "value_87_10": 17.2427978667265,
      "value_87_11": 15.671402775509936,
      "value_87_12": 14.373261083325525,
      "heating_control_type_zone_2": 2,
      "pcdb_temperature_reduction_zone_2": null,
      "value_88_1": 18.841938575543075,
      "value_88_2": 18.8423048843379,
      "value_88_3": 18.842664016811522,
      "value_88_4": 18.844351875273293,
      "value_88_5": 18.844667855678797,
      "value_88_6": 18.846139577049023,
      "value_88_7": 18.846139577049023,
      "value_88_8": 18.84641225862223,
      "value_88_9": 18.84557254009605,
      "value_88_10": 18.844667855678797,
      "value_88_11": 18.84402869211778,
      "value_88_12": 18.843360734332474,
      "time_constant_gains_zone_2_1": 0.0,
      "time_constant_gains_zone_2_2": 0.0,
      "time_constant_gains_zone_2_3": 0.0,
      "time_constant_gains_zone_2_4": 0.0,
      "time_constant_gains_zone_2_5": 0.0,
      "time_constant_gains_zone_2_6": 0.0,
      "time_constant_gains_zone_2_7": 0.0,
      "time_constant_gains_zone_2_8": 0.0,
      "time_constant_gains_zone_2_9": 0.0,
      "time_constant_gains_zone_2_10": 0.0,
      "time_constant_gains_zone_2_11": 0.0,
      "time_constant_gains_zone_2_12": 0.0,
      "a_gains_zone_2_1": 1.0,
      "a_gains_zone_2_2": 1.0,
      "a_gains_zone_2_3": 1.0,
      "a_gains_zone_2_4": 1.0,
      "a_gains_zone_2_5": 1.0,
      "a_gains_zone_2_6": 1.0,
      "a_gains_zone_2_7": 1.0,
      "a_gains_zone_2_8": 1.0,
      "a_gains_zone_2_9": 1.0,
      "a_gains_zone_2_10": 1.0,
      "a_gains_zone_2_11": 1.0,
      "a_gains_zone_2_12": 1.0,
      "heat_loss_rate_gains_zone_2_1": 4102.916317922346,
      "heat_loss_rate_gains_zone_2_2": 3932.7694998183256,
      "heat_loss_rate_gains_zone_2_3": 3480.7150514477958,
      "heat_loss_rate_gains_zone_2_4": 2801.209344522801,
      "heat_loss_rate_gains_zone_2_5": 2012.1451132605669,
      "heat_loss_rate_gains_zone_2_6": 1194.6585207933056,
      "heat_loss_rate_gains_zone_2_7": 631.9551526559967,
      "heat_loss_rate_gains_zone_2_8": 688.1766087642435,
      "heat_loss_rate_gains_zone_2_9": 1335.6815977557312,
      "heat_loss_rate_gains_zone_2_10": 2321.936928541018,
      "heat_loss_rate_gains_zone_2_11": 3308.8730624260706,
      "heat_loss_rate_gains_zone_2_12": 4127.602543046807,
      "y_gains_zone_2_1": 0.19469625525702353,
      "y_gains_zone_2_2": 0.22024564289612025,
      "y_gains_zone_2_3": 0.25608417330114464,
      "y_gains_zone_2_4": 0.3136762337083489,
      "y_gains_zone_2_5": 0.4209011524203066,
      "y_gains_zone_2_6": 0.6636010024894441,
      "y_gains_zone_2_7": 1.2150333471106913,
      "y_gains_zone_2_8": 1.1156412854761015,
      "y_gains_zone_2_9": 0.5888398752997843,
      "y_gains_zone_2_10": 0.3389117919041885,
      "y_gains_zone_2_11": 0.23149995869964873,
      "y_gains_zone_2_12": 0.185812121615418,
      "value_89_1": 0.8370328404393156,
      "value_89_2": 0.8195071261443793,
      "value_89_3": 0.79612499007282,
      "value_89_4": 0.7612225709352456,
      "value_89_5": 0.7037787240137288,
      "value_89_6": 0.6011056728768382,
      "value_89_7": 0.45146047182739196,
      "value_89_8": 0.4726699213448945,
      "value_89_9": 0.6293900446143565,
      "value_89_10": 0.7468751907680258,
      "value_89_11": 0.8120178916253546,
      "value_89_12": 0.8433039111100599,
      "pcdb_additional_hours_heating_off_zone_2": null,
      "hours_heating_off_period_0_zone_2": 7,
      "hours_heating_off_period_1_zone_2": 8,
      "tc_off_period_0_zone_2_1": 4.0,
      "tc_off_period_0_zone_2_2": 4.0,
      "tc_off_period_0_zone_2_3": 4.0,
      "tc_off_period_0_zone_2_4": 4.0,
      "tc_off_period_0_zone_2_5": 4.0,
      "tc_off_period_0_zone_2_6": 4.0,
      "tc_off_period_0_zone_2_7": 4.0,
      "tc_off_period_0_zone_2_8": 4.0,
      "tc_off_period_0_zone_2_9": 4.0,
      "tc_off_period_0_zone_2_10": 4.0,
      "tc_off_period_0_zone_2_11": 4.0,
      "tc_off_period_0_zone_2_12": 4.0,
      "tc_off_period_1_zone_2_1": 4.0,
      "tc_off_period_1_zone_2_2": 4.0,
      "tc_off_period_1_zone_2_3": 4.0,
      "tc_off_period_1_zone_2_4": 4.0,
      "tc_off_period_1_zone_2_5": 4.0,
      "tc_off_period_1_zone_2_6": 4.0,
      "tc_off_period_1_zone_2_7": 4.0,
      "tc_off_period_1_zone_2_8": 4.0,
      "tc_off_period_1_zone_2_9": 4.0,
      "tc_off_period_1_zone_2_10": 4.0,
      "tc_off_period_1_zone_2_11": 4.0,
      "tc_off_period_1_zone_2_12": 4.0,
      "Tsc_off_period_0_zone_2_1": 6.6698584241622,
      "Tsc_off_period_0_zone_2_2": 7.416486676745405,
      "Tsc_off_period_0_zone_2_3": 9.016360748955298,
      "Tsc_off_period_0_zone_2_4": 11.274486774493026,
      "Tsc_off_period_0_zone_2_5": 13.81640262870727,
      "Tsc_off_period_0_zone_2_6": 16.293760989457997,
      "Tsc_off_period_0_zone_2_7": 17.83209634380429,
      "Tsc_off_period_0_zone_2_8": 17.690066768762076,
      "Tsc_off_period_0_zone_2_9": 15.858756427364332,
      "Tsc_off_period_0_zone_2_10": 12.686929978149685,
      "Tsc_off_period_0_zone_2_11": 9.30766727435663,
      "Tsc_off_period_0_zone_2_12": 6.49455735527442,
      "Tsc_off_period_1_zone_2_1": 6.6698584241622,
      "Tsc_off_period_1_zone_2_2": 7.416486676745405,
      "Tsc_off_period_1_zone_2_3": 9.016360748955298,
      "Tsc_off_period_1_zone_2_4": 11.274486774493026,
      "Tsc_off_period_1_zone_2_5": 13.81640262870727,
      "Tsc_off_period_1_zone_2_6": 16.293760989457997,
      "Tsc_off_period_1_zone_2_7": 17.83209634380429,
      "Tsc_off_period_1_zone_2_8": 17.690066768762076,
      "Tsc_off_period_1_zone_2_9": 15.858756427364332,
      "Tsc_off_period_1_zone_2_10": 12.686929978149685,
      "Tsc_off_period_1_zone_2_11": 9.30766727435663,
      "Tsc_off_period_1_zone_2_12": 6.49455735527442,
      "temperature_reduction_off_period_0_zone_2_1": 2.535850031537682,
      "temperature_reduction_off_period_0_zone_2_2": 2.380378793248436,
      "temperature_reduction_off_period_0_zone_2_3": 2.0471465141367133,
      "temperature_reduction_off_period_0_zone_2_4": 1.5770552293292226,
      "temperature_reduction_off_period_0_zone_2_5": 1.0475552556190681,
      "temperature_reduction_off_period_0_zone_2_6": 0.5317455390814637,
      "temperature_reduction_off_period_0_zone_2_7": 0.21125900692598565,
      "temperature_reduction_off_period_0_zone_2_8": 0.24090531038753213,
      "temperature_reduction_off_period_0_zone_2_9": 0.622253356819108,
      "temperature_reduction_off_period_0_zone_2_10": 1.282862057818565,
      "temperature_reduction_off_period_0_zone_2_11": 1.9867419620335731,
      "temperature_reduction_off_period_0_zone_2_12": 2.572667370637095,
      "temperature_reduction_off_period_1_zone_2_1": 3.043020037845219,
      "temperature_reduction_off_period_1_zone_2_2": 2.8564545518981235,
      "temperature_reduction_off_period_1_zone_2_3": 2.456575816964056,
      "temperature_reduction_off_period_1_zone_2_4": 1.8924662751950667,
      "temperature_reduction_off_period_1_zone_2_5": 1.2570663067428818,
      "temperature_reduction_off_period_1_zone_2_6": 0.6380946468977564,
      "temperature_reduction_off_period_1_zone_2_7": 0.2535108083111828,
      "temperature_reduction_off_period_1_zone_2_8": 0.28908637246503854,
      "temperature_reduction_off_period_1_zone_2_9": 0.7467040281829296,
      "temperature_reduction_off_period_1_zone_2_10": 1.539434469382278,
      "temperature_reduction_off_period_1_zone_2_11": 2.384090354440288,
      "temperature_reduction_off_period_1_zone_2_12": 3.0872008447645136,
      "value_90_1": 13.263068506160174,
      "value_90_2": 13.60547153919134,
      "value_90_3": 14.338941685710752,
      "value_90_4": 15.374830370749004,
      "value_90_5": 16.54004629331685,
      "value_90_6": 17.676299391069804,
      "value_90_7": 18.381369761811854,
      "value_90_8": 18.31642057576966,
      "value_90_9": 17.476615155094013,
      "value_90_10": 16.022371328477952,
      "value_90_11": 14.473196375643921,
      "value_90_12": 13.183492518930866,
      "value_91": 0.3,
      "value_92_1": 13.620763458565893,
      "value_92_2": 13.964674402998185,
      "value_92_3": 14.700332257904122,
      "value_92_4": 15.739628836710562,
      "value_92_5": 16.911738201119537,
      "value_92_6": 18.062413984297805,
      "value_92_7": 18.79356147285393,
      "value_92_8": 18.72452707336874,
      "value_92_9": 17.858355509177446,
      "value_92_10": 16.388499289952517,
      "value_92_11": 14.832658295603725,
      "value_92_12": 13.540423088249263,
      "value_93_1": 13.620763458565893,
      "value_93_2": 13.964674402998185,
      "value_93_3": 14.700332257904122,
      "value_93_4": 15.739628836710562,
      "value_93_5": 16.911738201119537,
      "value_93_6": 18.062413984297805,
      "value_93_7": 18.79356147285393,
      "value_93_8": 18.72452707336874,
      "value_93_9": 17.858355509177446,
      "value_93_10": 16.388499289952517,
      "value_93_11": 14.832658295603725,
      "value_93_12": 13.540423088249263,
      "time_constant_gains_1": 0.0,
      "time_constant_gains_2": 0.0,
      "time_constant_gains_3": 0.0,
      "time_constant_gains_4": 0.0,
      "time_constant_gains_5": 0.0,
      "time_constant_gains_6": 0.0,
      "time_constant_gains_7": 0.0,
      "time_constant_gains_8": 0.0,
      "time_constant_gains_9": 0.0,
      "time_constant_gains_10": 0.0,
      "time_constant_gains_11": 0.0,
      "time_constant_gains_12": 0.0,
      "a_gains_1": 1.0,
      "a_gains_2": 1.0,
      "a_gains_3": 1.0,
      "a_gains_4": 1.0,
      "a_gains_5": 1.0,
      "a_gains_6": 1.0,
      "a_gains_7": 1.0,
      "a_gains_8": 1.0,
      "a_gains_9": 1.0,
      "a_gains_10": 1.0,
      "a_gains_11": 1.0,
      "a_gains_12": 1.0,
      "heat_loss_rate_gains_1": 2629.7946653385684,
      "heat_loss_rate_gains_2": 2556.914033485367,
      "heat_loss_rate_gains_3": 2312.54937168202,
      "heat_loss_rate_gains_4": 1926.6446371533593,
      "heat_loss_rate_gains_5": 1467.776216446632,
      "heat_loss_rate_gains_6": 974.1560054250463,
      "heat_loss_rate_gains_7": 617.1622144955704,
      "heat_loss_rate_gains_8": 653.8902642813284,
      "heat_loss_rate_gains_9": 1057.8210003150816,
      "heat_loss_rate_gains_10": 1630.2088207127213,
      "heat_loss_rate_gains_11": 2178.6718515462608,
      "heat_loss_rate_gains_12": 2632.8350978746994,
      "y_gains_1": 0.30375848474450123,
      "y_gains_2": 0.3387581027388098,
      "y_gains_3": 0.3854430298275262,
      "y_gains_4": 0.45606375979993624,
      "y_gains_5": 0.5770049872170379,
      "y_gains_6": 0.8138086585886083,
      "y_gains_7": 1.2441568299560481,
      "y_gains_8": 1.1741392682763756,
      "y_gains_9": 0.7435119790857192,
      "y_gains_10": 0.4827184070788554,
      "y_gains_11": 0.35159217610048177,
      "y_gains_12": 0.2913052117574067,
      "value_94_1": 0.7670132249961702,
      "value_94_2": 0.7469609318921888,
      "value_94_3": 0.72179077628655,
      "value_94_4": 0.6867831118449103,
      "value_94_5": 0.6341134036390801,
      "value_94_6": 0.5513260702913045,
      "value_94_7": 0.4456016561104533,
      "value_94_8": 0.45995213581362926,
      "value_94_9": 0.5735549924494298,
      "value_94_10": 0.674436895924242,
      "value_94_11": 0.7398681478647866,
      "value_94_12": 0.7744102563011004,
      "value_95_1": 612.707377999509,
      "value_95_2": 646.9991442649219,
      "value_95_3": 643.3725654946813,
      "value_95_4": 603.4576378298675,
      "value_95_5": 537.0396440551668,
      "value_95_6": 437.0784031033806,
      "value_95_7": 342.15370962754946,
      "value_95_8": 353.132040637393,
      "value_95_9": 451.1024844665167,
      "value_95_10": 530.7358439629143,
      "value_95_11": 566.7419439375834,
      "value_95_12": 593.9405949310208,
      "value_97_1": 2629.7946653385684,
      "value_97_2": 2556.914033485367,
      "value_97_3": 2312.54937168202,
      "value_97_4": 1926.6446371533593,
      "value_97_5": 1467.776216446632,
      "value_97_6": 974.1560054250463,
      "value_97_7": 617.1622144955704,
      "value_97_8": 653.8902642813284,
      "value_97_9": 1057.8210003150816,
      "value_97_10": 1630.2088207127213,
      "value_97_11": 2178.6718515462608,
      "value_97_12": 2632.8350978746994,
      "value_98a_1": 1500.7129417802603,
      "value_98a_2": 1283.4628055561388,
      "value_98a_3": 1241.86754380338,
      "value_98a_4": 952.6946395129141,
      "value_98a_5": 692.46800985925,
      "value_98a_10": 818.0078947018563,
      "value_98a_11": 1160.5895334782476,
      "value_98a_12": 1516.9375101900969,
      "value_98a": 9166.740878882145,
      "value_98b_1": 0,
      "value_98b_2": 0,
      "value_98b_3": 0,
      "value_98b_4": 0,
      "value_98b_5": 0,
      "value_98b_10": 0,
      "value_98b_11": 0,
      "value_98b_12": 0,
      "value_98b": 0,
      "value_98c_1": 1500.7129417802603,
      "value_98c_2": 1283.4628055561388,
      "value_98c_3": 1241.86754380338,
      "value_98c_4": 952.6946395129141,
      "value_98c_5": 692.46800985925,
      "value_98c_10": 818.0078947018563,
      "value_98c_11": 1160.5895334782476,
      "value_98c_12": 1516.9375101900969,
      "value_98c": 9166.740878882145,
      "value_99": 91.66740878882145,
      "instantaneous_wwhrs_1_total_volume_of_warm_water_draining_into_it_1": 0,
      "instantaneous_wwhrs_1_total_volume_of_warm_water_draining_into_it_2": 0,
      "instantaneous_wwhrs_1_total_volume_of_warm_water_draining_into_it_3": 0,
      "instantaneous_wwhrs_1_total_volume_of_warm_water_draining_into_it_4": 0,
      "instantaneous_wwhrs_1_total_volume_of_warm_water_draining_into_it_5": 0,
      "instantaneous_wwhrs_1_total_volume_of_warm_water_draining_into_it_6": 0,
      "instantaneous_wwhrs_1_total_volume_of_warm_water_draining_into_it_7": 0,
      "instantaneous_wwhrs_1_total_volume_of_warm_water_draining_into_it_8": 0,
      "instantaneous_wwhrs_1_total_volume_of_warm_water_draining_into_it_9": 0,
      "instantaneous_wwhrs_1_total_volume_of_warm_water_draining_into_it_10": 0,
      "instantaneous_wwhrs_1_total_volume_of_warm_water_draining_into_it_11": 0,
      "instantaneous_wwhrs_1_total_volume_of_warm_water_draining_into_it_12": 0,
      "instantaneous_wwhrs_1_heat_content_of_warm_water_draining_into_it_1": 0.0,
      "instantaneous_wwhrs_1_heat_content_of_warm_water_draining_into_it_2": 0.0,
      "instantaneous_wwhrs_1_heat_content_of_warm_water_draining_into_it_3": 0.0,
      "instantaneous_wwhrs_1_heat_content_of_warm_water_draining_into_it_4": 0.0,
      "instantaneous_wwhrs_1_heat_content_of_warm_water_draining_into_it_5": 0.0,
      "instantaneous_wwhrs_1_heat_content_of_warm_water_draining_into_it_6": 0.0,
      "instantaneous_wwhrs_1_heat_content_of_warm_water_draining_into_it_7": 0.0,
      "instantaneous_wwhrs_1_heat_content_of_warm_water_draining_into_it_8": 0.0,
      "instantaneous_wwhrs_1_heat_content_of_warm_water_draining_into_it_9": 0.0,
      "instantaneous_wwhrs_1_heat_content_of_warm_water_draining_into_it_10": 0.0,
      "instantaneous_wwhrs_1_heat_content_of_warm_water_draining_into_it_11": 0.0,
      "instantaneous_wwhrs_1_heat_content_of_warm_water_draining_into_it_12": 0.0,
      "instantaneous_wwhrs_1_average_shower_flow_rate": 0,
      "instantaneous_wwhrs_1_efficiency": null,
      "instantaneous_wwhrs_1_utilisation_factor": null,
      "instantaneous_wwhrs_1_heat_recovered_1": 0.0,
      "instantaneous_wwhrs_1_heat_recovered_2": 0.0,
      "instantaneous_wwhrs_1_heat_recovered_3": 0.0,
      "instantaneous_wwhrs_1_heat_recovered_4": 0.0,
      "instantaneous_wwhrs_1_heat_recovered_5": 0.0,
      "instantaneous_wwhrs_1_heat_recovered_6": 0.0,
      "instantaneous_wwhrs_1_heat_recovered_7": 0.0,
      "instantaneous_wwhrs_1_heat_recovered_8": 0.0,
      "instantaneous_wwhrs_1_heat_recovered_9": 0.0,
      "instantaneous_wwhrs_1_heat_recovered_10": 0.0,
      "instantaneous_wwhrs_1_heat_recovered_11": 0.0,
      "instantaneous_wwhrs_1_heat_recovered_12": 0.0,
      "instantaneous_wwhrs_2_total_volume_of_warm_water_draining_into_it_1": 0,
      "instantaneous_wwhrs_2_total_volume_of_warm_water_draining_into_it_2": 0,
      "instantaneous_wwhrs_2_total_volume_of_warm_water_draining_into_it_3": 0,
      "instantaneous_wwhrs_2_total_volume_of_warm_water_draining_into_it_4": 0,
      "instantaneous_wwhrs_2_total_volume_of_warm_water_draining_into_it_5": 0,
      "instantaneous_wwhrs_2_total_volume_of_warm_water_draining_into_it_6": 0,
      "instantaneous_wwhrs_2_total_volume_of_warm_water_draining_into_it_7": 0,
      "instantaneous_wwhrs_2_total_volume_of_warm_water_draining_into_it_8": 0,
      "instantaneous_wwhrs_2_total_volume_of_warm_water_draining_into_it_9": 0,
      "instantaneous_wwhrs_2_total_volume_of_warm_water_draining_into_it_10": 0,
      "instantaneous_wwhrs_2_total_volume_of_warm_water_draining_into_it_11": 0,
      "instantaneous_wwhrs_2_total_volume_of_warm_water_draining_into_it_12": 0,
      "instantaneous_wwhrs_2_heat_content_of_warm_water_draining_into_it_1": 0.0,
      "instantaneous_wwhrs_2_heat_content_of_warm_water_draining_into_it_2": 0.0,
      "instantaneous_wwhrs_2_heat_content_of_warm_water_draining_into_it_3": 0.0,
      "instantaneous_wwhrs_2_heat_content_of_warm_water_draining_into_it_4": 0.0,
      "instantaneous_wwhrs_2_heat_content_of_warm_water_draining_into_it_5": 0.0,
      "instantaneous_wwhrs_2_heat_content_of_warm_water_draining_into_it_6": 0.0,
      "instantaneous_wwhrs_2_heat_content_of_warm_water_draining_into_it_7": 0.0,
      "instantaneous_wwhrs_2_heat_content_of_warm_water_draining_into_it_8": 0.0,
      "instantaneous_wwhrs_2_heat_content_of_warm_water_draining_into_it_9": 0.0,
      "instantaneous_wwhrs_2_heat_content_of_warm_water_draining_into_it_10": 0.0,
      "instantaneous_wwhrs_2_heat_content_of_warm_water_draining_into_it_11": 0.0,
      "instantaneous_wwhrs_2_heat_content_of_warm_water_draining_into_it_12": 0.0,
      "instantaneous_wwhrs_2_average_shower_flow_rate": 0,
      "instantaneous_wwhrs_2_efficiency": null,
      "instantaneous_wwhrs_2_utilisation_factor": null,
      "instantaneous_wwhrs_2_heat_recovered_1": 0.0,
      "instantaneous_wwhrs_2_heat_recovered_2": 0.0,
      "instantaneous_wwhrs_2_heat_recovered_3": 0.0,
      "instantaneous_wwhrs_2_heat_recovered_4": 0.0,
      "instantaneous_wwhrs_2_heat_recovered_5": 0.0,
      "instantaneous_wwhrs_2_heat_recovered_6": 0.0,
      "instantaneous_wwhrs_2_heat_recovered_7": 0.0,
      "instantaneous_wwhrs_2_heat_recovered_8": 0.0,
      "instantaneous_wwhrs_2_heat_recovered_9": 0.0,
      "instantaneous_wwhrs_2_heat_recovered_10": 0.0,
      "instantaneous_wwhrs_2_heat_recovered_11": 0.0,
      "instantaneous_wwhrs_2_heat_recovered_12": 0.0,
      "storage_wwhrs_volume_of_warm_water_from_instantaneous_electric_showers_draining_into_it_1": 0,
      "storage_wwhrs_volume_of_warm_water_from_instantaneous_electric_showers_draining_into_it_2": 0,
      "storage_wwhrs_volume_of_warm_water_from_instantaneous_electric_showers_draining_into_it_3": 0,
      "storage_wwhrs_volume_of_warm_water_from_instantaneous_electric_showers_draining_into_it_4": 0,
      "storage_wwhrs_volume_of_warm_water_from_instantaneous_electric_showers_draining_into_it_5": 0,
      "storage_wwhrs_volume_of_warm_water_from_instantaneous_electric_showers_draining_into_it_6": 0,
      "storage_wwhrs_volume_of_warm_water_from_instantaneous_electric_showers_draining_into_it_7": 0,
      "storage_wwhrs_volume_of_warm_water_from_instantaneous_electric_showers_draining_into_it_8": 0,
      "storage_wwhrs_volume_of_warm_water_from_instantaneous_electric_showers_draining_into_it_9": 0,
      "storage_wwhrs_volume_of_warm_water_from_instantaneous_electric_showers_draining_into_it_10": 0,
      "storage_wwhrs_volume_of_warm_water_from_instantaneous_electric_showers_draining_into_it_11": 0,
      "storage_wwhrs_volume_of_warm_water_from_instantaneous_electric_showers_draining_into_it_12": 0,
      "storage_wwhrs_volume_of_warm_water_from_other_showers_draining_into_it_1": 0,
      "storage_wwhrs_volume_of_warm_water_from_other_showers_draining_into_it_2": 0,
      "storage_wwhrs_volume_of_warm_water_from_other_showers_draining_into_it_3": 0,
      "storage_wwhrs_volume_of_warm_water_from_other_showers_draining_into_it_4": 0,
      "storage_wwhrs_volume_of_warm_water_from_other_showers_draining_into_it_5": 0,
      "storage_wwhrs_volume_of_warm_water_from_other_showers_draining_into_it_6": 0,
      "storage_wwhrs_volume_of_warm_water_from_other_showers_draining_into_it_7": 0,
      "storage_wwhrs_volume_of_warm_water_from_other_showers_draining_into_it_8": 0,
      "storage_wwhrs_volume_of_warm_water_from_other_showers_draining_into_it_9": 0,
      "storage_wwhrs_volume_of_warm_water_from_other_showers_draining_into_it_10": 0,
      "storage_wwhrs_volume_of_warm_water_from_other_showers_draining_into_it_11": 0,
      "storage_wwhrs_volume_of_warm_water_from_other_showers_draining_into_it_12": 0,
      "storage_wwhrs_volume_of_warm_water_from_baths_draining_into_it_1": 0,
      "storage_wwhrs_volume_of_warm_water_from_baths_draining_into_it_2": 0,
      "storage_wwhrs_volume_of_warm_water_from_baths_draining_into_it_3": 0,
      "storage_wwhrs_volume_of_warm_water_from_baths_draining_into_it_4": 0,
      "storage_wwhrs_volume_of_warm_water_from_baths_draining_into_it_5": 0,
      "storage_wwhrs_volume_of_warm_water_from_baths_draining_into_it_6": 0,
      "storage_wwhrs_volume_of_warm_water_from_baths_draining_into_it_7": 0,
      "storage_wwhrs_volume_of_warm_water_from_baths_draining_into_it_8": 0,
      "storage_wwhrs_volume_of_warm_water_from_baths_draining_into_it_9": 0,
      "storage_wwhrs_volume_of_warm_water_from_baths_draining_into_it_10": 0,
      "storage_wwhrs_volume_of_warm_water_from_baths_draining_into_it_11": 0,
      "storage_wwhrs_volume_of_warm_water_from_baths_draining_into_it_12": 0,
      "storage_wwhrs_heat_content_of_all_shower_water_draining_into_it_1": 0,
      "storage_wwhrs_heat_content_of_all_shower_water_draining_into_it_2": 0,
      "storage_wwhrs_heat_content_of_all_shower_water_draining_into_it_3": 0,
      "storage_wwhrs_heat_content_of_all_shower_water_draining_into_it_4": 0,
      "storage_wwhrs_heat_content_of_all_shower_water_draining_into_it_5": 0,
      "storage_wwhrs_heat_content_of_all_shower_water_draining_into_it_6": 0,
      "storage_wwhrs_heat_content_of_all_shower_water_draining_into_it_7": 0,
      "storage_wwhrs_heat_content_of_all_shower_water_draining_into_it_8": 0,
      "storage_wwhrs_heat_content_of_all_shower_water_draining_into_it_9": 0,
      "storage_wwhrs_heat_content_of_all_shower_water_draining_into_it_10": 0,
      "storage_wwhrs_heat_content_of_all_shower_water_draining_into_it_11": 0,
      "storage_wwhrs_heat_content_of_all_shower_water_draining_into_it_12": 0,
      "storage_wwhrs_heat_content_of_bath_water_draining_into_it_1": 0,
      "storage_wwhrs_heat_content_of_bath_water_draining_into_it_2": 0,
      "storage_wwhrs_heat_content_of_bath_water_draining_into_it_3": 0,
      "storage_wwhrs_heat_content_of_bath_water_draining_into_it_4": 0,
      "storage_wwhrs_heat_content_of_bath_water_draining_into_it_5": 0,
      "storage_wwhrs_heat_content_of_bath_water_draining_into_it_6": 0,
      "storage_wwhrs_heat_content_of_bath_water_draining_into_it_7": 0,
      "storage_wwhrs_heat_content_of_bath_water_draining_into_it_8": 0,
      "storage_wwhrs_heat_content_of_bath_water_draining_into_it_9": 0,
      "storage_wwhrs_heat_content_of_bath_water_draining_into_it_10": 0,
      "storage_wwhrs_heat_content_of_bath_water_draining_into_it_11": 0,
      "storage_wwhrs_heat_content_of_bath_water_draining_into_it_12": 0,
      "storage_wwhrs_total_amount_of_heat_available_1": 0,
      "storage_wwhrs_total_amount_of_heat_available_2": 0,
      "storage_wwhrs_total_amount_of_heat_available_3": 0,
      "storage_wwhrs_total_amount_of_heat_available_4": 0,
      "storage_wwhrs_total_amount_of_heat_available_5": 0,
      "storage_wwhrs_total_amount_of_heat_available_6": 0,
      "storage_wwhrs_total_amount_of_heat_available_7": 0,
      "storage_wwhrs_total_amount_of_heat_available_8": 0,
      "storage_wwhrs_total_amount_of_heat_available_9": 0,
      "storage_wwhrs_total_amount_of_heat_available_10": 0,
      "storage_wwhrs_total_amount_of_heat_available_11": 0,
      "storage_wwhrs_total_amount_of_heat_available_12": 0,
      "storage_wwhrs_average_shower_flow_rate": 0,
      "storage_wwhrs_efficiency": null,
      "storage_wwhrs_utilisation_factor": null,
      "storage_wwhrs_heat_recovered_1": 0,
      "storage_wwhrs_heat_recovered_2": 0,
      "storage_wwhrs_heat_recovered_3": 0,
      "storage_wwhrs_heat_recovered_4": 0,
      "storage_wwhrs_heat_recovered_5": 0,
      "storage_wwhrs_heat_recovered_6": 0,
      "storage_wwhrs_heat_recovered_7": 0,
      "storage_wwhrs_heat_recovered_8": 0,
      "storage_wwhrs_heat_recovered_9": 0,
      "storage_wwhrs_heat_recovered_10": 0,
      "storage_wwhrs_heat_recovered_11": 0,
      "storage_wwhrs_heat_recovered_12": 0,
      "V_ww": null,
      "storage_wwhrs_heat_recovered_adjusted_1": 0,
      "storage_wwhrs_heat_recovered_adjusted_2": 0,
      "storage_wwhrs_heat_recovered_adjusted_3": 0,
      "storage_wwhrs_heat_recovered_adjusted_4": 0,
      "storage_wwhrs_heat_recovered_adjusted_5": 0,
      "storage_wwhrs_heat_recovered_adjusted_6": 0,
      "storage_wwhrs_heat_recovered_adjusted_7": 0,
      "storage_wwhrs_heat_recovered_adjusted_8": 0,
      "storage_wwhrs_heat_recovered_adjusted_9": 0,
      "storage_wwhrs_heat_recovered_adjusted_10": 0,
      "storage_wwhrs_heat_recovered_adjusted_11": 0,
      "storage_wwhrs_heat_recovered_adjusted_12": 0,
      "value_63a_1": -0.0,
      "value_63a_2": -0.0,
      "value_63a_3": -0.0,
      "value_63a_4": -0.0,
      "value_63a_5": -0.0,
      "value_63a_6": -0.0,
      "value_63a_7": -0.0,
      "value_63a_8": -0.0,
      "value_63a_9": -0.0,
      "value_63a_10": -0.0,
      "value_63a_11": -0.0,
      "value_63a_12": -0.0,
      "value_63b_1": 0,
      "value_63b_2": 0,
      "value_63b_3": 0,
      "value_63b_4": 0,
      "value_63b_5": 0,
      "value_63b_6": 0,
      "value_63b_7": 0,
      "value_63b_8": 0,
      "value_63b_9": 0,
      "value_63b_10": 0,
      "value_63b_11": 0,
      "value_63b_12": 0,
      "value_H1": null,
      "value_H2": null,
      "value_H3": null,
      "value_H4": null,
      "value_H5": null,
      "value_H6": null,
      "solar_heating_R_h_inc_1": null,
      "solar_heating_R_h_inc_2": null,
      "solar_heating_R_h_inc_3": null,
      "solar_heating_R_h_inc_4": null,
      "solar_heating_R_h_inc_5": null,
      "solar_heating_R_h_inc_6": null,
      "solar_heating_R_h_inc_7": null,
      "solar_heating_R_h_inc_8": null,
      "solar_heating_R_h_inc_9": null,
      "solar_heating_R_h_inc_10": null,
      "solar_heating_R_h_inc_11": null,
      "solar_heating_R_h_inc_12": null,
      "solar_heating_solar_flux_1": null,
      "solar_heating_solar_flux_2": null,
      "solar_heating_solar_flux_3": null,
      "solar_heating_solar_flux_4": null,
      "solar_heating_solar_flux_5": null,
      "solar_heating_solar_flux_6": null,
      "solar_heating_solar_flux_7": null,
      "solar_heating_solar_flux_8": null,
      "solar_heating_solar_flux_9": null,
      "solar_heating_solar_flux_10": null,
      "solar_heating_solar_flux_11": null,
      "solar_heating_solar_flux_12": null,
      "value_H7_1": null,
      "value_H7_2": null,
      "value_H7_3": null,
      "value_H7_4": null,
      "value_H7_5": null,
      "value_H7_6": null,
      "value_H7_7": null,
      "value_H7_8": null,
      "value_H7_9": null,
      "value_H7_10": null,
      "value_H7_11": null,
      "value_H7_12": null,
      "value_H8": null,
      "value_H9_1": null,
      "value_H9_2": null,
      "value_H9_3": null,
      "value_H9_4": null,
      "value_H9_5": null,
      "value_H9_6": null,
      "value_H9_7": null,
      "value_H9_8": null,
      "value_H9_9": null,
      "value_H9_10": null,
      "value_H9_11": null,
      "value_H9_12": null,
      "value_H10": null,
      "value_H11": null,
      "value_H12": null,
      "value_H13": null,
      "value_H14": null,
      "value_H15": null,
      "value_H16": null,
      "value_H17_1": null,
      "value_H17_2": null,
      "value_H17_3": null,
      "value_H17_4": null,
      "value_H17_5": null,
      "value_H17_6": null,
      "value_H17_7": null,
      "value_H17_8": null,
      "value_H17_9": null,
      "value_H17_10": null,
      "value_H17_11": null,
      "value_H17_12": null,
      "value_H18_1": null,
      "value_H18_2": null,
      "value_H18_3": null,
      "value_H18_4": null,
      "value_H18_5": null,
      "value_H18_6": null,
      "value_H18_7": null,
      "value_H18_8": null,
      "value_H18_9": null,
      "value_H18_10": null,
      "value_H18_11": null,
      "value_H18_12": null,
      "value_H19_1": null,
      "value_H19_2": null,
      "value_H19_3": null,
      "value_H19_4": null,
      "value_H19_5": null,
      "value_H19_6": null,
      "value_H19_7": null,
      "value_H19_8": null,
      "value_H19_9": null,
      "value_H19_10": null,
      "value_H19_11": null,
      "value_H19_12": null,
      "value_H20_1": null,
      "value_H20_2": null,
      "value_H20_3": null,
      "value_H20_4": null,
      "value_H20_5": null,
      "value_H20_6": null,
      "value_H20_7": null,
      "value_H20_8": null,
      "value_H20_9": null,
      "value_H20_10": null,
      "value_H20_11": null,
      "value_H20_12": null,
      "value_H21_1": null,
      "value_H21_2": null,
      "value_H21_3": null,
      "value_H21_4": null,
      "value_H21_5": null,
      "value_H21_6": null,
      "value_H21_7": null,
      "value_H21_8": null,
      "value_H21_9": null,
      "value_H21_10": null,
      "value_H21_11": null,
      "value_H21_12": null,
      "value_H22_1": null,
      "value_H22_2": null,
      "value_H22_3": null,
      "value_H22_4": null,
      "value_H22_5": null,
      "value_H22_6": null,
      "value_H22_7": null,
      "value_H22_8": null,
      "value_H22_9": null,
      "value_H22_10": null,
      "value_H22_11": null,
      "value_H22_12": null,
      "value_H23_1": null,
      "value_H23_2": null,
      "value_H23_3": null,
      "value_H23_4": null,
      "value_H23_5": null,
      "value_H23_6": null,
      "value_H23_7": null,
      "value_H23_8": null,
      "value_H23_9": null,
      "value_H23_10": null,
      "value_H23_11": null,
      "value_H23_12": null,
      "value_H24_1": null,
      "value_H24_2": null,
      "value_H24_3": null,
      "value_H24_4": null,
      "value_H24_5": null,
      "value_H24_6": null,
      "value_H24_7": null,
      "value_H24_8": null,
      "value_H24_9": null,
      "value_H24_10": null,
      "value_H24_11": null,
      "value_H24_12": null,
      "value_H24": null,
      "main_heating_flow_temperature": 70,
      "value_H25_1": null,
      "value_H25_2": null,
      "value_H25_3": null,
      "value_H25_4": null,
      "value_H25_5": null,
      "value_H25_6": null,
      "value_H25_7": null,
      "value_H25_8": null,
      "value_H25_9": null,
      "value_H25_10": null,
      "value_H25_11": null,
      "value_H25_12": null,
      "value_H26_1": null,
      "value_H26_2": null,
      "value_H26_3": null,
      "value_H26_4": null,
      "value_H26_5": null,
      "value_H26_6": null,
      "value_H26_7": null,
      "value_H26_8": null,
      "value_H26_9": null,
      "value_H26_10": null,
      "value_H26_11": null,
      "value_H26_12": null,
      "value_H27_1": null,
      "value_H27_2": null,
      "value_H27_3": null,
      "value_H27_4": null,
      "value_H27_5": null,
      "value_H27_6": null,
      "value_H27_7": null,
      "value_H27_8": null,
      "value_H27_9": null,
      "value_H27_10": null,
      "value_H27_11": null,
      "value_H27_12": null,
      "value_H28_1": null,
      "value_H28_2": null,
      "value_H28_3": null,
      "value_H28_4": null,
      "value_H28_5": null,
      "value_H28_6": null,
      "value_H28_7": null,
      "value_H28_8": null,
      "value_H28_9": null,
      "value_H28_10": null,
      "value_H28_11": null,
      "value_H28_12": null,
      "value_H29_1": null,
      "value_H29_2": null,
      "value_H29_3": null,
      "value_H29_4": null,
      "value_H29_5": null,
      "value_H29_6": null,
      "value_H29_7": null,
      "value_H29_8": null,
      "value_H29_9": null,
      "value_H29_10": null,
      "value_H29_11": null,
      "value_H29_12": null,
      "value_H29": null,
      "value_63c_1": -0.0,
      "value_63c_2": -0.0,
      "value_63c_3": -0.0,
      "value_63c_4": -0.0,
      "value_63c_5": -0.0,
      "value_63c_6": -0.0,
      "value_63c_7": -0.0,
      "value_63c_8": -0.0,
      "value_63c_9": -0.0,
      "value_63c_10": -0.0,
      "value_63c_11": -0.0,
      "value_63c_12": -0.0,
      "proportion_of_hot_water_energy_met_by_boiler": null,
      "V_k": null,
      "coincidence_of_hot_water_draw_off_and_boiler_firing_Kn_G7": null,
      "energy_content_of_water_heated_by_boiler_1": 206.05260723793148,
      "energy_content_of_water_heated_by_boiler_2": 181.1381963779314,
      "energy_content_of_water_heated_by_boiler_3": 190.26033764605992,
      "energy_content_of_water_heated_by_boiler_4": 162.72924747101962,
      "energy_content_of_water_heated_by_boiler_5": 154.51379382986423,
      "energy_content_of_water_heated_by_boiler_6": 135.77127039631566,
      "energy_content_of_water_heated_by_boiler_7": 131.75904997586105,
      "energy_content_of_water_heated_by_boiler_8": 139.10943078029405,
      "energy_content_of_water_heated_by_boiler_9": 142.92505778156638,
      "energy_content_of_water_heated_by_boiler_10": 163.4616367138863,
      "energy_content_of_water_heated_by_boiler_11": 178.71912832761433,
      "energy_content_of_water_heated_by_boiler_12": 203.26026089309184,
      "fghrs_no_heat_store_saving_G1_1": null,
      "fghrs_no_heat_store_saving_G1_2": null,
      "fghrs_no_heat_store_saving_G1_3": null,
      "fghrs_no_heat_store_saving_G1_4": null,
      "fghrs_no_heat_store_saving_G1_5": null,
      "fghrs_no_heat_store_saving_G1_6": null,
      "fghrs_no_heat_store_saving_G1_7": null,
      "fghrs_no_heat_store_saving_G1_8": null,
      "fghrs_no_heat_store_saving_G1_9": null,
      "fghrs_no_heat_store_saving_G1_10": null,
      "fghrs_no_heat_store_saving_G1_11": null,
      "fghrs_no_heat_store_saving_G1_12": null,
      "Q_sp_1": null,
      "Q_sp_2": null,
      "Q_sp_3": null,
      "Q_sp_4": null,
      "Q_sp_5": null,
      "Q_sp_6": null,
      "Q_sp_7": null,
      "Q_sp_8": null,
      "Q_sp_9": null,
      "Q_sp_10": null,
      "Q_sp_11": null,
      "Q_sp_12": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_letter_1": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_letter_2": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_letter_3": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_letter_4": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_letter_5": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_letter_6": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_letter_7": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_letter_8": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_letter_9": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_letter_10": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_letter_11": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_letter_12": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_letter_1": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_letter_2": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_letter_3": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_letter_4": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_letter_5": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_letter_6": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_letter_7": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_letter_8": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_letter_9": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_letter_10": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_letter_11": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_letter_12": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_1": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_2": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_3": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_4": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_5": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_6": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_7": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_8": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_9": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_10": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_11": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_upper_12": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_1": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_2": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_3": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_4": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_5": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_6": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_7": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_8": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_9": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_10": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_11": null,
      "main_heating_fghrs_space_heating_requirement_from_boiler_system_lower_12": null,
      "main_heating_fghrs_coefficient_a_upper_1": null,
      "main_heating_fghrs_coefficient_a_upper_2": null,
      "main_heating_fghrs_coefficient_a_upper_3": null,
      "main_heating_fghrs_coefficient_a_upper_4": null,
      "main_heating_fghrs_coefficient_a_upper_5": null,
      "main_heating_fghrs_coefficient_a_upper_6": null,
      "main_heating_fghrs_coefficient_a_upper_7": null,
      "main_heating_fghrs_coefficient_a_upper_8": null,
      "main_heating_fghrs_coefficient_a_upper_9": null,
      "main_heating_fghrs_coefficient_a_upper_10": null,
      "main_heating_fghrs_coefficient_a_upper_11": null,
      "main_heating_fghrs_coefficient_a_upper_12": null,
      "main_heating_fghrs_coefficient_a_lower_1": null,
      "main_heating_fghrs_coefficient_a_lower_2": null,
      "main_heating_fghrs_coefficient_a_lower_3": null,
      "main_heating_fghrs_coefficient_a_lower_4": null,
      "main_heating_fghrs_coefficient_a_lower_5": null,
      "main_heating_fghrs_coefficient_a_lower_6": null,
      "main_heating_fghrs_coefficient_a_lower_7": null,
      "main_heating_fghrs_coefficient_a_lower_8": null,
      "main_heating_fghrs_coefficient_a_lower_9": null,
      "main_heating_fghrs_coefficient_a_lower_10": null,
      "main_heating_fghrs_coefficient_a_lower_11": null,
      "main_heating_fghrs_coefficient_a_lower_12": null,
      "main_heating_fghrs_coefficient_b_upper_1": null,
      "main_heating_fghrs_coefficient_b_upper_2": null,
      "main_heating_fghrs_coefficient_b_upper_3": null,
      "main_heating_fghrs_coefficient_b_upper_4": null,
      "main_heating_fghrs_coefficient_b_upper_5": null,
      "main_heating_fghrs_coefficient_b_upper_6": null,
      "main_heating_fghrs_coefficient_b_upper_7": null,
      "main_heating_fghrs_coefficient_b_upper_8": null,
      "main_heating_fghrs_coefficient_b_upper_9": null,
      "main_heating_fghrs_coefficient_b_upper_10": null,
      "main_heating_fghrs_coefficient_b_upper_11": null,
      "main_heating_fghrs_coefficient_b_upper_12": null,
      "main_heating_fghrs_coefficient_b_lower_1": null,
      "main_heating_fghrs_coefficient_b_lower_2": null,
      "main_heating_fghrs_coefficient_b_lower_3": null,
      "main_heating_fghrs_coefficient_b_lower_4": null,
      "main_heating_fghrs_coefficient_b_lower_5": null,
      "main_heating_fghrs_coefficient_b_lower_6": null,
      "main_heating_fghrs_coefficient_b_lower_7": null,
      "main_heating_fghrs_coefficient_b_lower_8": null,
      "main_heating_fghrs_coefficient_b_lower_9": null,
      "main_heating_fghrs_coefficient_b_lower_10": null,
      "main_heating_fghrs_coefficient_b_lower_11": null,
      "main_heating_fghrs_coefficient_b_lower_12": null,
      "main_heating_fghrs_coefficient_c_upper_1": null,
      "main_heating_fghrs_coefficient_c_upper_2": null,
      "main_heating_fghrs_coefficient_c_upper_3": null,
      "main_heating_fghrs_coefficient_c_upper_4": null,
      "main_heating_fghrs_coefficient_c_upper_5": null,
      "main_heating_fghrs_coefficient_c_upper_6": null,
      "main_heating_fghrs_coefficient_c_upper_7": null,
      "main_heating_fghrs_coefficient_c_upper_8": null,
      "main_heating_fghrs_coefficient_c_upper_9": null,
      "main_heating_fghrs_coefficient_c_upper_10": null,
      "main_heating_fghrs_coefficient_c_upper_11": null,
      "main_heating_fghrs_coefficient_c_upper_12": null,
      "main_heating_fghrs_coefficient_c_lower_1": null,
      "main_heating_fghrs_coefficient_c_lower_2": null,
      "main_heating_fghrs_coefficient_c_lower_3": null,
      "main_heating_fghrs_coefficient_c_lower_4": null,
      "main_heating_fghrs_coefficient_c_lower_5": null,
      "main_heating_fghrs_coefficient_c_lower_6": null,
      "main_heating_fghrs_coefficient_c_lower_7": null,
      "main_heating_fghrs_coefficient_c_lower_8": null,
      "main_heating_fghrs_coefficient_c_lower_9": null,
      "main_heating_fghrs_coefficient_c_lower_10": null,
      "main_heating_fghrs_coefficient_c_lower_11": null,
      "main_heating_fghrs_coefficient_c_lower_12": null,
      "GF": null,
      "K_f": null,
      "S_0_upper_1": null,
      "S_0_upper_2": null,
      "S_0_upper_3": null,
      "S_0_upper_4": null,
      "S_0_upper_5": null,
      "S_0_upper_6": null,
      "S_0_upper_7": null,
      "S_0_upper_8": null,
      "S_0_upper_9": null,
      "S_0_upper_10": null,
      "S_0_upper_11": null,
      "S_0_upper_12": null,
      "S_0_lower_1": null,
      "S_0_lower_2": null,
      "S_0_lower_3": null,
      "S_0_lower_4": null,
      "S_0_lower_5": null,
      "S_0_lower_6": null,
      "S_0_lower_7": null,
      "S_0_lower_8": null,
      "S_0_lower_9": null,
      "S_0_lower_10": null,
      "S_0_lower_11": null,
      "S_0_lower_12": null,
      "S_0_1": null,
      "S_0_2": null,
      "S_0_3": null,
      "S_0_4": null,
      "S_0_5": null,
      "S_0_6": null,
      "S_0_7": null,
      "S_0_8": null,
      "S_0_9": null,
      "S_0_10": null,
      "S_0_11": null,
      "S_0_12": null,
      "S_1": null,
      "S_2": null,
      "S_3": null,
      "S_4": null,
      "S_5": null,
      "S_6": null,
      "S_7": null,
      "S_8": null,
      "S_9": null,
      "S_10": null,
      "S_11": null,
      "S_12": null,
      "value_63d_1": 0,
      "value_63d_2": 0,
      "value_63d_3": 0,
      "value_63d_4": 0,
      "value_63d_5": 0,
      "value_63d_6": 0,
      "value_63d_7": 0,
      "value_63d_8": 0,
      "value_63d_9": 0,
      "value_63d_10": 0,
      "value_63d_11": 0,
      "value_63d_12": 0,
      "value_64_1": 257.0115113475205,
      "value_64_2": 227.16559363820537,
      "value_64_3": 241.21924175564894,
      "value_64_4": 212.0443159641703,
      "value_64_5": 205.47269793945324,
      "value_64_6": 185.08633888946633,
      "value_64_7": 182.7179540854501,
      "value_64_8": 190.0683348898831,
      "value_64_9": 192.24012627471706,
      "value_64_10": 214.4205408234753,
      "value_64_11": 228.034196820765,
      "value_64_12": 254.21916500268088,
      "value_64": 2589.700017431436,
      "winter_efficiency_main_space_heating_system_1": 84,
      "efficiency_adjustment_main_space_heating_system_1": -5,
      "value_206": 79,
      "efficiency_adjustment_main_space_heating_system_2": null,
      "value_207": null,
      "value_208": null,
      "value_209": null,
      "value_211_1": 1899.6366351648865,
      "value_211_2": 1624.6364627292899,
      "value_211_3": 1571.9842326625062,
      "value_211_4": 1205.9425816619166,
      "value_211_5": 876.5417846319621,
      "value_211_10": 1035.4530312681725,
      "value_211_11": 1469.1006752889211,
      "value_211_12": 1920.174063531768,
      "value_211": 11603.469466939423,
      "value_213_1": null,
      "value_213_2": null,
      "value_213_3": null,
      "value_213_4": null,
      "value_213_5": null,
      "value_213_10": null,
      "value_213_11": null,
      "value_213_12": null,
      "value_213": null,
      "value_215_1": null,
      "value_215_2": null,
      "value_215_3": null,
      "value_215_4": null,
      "value_215_5": null,
      "value_215_10": null,
      "value_215_11": null,
      "value_215_12": null,
      "value_215": null,
      "efficiency_water_heater_1": 82.55153442807294,
      "efficiency_water_heater_2": 82.51105621396574,
      "efficiency_water_heater_3": 82.39190691947857,
      "efficiency_water_heater_4": 82.20413800391945,
      "efficiency_water_heater_5": 81.75507201256043,
      "efficiency_water_heater_6": 75.0,
      "efficiency_water_heater_7": 75.0,
      "efficiency_water_heater_8": 75.0,
      "efficiency_water_heater_9": 75.0,
      "efficiency_water_heater_10": 81.9574343223553,
      "efficiency_water_heater_11": 82.37669177030003,
      "efficiency_water_heater_12": 82.5776867156651,
      "efficiency_adjustment_water_heater": 0,
      "value_217_1": 82.55153442807294,
      "value_217_2": 82.51105621396574,
      "value_217_3": 82.39190691947857,
      "value_217_4": 82.20413800391945,
      "value_217_5": 81.75507201256043,
      "value_217_6": 75.0,
      "value_217_7": 75.0,
      "value_217_8": 75.0,
      "value_217_9": 75.0,
      "value_217_10": 81.9574343223553,
      "value_217_11": 82.37669177030003,
      "value_217_12": 82.5776867156651,
      "value_219_1": 311.3346264586449,
      "value_219_2": 275.31533840643715,
      "value_219_3": 292.77055329158964,
      "value_219_4": 257.9484696428057,
      "value_219_5": 251.3271566905176,
      "value_219_6": 246.78178518595513,
      "value_219_7": 243.6239387806001,
      "value_219_8": 253.4244465198441,
      "value_219_9": 256.3201683662894,
      "value_219_10": 261.6242719118263,
      "value_219_11": 276.8188329978312,
      "value_219_12": 307.85454898732974,
      "value_219": 3235.144137239671,
      "value_221_6": null,
      "value_221_7": null,
      "value_221_8": null,
      "value_221_9": null,
      "value_221": null,
      "value_230a": 0,
      "value_230b": 0,
      "value_230c": 115,
      "value_230d": 0,
      "value_230e": 0,
      "value_230f": 0,
      "value_230g": 0,
      "value_230h": 0,
      "value_231": 115,
      "value_231_1": 9.767123287671232,
      "value_231_2": 8.821917808219178,
      "value_231_3": 9.767123287671232,
      "value_231_4": 9.452054794520548,
      "value_231_5": 9.767123287671232,
      "value_231_6": 9.452054794520548,
      "value_231_7": 9.767123287671232,
      "value_231_8": 9.767123287671232,
      "value_231_9": 9.452054794520548,
      "value_231_10": 9.767123287671232,
      "value_231_11": 9.452054794520548,
      "value_231_12": 9.767123287671232,
      "value_232": 527.8388682281746,
      "E_PV": 0,
      "E_PV_1": 0,
      "E_PV_2": 0,
      "E_PV_3": 0,
      "E_PV_4": 0,
      "E_PV_5": 0,
      "E_PV_6": 0,
      "E_PV_7": 0,
      "E_PV_8": 0,
      "E_PV_9": 0,
      "E_PV_10": 0,
      "E_PV_11": 0,
      "E_PV_12": 0,
      "value_240a": null,
      "value_240b": null,
      "value_241a": null,
      "value_241b": null,
      "value_242a": null,
      "value_242b": null,
      "value_243": null,
      "applicable_space_heating_electricity_consumption_to_which_pv_can_contribute_1": 0,
      "applicable_space_heating_electricity_consumption_to_which_pv_can_contribute_2": 0,
      "applicable_space_heating_electricity_consumption_to_which_pv_can_contribute_3": 0,
      "applicable_space_heating_electricity_consumption_to_which_pv_can_contribute_4": 0,
      "applicable_space_heating_electricity_consumption_to_which_pv_can_contribute_5": 0,
      "applicable_space_heating_electricity_consumption_to_which_pv_can_contribute_6": 0,
      "applicable_space_heating_electricity_consumption_to_which_pv_can_contribute_7": 0,
      "applicable_space_heating_electricity_consumption_to_which_pv_can_contribute_8": 0,
      "applicable_space_heating_electricity_consumption_to_which_pv_can_contribute_9": 0,
      "applicable_space_heating_electricity_consumption_to_which_pv_can_contribute_10": 0,
      "applicable_space_heating_electricity_consumption_to_which_pv_can_contribute_11": 0,
      "applicable_space_heating_electricity_consumption_to_which_pv_can_contribute_12": 0,
      "applicable_water_heating_electricity_consumption_to_which_pv_can_contribute_1": 0,
      "applicable_water_heating_electricity_consumption_to_which_pv_can_contribute_2": 0,
      "applicable_water_heating_electricity_consumption_to_which_pv_can_contribute_3": 0,
      "applicable_water_heating_electricity_consumption_to_which_pv_can_contribute_4": 0,
      "applicable_water_heating_electricity_consumption_to_which_pv_can_contribute_5": 0,
      "applicable_water_heating_electricity_consumption_to_which_pv_can_contribute_6": 0,
      "applicable_water_heating_electricity_consumption_to_which_pv_can_contribute_7": 0,
      "applicable_water_heating_electricity_consumption_to_which_pv_can_contribute_8": 0,
      "applicable_water_heating_electricity_consumption_to_which_pv_can_contribute_9": 0,
      "applicable_water_heating_electricity_consumption_to_which_pv_can_contribute_10": 0,
      "applicable_water_heating_electricity_consumption_to_which_pv_can_contribute_11": 0,
      "applicable_water_heating_electricity_consumption_to_which_pv_can_contribute_12": 0,
      "applicable_electricity_consumption_to_which_pv_can_contribute_1": null,
      "applicable_electricity_consumption_to_which_pv_can_contribute_2": null,
      "applicable_electricity_consumption_to_which_pv_can_contribute_3": null,
      "applicable_electricity_consumption_to_which_pv_can_contribute_4": null,
      "applicable_electricity_consumption_to_which_pv_can_contribute_5": null,
      "applicable_electricity_consumption_to_which_pv_can_contribute_6": null,
      "applicable_electricity_consumption_to_which_pv_can_contribute_7": null,
      "applicable_electricity_consumption_to_which_pv_can_contribute_8": null,
      "applicable_electricity_consumption_to_which_pv_can_contribute_9": null,
      "applicable_electricity_consumption_to_which_pv_can_contribute_10": null,
      "applicable_electricity_consumption_to_which_pv_can_contribute_11": null,
      "applicable_electricity_consumption_to_which_pv_can_contribute_12": null,
      "pv_supply_demand_ratio_1": null,
      "pv_supply_demand_ratio_2": null,
      "pv_supply_demand_ratio_3": null,
      "pv_supply_demand_ratio_4": null,
      "pv_supply_demand_ratio_5": null,
      "pv_supply_demand_ratio_6": null,
      "pv_supply_demand_ratio_7": null,
      "pv_supply_demand_ratio_8": null,
      "pv_supply_demand_ratio_9": null,
      "pv_supply_demand_ratio_10": null,
      "pv_supply_demand_ratio_11": null,
      "pv_supply_demand_ratio_12": null,
      "C_bat": null,
      "beta_factor_coefficient_C_PV1": null,
      "beta_factor_coefficient_C_PV2": null,
      "beta_factor_coefficient_C_PV3": null,
      "beta_factor_1": 0,
      "beta_factor_2": 0,
      "beta_factor_3": 0,
      "beta_factor_4": 0,
      "beta_factor_5": 0,
      "beta_factor_6": 0,
      "beta_factor_7": 0,
      "beta_factor_8": 0,
      "beta_factor_9": 0,
      "beta_factor_10": 0,
      "beta_factor_11": 0,
      "beta_factor_12": 0,
      "pv_generation_used_within_the_dwelling_1": null,
      "pv_generation_used_within_the_dwelling_2": null,
      "pv_generation_used_within_the_dwelling_3": null,
      "pv_generation_used_within_the_dwelling_4": null,
      "pv_generation_used_within_the_dwelling_5": null,
      "pv_generation_used_within_the_dwelling_6": null,
      "pv_generation_used_within_the_dwelling_7": null,
      "pv_generation_used_within_the_dwelling_8": null,
      "pv_generation_used_within_the_dwelling_9": null,
      "pv_generation_used_within_the_dwelling_10": null,
      "pv_generation_used_within_the_dwelling_11": null,
      "pv_generation_used_within_the_dwelling_12": null,
      "pv_generation_exported_1": null,
      "pv_generation_exported_2": null,
      "pv_generation_exported_3": null,
      "pv_generation_exported_4": null,
      "pv_generation_exported_5": null,
      "pv_generation_exported_6": null,
      "pv_generation_exported_7": null,
      "pv_generation_exported_8": null,
      "pv_generation_exported_9": null,
      "pv_generation_exported_10": null,
      "pv_generation_exported_11": null,
      "pv_generation_exported_12": null,
      "value_233a_1": null,
      "value_233a_2": null,
      "value_233a_3": null,
      "value_233a_4": null,
      "value_233a_5": null,
      "value_233a_6": null,
      "value_233a_7": null,
      "value_233a_8": null,
      "value_233a_9": null,
      "value_233a_10": null,
      "value_233a_11": null,
      "value_233a_12": null,
      "value_233a": null,
      "value_234a_1": null,
      "value_234a_2": null,
      "value_234a_3": null,
      "value_234a_4": null,
      "value_234a_5": null,
      "value_234a_6": null,
      "value_234a_7": null,
      "value_234a_8": null,
      "value_234a_9": null,
      "value_234a_10": null,
      "value_234a_11": null,
      "value_234a_12": null,
      "value_234a": null,
      "value_235a_1": null,
      "value_235a_2": null,
      "value_235a_3": null,
      "value_235a_4": null,
      "value_235a_5": null,
      "value_235a_6": null,
      "value_235a_7": null,
      "value_235a_8": null,
      "value_235a_9": null,
      "value_235a_10": null,
      "value_235a_11": null,
      "value_235a_12": null,
      "value_235a": null,
      "value_235c_1": null,
      "value_235c_2": null,
      "value_235c_3": null,
      "value_235c_4": null,
      "value_235c_5": null,
      "value_235c_6": null,
      "value_235c_7": null,
      "value_235c_8": null,
      "value_235c_9": null,
      "value_235c_10": null,
      "value_235c_11": null,
      "value_235c_12": null,
      "value_235c": null,
      "value_233b_1": null,
      "value_233b_2": null,
      "value_233b_3": null,
      "value_233b_4": null,
      "value_233b_5": null,
      "value_233b_6": null,
      "value_233b_7": null,
      "value_233b_8": null,
      "value_233b_9": null,
      "value_233b_10": null,
      "value_233b_11": null,
      "value_233b_12": null,
      "value_233b": null,
      "value_234b_1": null,
      "value_234b_2": null,
      "value_234b_3": null,
      "value_234b_4": null,
      "value_234b_5": null,
      "value_234b_6": null,
      "value_234b_7": null,
      "value_234b_8": null,
      "value_234b_9": null,
      "value_234b_10": null,
      "value_234b_11": null,
      "value_234b_12": null,
      "value_234b": null,
      "value_235b_1": null,
      "value_235b_2": null,
      "value_235b_3": null,
      "value_235b_4": null,
      "value_235b_5": null,
      "value_235b_6": null,
      "value_235b_7": null,
      "value_235b_8": null,
      "value_235b_9": null,
      "value_235b_10": null,
      "value_235b_11": null,
      "value_235b_12": null,
      "value_235b": null,
      "value_235d_1": null,
      "value_235d_2": null,
      "value_235d_3": null,
      "value_235d_4": null,
      "value_235d_5": null,
      "value_235d_6": null,
      "value_235d_7": null,
      "value_235d_8": null,
      "value_235d_9": null,
      "value_235d_10": null,
      "value_235d_11": null,
      "value_235d_12": null,
      "value_235d": null,
      "value_233": null,
      "value_234": null,
      "value_235_hydro": null,
      "value_235_mchp": null,
      "value_238": 15481.452472407269,
      "electricity_fuel_code": 30,
      "electricity_unit_price": 16.49,
      "space_heating_main_system_1_high_rate_fuel_price": null,
      "value_240c": null,
      "space_heating_main_system_1_low_rate_fuel_price": null,
      "value_240d": null,
      "space_heating_main_system_1_other_fuel_price": 3.64,
      "value_240e": 422.36628859659504,
      "value_240": 422.36628859659504,
      "space_heating_main_system_2_high_rate_fuel_price": null,
      "value_241c": null,
      "space_heating_main_system_2_low_rate_fuel_price": null,
      "value_241d": null,
      "space_heating_main_system_2_other_fuel_price": null,
      "value_241e": null,
      "value_241": 0,
      "space_heating_secondary_high_rate_fuel_price": null,
      "value_242c": null,
      "space_heating_secondary_low_rate_fuel_price": null,
      "value_242d": null,
      "space_heating_secondary_other_fuel_price": null,
      "value_242e": null,
      "value_242": 0,
      "value_244": null,
      "water_heating_high_rate_fuel_price": null,
      "value_245": null,
      "water_heating_low_rate_fuel_price": null,
      "value_246": null,
      "water_heating_other_fuel_price": 3.64,
      "value_247": 117.75924659552403,
      "value_247a": null,
      "value_248": null,
      "value_249": 18.9635,
      "value_250": 87.040629370826,
      "value_251": 92,
      "electricity_sold_to_grid_pv_unit_price": 5.59,
      "electricity_sold_to_grid_other_unit_price": 5.59,
      "value_252": 0.0,
      "value_253": null,
      "value_254": null,
      "value_255": 738.129664562945,
      "value_256": 0.36,
      "value_257": 1.832597787880415,
      "sap_value": 70.29358985845847,
      "value_258": 70,
      "sap_band": "C",
      "space_heating_main_heating_1_emission_factor_1": 0.21,
      "space_heating_main_heating_1_emission_factor_2": 0.21,
      "space_heating_main_heating_1_emission_factor_3": 0.21,
      "space_heating_main_heating_1_emission_factor_4": 0.21,
      "space_heating_main_heating_1_emission_factor_5": 0.21,
      "space_heating_main_heating_1_emission_factor_6": 0.21,
      "space_heating_main_heating_1_emission_factor_7": 0.21,
      "space_heating_main_heating_1_emission_factor_8": 0.21,
      "space_heating_main_heating_1_emission_factor_9": 0.21,
      "space_heating_main_heating_1_emission_factor_10": 0.21,
      "space_heating_main_heating_1_emission_factor_11": 0.21,
      "space_heating_main_heating_1_emission_factor_12": 0.21,
      "space_heating_main_heating_1_emission_factor_high_rate_1": null,
      "space_heating_main_heating_1_emission_factor_high_rate_2": null,
      "space_heating_main_heating_1_emission_factor_high_rate_3": null,
      "space_heating_main_heating_1_emission_factor_high_rate_4": null,
      "space_heating_main_heating_1_emission_factor_high_rate_5": null,
      "space_heating_main_heating_1_emission_factor_high_rate_6": null,
      "space_heating_main_heating_1_emission_factor_high_rate_7": null,
      "space_heating_main_heating_1_emission_factor_high_rate_8": null,
      "space_heating_main_heating_1_emission_factor_high_rate_9": null,
      "space_heating_main_heating_1_emission_factor_high_rate_10": null,
      "space_heating_main_heating_1_emission_factor_high_rate_11": null,
      "space_heating_main_heating_1_emission_factor_high_rate_12": null,
      "space_heating_main_heating_1_emission_factor_low_rate_1": null,
      "space_heating_main_heating_1_emission_factor_low_rate_2": null,
      "space_heating_main_heating_1_emission_factor_low_rate_3": null,
      "space_heating_main_heating_1_emission_factor_low_rate_4": null,
      "space_heating_main_heating_1_emission_factor_low_rate_5": null,
      "space_heating_main_heating_1_emission_factor_low_rate_6": null,
      "space_heating_main_heating_1_emission_factor_low_rate_7": null,
      "space_heating_main_heating_1_emission_factor_low_rate_8": null,
      "space_heating_main_heating_1_emission_factor_low_rate_9": null,
      "space_heating_main_heating_1_emission_factor_low_rate_10": null,
      "space_heating_main_heating_1_emission_factor_low_rate_11": null,
      "space_heating_main_heating_1_emission_factor_low_rate_12": null,
      "space_heating_main_heating_1_emission_factor_description": "0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21",
      "value_261_1": 398.9236933846261,
      "value_261_2": 341.17365717315084,
      "value_261_3": 330.11668885912627,
      "value_261_4": 253.24794214900248,
      "value_261_5": 184.07377477271203,
      "value_261_10": 217.44513656631622,
      "value_261_11": 308.51114181067345,
      "value_261_12": 403.23655334167125,
      "value_261": 2436.7285880572786,
      "space_heating_main_heating_2_emission_factor_1": null,
      "space_heating_main_heating_2_emission_factor_2": null,
      "space_heating_main_heating_2_emission_factor_3": null,
      "space_heating_main_heating_2_emission_factor_4": null,
      "space_heating_main_heating_2_emission_factor_5": null,
      "space_heating_main_heating_2_emission_factor_6": null,
      "space_heating_main_heating_2_emission_factor_7": null,
      "space_heating_main_heating_2_emission_factor_8": null,
      "space_heating_main_heating_2_emission_factor_9": null,
      "space_heating_main_heating_2_emission_factor_10": null,
      "space_heating_main_heating_2_emission_factor_11": null,
      "space_heating_main_heating_2_emission_factor_12": null,
      "space_heating_main_heating_2_emission_factor_high_rate_1": null,
      "space_heating_main_heating_2_emission_factor_high_rate_2": null,
      "space_heating_main_heating_2_emission_factor_high_rate_3": null,
      "space_heating_main_heating_2_emission_factor_high_rate_4": null,
      "space_heating_main_heating_2_emission_factor_high_rate_5": null,
      "space_heating_main_heating_2_emission_factor_high_rate_6": null,
      "space_heating_main_heating_2_emission_factor_high_rate_7": null,
      "space_heating_main_heating_2_emission_factor_high_rate_8": null,
      "space_heating_main_heating_2_emission_factor_high_rate_9": null,
      "space_heating_main_heating_2_emission_factor_high_rate_10": null,
      "space_heating_main_heating_2_emission_factor_high_rate_11": null,
      "space_heating_main_heating_2_emission_factor_high_rate_12": null,
      "space_heating_main_heating_2_emission_factor_low_rate_1": null,
      "space_heating_main_heating_2_emission_factor_low_rate_2": null,
      "space_heating_main_heating_2_emission_factor_low_rate_3": null,
      "space_heating_main_heating_2_emission_factor_low_rate_4": null,
      "space_heating_main_heating_2_emission_factor_low_rate_5": null,
      "space_heating_main_heating_2_emission_factor_low_rate_6": null,
      "space_heating_main_heating_2_emission_factor_low_rate_7": null,
      "space_heating_main_heating_2_emission_factor_low_rate_8": null,
      "space_heating_main_heating_2_emission_factor_low_rate_9": null,
      "space_heating_main_heating_2_emission_factor_low_rate_10": null,
      "space_heating_main_heating_2_emission_factor_low_rate_11": null,
      "space_heating_main_heating_2_emission_factor_low_rate_12": null,
      "space_heating_main_heating_2_emission_factor_description": null,
      "value_262_1": null,
      "value_262_2": null,
      "value_262_3": null,
      "value_262_4": null,
      "value_262_5": null,
      "value_262_10": null,
      "value_262_11": null,
      "value_262_12": null,
      "value_262": null,
      "space_heating_secondary_heating_emission_factor_1": null,
      "space_heating_secondary_heating_emission_factor_2": null,
      "space_heating_secondary_heating_emission_factor_3": null,
      "space_heating_secondary_heating_emission_factor_4": null,
      "space_heating_secondary_heating_emission_factor_5": null,
      "space_heating_secondary_heating_emission_factor_6": null,
      "space_heating_secondary_heating_emission_factor_7": null,
      "space_heating_secondary_heating_emission_factor_8": null,
      "space_heating_secondary_heating_emission_factor_9": null,
      "space_heating_secondary_heating_emission_factor_10": null,
      "space_heating_secondary_heating_emission_factor_11": null,
      "space_heating_secondary_heating_emission_factor_12": null,
      "space_heating_secondary_heating_emission_factor_high_rate_1": null,
      "space_heating_secondary_heating_emission_factor_high_rate_2": null,
      "space_heating_secondary_heating_emission_factor_high_rate_3": null,
      "space_heating_secondary_heating_emission_factor_high_rate_4": null,
      "space_heating_secondary_heating_emission_factor_high_rate_5": null,
      "space_heating_secondary_heating_emission_factor_high_rate_6": null,
      "space_heating_secondary_heating_emission_factor_high_rate_7": null,
      "space_heating_secondary_heating_emission_factor_high_rate_8": null,
      "space_heating_secondary_heating_emission_factor_high_rate_9": null,
      "space_heating_secondary_heating_emission_factor_high_rate_10": null,
      "space_heating_secondary_heating_emission_factor_high_rate_11": null,
      "space_heating_secondary_heating_emission_factor_high_rate_12": null,
      "space_heating_secondary_heating_emission_factor_low_rate_1": null,
      "space_heating_secondary_heating_emission_factor_low_rate_2": null,
      "space_heating_secondary_heating_emission_factor_low_rate_3": null,
      "space_heating_secondary_heating_emission_factor_low_rate_4": null,
      "space_heating_secondary_heating_emission_factor_low_rate_5": null,
      "space_heating_secondary_heating_emission_factor_low_rate_6": null,
      "space_heating_secondary_heating_emission_factor_low_rate_7": null,
      "space_heating_secondary_heating_emission_factor_low_rate_8": null,
      "space_heating_secondary_heating_emission_factor_low_rate_9": null,
      "space_heating_secondary_heating_emission_factor_low_rate_10": null,
      "space_heating_secondary_heating_emission_factor_low_rate_11": null,
      "space_heating_secondary_heating_emission_factor_low_rate_12": null,
      "space_heating_secondary_heating_emission_factor_description": null,
      "value_263_1": null,
      "value_263_2": null,
      "value_263_3": null,
      "value_263_4": null,
      "value_263_5": null,
      "value_263_10": null,
      "value_263_11": null,
      "value_263_12": null,
      "value_263": null,
      "water_heating_emission_factor_1": 0.21,
      "water_heating_emission_factor_2": 0.21,
      "water_heating_emission_factor_3": 0.21,
      "water_heating_emission_factor_4": 0.21,
      "water_heating_emission_factor_5": 0.21,
      "water_heating_emission_factor_6": 0.21,
      "water_heating_emission_factor_7": 0.21,
      "water_heating_emission_factor_8": 0.21,
      "water_heating_emission_factor_9": 0.21,
      "water_heating_emission_factor_10": 0.21,
      "water_heating_emission_factor_11": 0.21,
      "water_heating_emission_factor_12": 0.21,
      "water_heating_emission_factor_high_rate_1": null,
      "water_heating_emission_factor_high_rate_2": null,
      "water_heating_emission_factor_high_rate_3": null,
      "water_heating_emission_factor_high_rate_4": null,
      "water_heating_emission_factor_high_rate_5": null,
      "water_heating_emission_factor_high_rate_6": null,
      "water_heating_emission_factor_high_rate_7": null,
      "water_heating_emission_factor_high_rate_8": null,
      "water_heating_emission_factor_high_rate_9": null,
      "water_heating_emission_factor_high_rate_10": null,
      "water_heating_emission_factor_high_rate_11": null,
      "water_heating_emission_factor_high_rate_12": null,
      "water_heating_emission_factor_low_rate_1": null,
      "water_heating_emission_factor_low_rate_2": null,
      "water_heating_emission_factor_low_rate_3": null,
      "water_heating_emission_factor_low_rate_4": null,
      "water_heating_emission_factor_low_rate_5": null,
      "water_heating_emission_factor_low_rate_6": null,
      "water_heating_emission_factor_low_rate_7": null,
      "water_heating_emission_factor_low_rate_8": null,
      "water_heating_emission_factor_low_rate_9": null,
      "water_heating_emission_factor_low_rate_10": null,
      "water_heating_emission_factor_low_rate_11": null,
      "water_heating_emission_factor_low_rate_12": null,
      "water_heating_emission_factor_description": "0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21, 0.21",
      "value_264_1": 65.38027155631542,
      "value_264_2": 57.8162210653518,
      "value_264_3": 61.48181619123382,
      "value_264_4": 54.1691786249892,
      "value_264_5": 52.77870290500869,
      "value_264_6": 51.824174889050575,
      "value_264_7": 51.16102714392602,
      "value_264_8": 53.219133769167264,
      "value_264_9": 53.827235356920774,
      "value_264_10": 54.94109710148353,
      "value_264_11": 58.13195492954455,
      "value_264_12": 64.64945528733924,
      "value_264": 679.3802688203309,
      "electricity_emissions_1": 0.163,
      "electricity_emissions_2": 0.16,
      "electricity_emissions_3": 0.153,
      "electricity_emissions_4": 0.143,
      "electricity_emissions_5": 0.132,
      "electricity_emissions_6": 0.12,
      "electricity_emissions_7": 0.111,
      "electricity_emissions_8": 0.112,
      "electricity_emissions_9": 0.122,
      "electricity_emissions_10": 0.136,
      "electricity_emissions_11": 0.151,
      "electricity_emissions_12": 0.163,
      "instantaneous_electric_showers_emission_factor_1": null,
      "instantaneous_electric_showers_emission_factor_2": null,
      "instantaneous_electric_showers_emission_factor_3": null,
      "instantaneous_electric_showers_emission_factor_4": null,
      "instantaneous_electric_showers_emission_factor_5": null,
      "instantaneous_electric_showers_emission_factor_6": null,
      "instantaneous_electric_showers_emission_factor_7": null,
      "instantaneous_electric_showers_emission_factor_8": null,
      "instantaneous_electric_showers_emission_factor_9": null,
      "instantaneous_electric_showers_emission_factor_10": null,
      "instantaneous_electric_showers_emission_factor_11": null,
      "instantaneous_electric_showers_emission_factor_12": null,
      "instantaneous_electric_showers_emission_factor_description": null,
      "value_264a_1": null,
      "value_264a_2": null,
      "value_264a_3": null,
      "value_264a_4": null,
      "value_264a_5": null,
      "value_264a_6": null,
      "value_264a_7": null,
      "value_264a_8": null,
      "value_264a_9": null,
      "value_264a_10": null,
      "value_264a_11": null,
      "value_264a_12": null,
      "value_264a": null,
      "value_265": 3116.1088568776095,
      "space_cooling_emission_factor_6": null,
      "space_cooling_emission_factor_7": null,
      "space_cooling_emission_factor_8": null,
      "space_cooling_emission_factor_9": null,
      "space_cooling_emission_factor_description": null,
      "value_266_6": null,
      "value_266_7": null,
      "value_266_8": null,
      "value_266_9": null,
      "value_266": null,
      "pumps_fans_and_electric_keep_hot_emission_factor_1": 0.163,
      "pumps_fans_and_electric_keep_hot_emission_factor_2": 0.16,
      "pumps_fans_and_electric_keep_hot_emission_factor_3": 0.153,
      "pumps_fans_and_electric_keep_hot_emission_factor_4": 0.143,
      "pumps_fans_and_electric_keep_hot_emission_factor_5": 0.132,
      "pumps_fans_and_electric_keep_hot_emission_factor_6": 0.12,
      "pumps_fans_and_electric_keep_hot_emission_factor_7": 0.111,
      "pumps_fans_and_electric_keep_hot_emission_factor_8": 0.112,
      "pumps_fans_and_electric_keep_hot_emission_factor_9": 0.122,
      "pumps_fans_and_electric_keep_hot_emission_factor_10": 0.136,
      "pumps_fans_and_electric_keep_hot_emission_factor_11": 0.151,
      "pumps_fans_and_electric_keep_hot_emission_factor_12": 0.163,
      "pumps_fans_and_electric_keep_hot_emission_factor_description": "0.163, 0.16, 0.153, 0.143, 0.132, 0.12, 0.111, 0.112, 0.122, 0.136, 0.151, 0.163",
      "value_267_1": 1.592041095890411,
      "value_267_2": 1.4115068493150684,
      "value_267_3": 1.4943698630136986,
      "value_267_4": 1.3516438356164382,
      "value_267_5": 1.2892602739726027,
      "value_267_6": 1.1342465753424658,
      "value_267_7": 1.0841506849315068,
      "value_267_8": 1.093917808219178,
      "value_267_9": 1.1531506849315067,
      "value_267_10": 1.3283287671232877,
      "value_267_11": 1.4272602739726026,
      "value_267_12": 1.592041095890411,
      "value_267": 15.951917808219177,
      "lighting_emission_factor_1": 0.163,
      "lighting_emission_factor_2": 0.16,
      "lighting_emission_factor_3": 0.153,
      "lighting_emission_factor_4": 0.143,
      "lighting_emission_factor_5": 0.132,
      "lighting_emission_factor_6": 0.12,
      "lighting_emission_factor_7": 0.111,
      "lighting_emission_factor_8": 0.112,
      "lighting_emission_factor_9": 0.122,
      "lighting_emission_factor_10": 0.136,
      "lighting_emission_factor_11": 0.151,
      "lighting_emission_factor_12": 0.163,
      "lighting_emission_factor_description": "0.163, 0.16, 0.153, 0.143, 0.132, 0.12, 0.111, 0.112, 0.122, 0.136, 0.151, 0.163",
      "value_268_1": 10.660672575852496,
      "value_268_2": 8.394981739259299,
      "value_268_3": 7.228054804480157,
      "value_268_4": 4.949466265042053,
      "value_268_5": 3.5290246982576376,
      "value_268_6": 2.6211303966109423,
      "value_268_7": 2.707133922337036,
      "value_268_8": 3.550536383002201,
      "value_268_9": 5.023563090951031,
      "value_268_10": 7.3475522098526245,
      "value_268_11": 9.21437911800422,
      "value_268_12": 10.95696563237161,
      "value_268": 76.18346083602131,
      "electricity_sold_to_grid_pv_emissions_1": 0.196,
      "electricity_sold_to_grid_pv_emissions_2": 0.19,
      "electricity_sold_to_grid_pv_emissions_3": 0.175,
      "electricity_sold_to_grid_pv_emissions_4": 0.153,
      "electricity_sold_to_grid_pv_emissions_5": 0.129,
      "electricity_sold_to_grid_pv_emissions_6": 0.106,
      "electricity_sold_to_grid_pv_emissions_7": 0.092,
      "electricity_sold_to_grid_pv_emissions_8": 0.093,
      "electricity_sold_to_grid_pv_emissions_9": 0.11,
      "electricity_sold_to_grid_pv_emissions_10": 0.138,
      "electricity_sold_to_grid_pv_emissions_11": 0.169,
      "electricity_sold_to_grid_pv_emissions_12": 0.197,
      "electricity_sold_to_grid_other_emissions_1": 0.163,
      "electricity_sold_to_grid_other_emissions_2": 0.16,
      "electricity_sold_to_grid_other_emissions_3": 0.153,
      "electricity_sold_to_grid_other_emissions_4": 0.143,
      "electricity_sold_to_grid_other_emissions_5": 0.132,
      "electricity_sold_to_grid_other_emissions_6": 0.12,
      "electricity_sold_to_grid_other_emissions_7": 0.111,
      "electricity_sold_to_grid_other_emissions_8": 0.112,
      "electricity_sold_to_grid_other_emissions_9": 0.122,
      "electricity_sold_to_grid_other_emissions_10": 0.136,
      "electricity_sold_to_grid_other_emissions_11": 0.151,
      "electricity_sold_to_grid_other_emissions_12": 0.163,
      "value_269_1": null,
      "value_269_2": null,
      "value_269_3": null,
      "value_269_4": null,
      "value_269_5": null,
      "value_269_6": null,
      "value_269_7": null,
      "value_269_8": null,
      "value_269_9": null,
      "value_269_10": null,
      "value_269_11": null,
      "value_269_12": null,
      "value_269": null,
      "value_270": null,
      "value_271": null,
      "value_272": 3208.24423552185,
      "value_273": 32.0824423552185,
      "CF": 22.125822313943793,
      "EI_value": 70.35139809931532,
      "value_274": 70,
      "EI_band": "C",
      "space_heating_main_heating_1_primary_energy_factor_1": 1.13,
      "space_heating_main_heating_1_primary_energy_factor_2": 1.13,
      "space_heating_main_heating_1_primary_energy_factor_3": 1.13,
      "space_heating_main_heating_1_primary_energy_factor_4": 1.13,
      "space_heating_main_heating_1_primary_energy_factor_5": 1.13,
      "space_heating_main_heating_1_primary_energy_factor_6": 1.13,
      "space_heating_main_heating_1_primary_energy_factor_7": 1.13,
      "space_heating_main_heating_1_primary_energy_factor_8": 1.13,
      "space_heating_main_heating_1_primary_energy_factor_9": 1.13,
      "space_heating_main_heating_1_primary_energy_factor_10": 1.13,
      "space_heating_main_heating_1_primary_energy_factor_11": 1.13,
      "space_heating_main_heating_1_primary_energy_factor_12": 1.13,
      "space_heating_main_heating_1_primary_energy_factor_high_rate_1": null,
      "space_heating_main_heating_1_primary_energy_factor_high_rate_2": null,
      "space_heating_main_heating_1_primary_energy_factor_high_rate_3": null,
      "space_heating_main_heating_1_primary_energy_factor_high_rate_4": null,
      "space_heating_main_heating_1_primary_energy_factor_high_rate_5": null,
      "space_heating_main_heating_1_primary_energy_factor_high_rate_6": null,
      "space_heating_main_heating_1_primary_energy_factor_high_rate_7": null,
      "space_heating_main_heating_1_primary_energy_factor_high_rate_8": null,
      "space_heating_main_heating_1_primary_energy_factor_high_rate_9": null,
      "space_heating_main_heating_1_primary_energy_factor_high_rate_10": null,
      "space_heating_main_heating_1_primary_energy_factor_high_rate_11": null,
      "space_heating_main_heating_1_primary_energy_factor_high_rate_12": null,
      "space_heating_main_heating_1_primary_energy_factor_low_rate_1": null,
      "space_heating_main_heating_1_primary_energy_factor_low_rate_2": null,
      "space_heating_main_heating_1_primary_energy_factor_low_rate_3": null,
      "space_heating_main_heating_1_primary_energy_factor_low_rate_4": null,
      "space_heating_main_heating_1_primary_energy_factor_low_rate_5": null,
      "space_heating_main_heating_1_primary_energy_factor_low_rate_6": null,
      "space_heating_main_heating_1_primary_energy_factor_low_rate_7": null,
      "space_heating_main_heating_1_primary_energy_factor_low_rate_8": null,
      "space_heating_main_heating_1_primary_energy_factor_low_rate_9": null,
      "space_heating_main_heating_1_primary_energy_factor_low_rate_10": null,
      "space_heating_main_heating_1_primary_energy_factor_low_rate_11": null,
      "space_heating_main_heating_1_primary_energy_factor_low_rate_12": null,
      "value_275_1": 2146.5893977363216,
      "value_275_2": 1835.8392028840974,
      "value_275_3": 1776.342182908632,
      "value_275_4": 1362.7151172779656,
      "value_275_5": 990.4922166341171,
      "value_275_10": 1170.0619253330349,
      "value_275_11": 1660.0837630764806,
      "value_275_12": 2169.7966917908975,
      "value_275": 13111.920497641546,
      "space_heating_main_heating_2_primary_energy_factor_1": null,
      "space_heating_main_heating_2_primary_energy_factor_2": null,
      "space_heating_main_heating_2_primary_energy_factor_3": null,
      "space_heating_main_heating_2_primary_energy_factor_4": null,
      "space_heating_main_heating_2_primary_energy_factor_5": null,
      "space_heating_main_heating_2_primary_energy_factor_6": null,
      "space_heating_main_heating_2_primary_energy_factor_7": null,
      "space_heating_main_heating_2_primary_energy_factor_8": null,
      "space_heating_main_heating_2_primary_energy_factor_9": null,
      "space_heating_main_heating_2_primary_energy_factor_10": null,
      "space_heating_main_heating_2_primary_energy_factor_11": null,
      "space_heating_main_heating_2_primary_energy_factor_12": null,
      "space_heating_main_heating_2_primary_energy_factor_high_rate_1": null,
      "space_heating_main_heating_2_primary_energy_factor_high_rate_2": null,
      "space_heating_main_heating_2_primary_energy_factor_high_rate_3": null,
      "space_heating_main_heating_2_primary_energy_factor_high_rate_4": null,
      "space_heating_main_heating_2_primary_energy_factor_high_rate_5": null,
      "space_heating_main_heating_2_primary_energy_factor_high_rate_6": null,
      "space_heating_main_heating_2_primary_energy_factor_high_rate_7": null,
      "space_heating_main_heating_2_primary_energy_factor_high_rate_8": null,
      "space_heating_main_heating_2_primary_energy_factor_high_rate_9": null,
      "space_heating_main_heating_2_primary_energy_factor_high_rate_10": null,
      "space_heating_main_heating_2_primary_energy_factor_high_rate_11": null,
      "space_heating_main_heating_2_primary_energy_factor_high_rate_12": null,
      "space_heating_main_heating_2_primary_energy_factor_low_rate_1": null,
      "space_heating_main_heating_2_primary_energy_factor_low_rate_2": null,
      "space_heating_main_heating_2_primary_energy_factor_low_rate_3": null,
      "space_heating_main_heating_2_primary_energy_factor_low_rate_4": null,
      "space_heating_main_heating_2_primary_energy_factor_low_rate_5": null,
      "space_heating_main_heating_2_primary_energy_factor_low_rate_6": null,
      "space_heating_main_heating_2_primary_energy_factor_low_rate_7": null,
      "space_heating_main_heating_2_primary_energy_factor_low_rate_8": null,
      "space_heating_main_heating_2_primary_energy_factor_low_rate_9": null,
      "space_heating_main_heating_2_primary_energy_factor_low_rate_10": null,
      "space_heating_main_heating_2_primary_energy_factor_low_rate_11": null,
      "space_heating_main_heating_2_primary_energy_factor_low_rate_12": null,
      "value_276_1": null,
      "value_276_2": null,
      "value_276_3": null,
      "value_276_4": null,
      "value_276_5": null,
      "value_276_10": null,
      "value_276_11": null,
      "value_276_12": null,
      "value_276": null,
      "space_heating_secondary_heating_primary_energy_factor_1": null,
      "space_heating_secondary_heating_primary_energy_factor_2": null,
      "space_heating_secondary_heating_primary_energy_factor_3": null,
      "space_heating_secondary_heating_primary_energy_factor_4": null,
      "space_heating_secondary_heating_primary_energy_factor_5": null,
      "space_heating_secondary_heating_primary_energy_factor_6": null,
      "space_heating_secondary_heating_primary_energy_factor_7": null,
      "space_heating_secondary_heating_primary_energy_factor_8": null,
      "space_heating_secondary_heating_primary_energy_factor_9": null,
      "space_heating_secondary_heating_primary_energy_factor_10": null,
      "space_heating_secondary_heating_primary_energy_factor_11": null,
      "space_heating_secondary_heating_primary_energy_factor_12": null,
      "space_heating_secondary_heating_primary_energy_factor_high_rate_1": null,
      "space_heating_secondary_heating_primary_energy_factor_high_rate_2": null,
      "space_heating_secondary_heating_primary_energy_factor_high_rate_3": null,
      "space_heating_secondary_heating_primary_energy_factor_high_rate_4": null,
      "space_heating_secondary_heating_primary_energy_factor_high_rate_5": null,
      "space_heating_secondary_heating_primary_energy_factor_high_rate_6": null,
      "space_heating_secondary_heating_primary_energy_factor_high_rate_7": null,
      "space_heating_secondary_heating_primary_energy_factor_high_rate_8": null,
      "space_heating_secondary_heating_primary_energy_factor_high_rate_9": null,
      "space_heating_secondary_heating_primary_energy_factor_high_rate_10": null,
      "space_heating_secondary_heating_primary_energy_factor_high_rate_11": null,
      "space_heating_secondary_heating_primary_energy_factor_high_rate_12": null,
      "space_heating_secondary_heating_primary_energy_factor_low_rate_1": null,
      "space_heating_secondary_heating_primary_energy_factor_low_rate_2": null,
      "space_heating_secondary_heating_primary_energy_factor_low_rate_3": null,
      "space_heating_secondary_heating_primary_energy_factor_low_rate_4": null,
      "space_heating_secondary_heating_primary_energy_factor_low_rate_5": null,
      "space_heating_secondary_heating_primary_energy_factor_low_rate_6": null,
      "space_heating_secondary_heating_primary_energy_factor_low_rate_7": null,
      "space_heating_secondary_heating_primary_energy_factor_low_rate_8": null,
      "space_heating_secondary_heating_primary_energy_factor_low_rate_9": null,
      "space_heating_secondary_heating_primary_energy_factor_low_rate_10": null,
      "space_heating_secondary_heating_primary_energy_factor_low_rate_11": null,
      "space_heating_secondary_heating_primary_energy_factor_low_rate_12": null,
      "value_277_1": null,
      "value_277_2": null,
      "value_277_3": null,
      "value_277_4": null,
      "value_277_5": null,
      "value_277_10": null,
      "value_277_11": null,
      "value_277_12": null,
      "value_277": null,
      "water_heating_primary_energy_factor_1": 1.13,
      "water_heating_primary_energy_factor_2": 1.13,
      "water_heating_primary_energy_factor_3": 1.13,
      "water_heating_primary_energy_factor_4": 1.13,
      "water_heating_primary_energy_factor_5": 1.13,
      "water_heating_primary_energy_factor_6": 1.13,
      "water_heating_primary_energy_factor_7": 1.13,
      "water_heating_primary_energy_factor_8": 1.13,
      "water_heating_primary_energy_factor_9": 1.13,
      "water_heating_primary_energy_factor_10": 1.13,
      "water_heating_primary_energy_factor_11": 1.13,
      "water_heating_primary_energy_factor_12": 1.13,
      "water_heating_primary_energy_factor_high_rate_1": null,
      "water_heating_primary_energy_factor_high_rate_2": null,
      "water_heating_primary_energy_factor_high_rate_3": null,
      "water_heating_primary_energy_factor_high_rate_4": null,
      "water_heating_primary_energy_factor_high_rate_5": null,
      "water_heating_primary_energy_factor_high_rate_6": null,
      "water_heating_primary_energy_factor_high_rate_7": null,
      "water_heating_primary_energy_factor_high_rate_8": null,
      "water_heating_primary_energy_factor_high_rate_9": null,
      "water_heating_primary_energy_factor_high_rate_10": null,
      "water_heating_primary_energy_factor_high_rate_11": null,
      "water_heating_primary_energy_factor_high_rate_12": null,
      "water_heating_primary_energy_factor_low_rate_1": null,
      "water_heating_primary_energy_factor_low_rate_2": null,
      "water_heating_primary_energy_factor_low_rate_3": null,
      "water_heating_primary_energy_factor_low_rate_4": null,
      "water_heating_primary_energy_factor_low_rate_5": null,
      "water_heating_primary_energy_factor_low_rate_6": null,
      "water_heating_primary_energy_factor_low_rate_7": null,
      "water_heating_primary_energy_factor_low_rate_8": null,
      "water_heating_primary_energy_factor_low_rate_9": null,
      "water_heating_primary_energy_factor_low_rate_10": null,
      "water_heating_primary_energy_factor_low_rate_11": null,
      "water_heating_primary_energy_factor_low_rate_12": null,
      "value_278_1": 351.8081278982687,
      "value_278_2": 311.1063323992739,
      "value_278_3": 330.83072521949623,
      "value_278_4": 291.48177069637046,
      "value_278_5": 283.9996870602849,
      "value_278_6": 278.86341726012927,
      "value_278_7": 275.2950508220781,
      "value_278_8": 286.36962456742384,
      "value_278_9": 289.641790253907,
      "value_278_10": 295.6354272603637,
      "value_278_11": 312.8052812875492,
      "value_278_12": 347.87564035568255,
      "value_278": 3655.712875080828,
      "electricity_primary_energy_1": 1.602,
      "electricity_primary_energy_2": 1.593,
      "electricity_primary_energy_3": 1.568,
      "electricity_primary_energy_4": 1.53,
      "electricity_primary_energy_5": 1.487,
      "electricity_primary_energy_6": 1.441,
      "electricity_primary_energy_7": 1.41,
      "electricity_primary_energy_8": 1.413,
      "electricity_primary_energy_9": 1.449,
      "electricity_primary_energy_10": 1.504,
      "electricity_primary_energy_11": 1.558,
      "electricity_primary_energy_12": 1.604,
      "value_278a_1": null,
      "value_278a_2": null,
      "value_278a_3": null,
      "value_278a_4": null,
      "value_278a_5": null,
      "value_278a_6": null,
      "value_278a_7": null,
      "value_278a_8": null,
      "value_278a_9": null,
      "value_278a_10": null,
      "value_278a_11": null,
      "value_278a_12": null,
      "value_278a": null,
      "value_279": 16767.633372722375,
      "value_280_6": null,
      "value_280_7": null,
      "value_280_8": null,
      "value_280_9": null,
      "value_280": null,
      "value_281_1": 15.646931506849315,
      "value_281_2": 14.05331506849315,
      "value_281_3": 15.314849315068493,
      "value_281_4": 14.461643835616439,
      "value_281_5": 14.523712328767123,
      "value_281_6": 13.62041095890411,
      "value_281_7": 13.771643835616437,
      "value_281_8": 13.800945205479453,
      "value_281_9": 13.696027397260274,
      "value_281_10": 14.689753424657534,
      "value_281_11": 14.726301369863014,
      "value_281_12": 15.666465753424658,
      "value_281": 173.972,
      "value_282_1": 104.77544457985091,
      "value_282_2": 83.5825369415004,
      "value_282_3": 74.07575119885547,
      "value_282_4": 52.955827870729664,
      "value_282_5": 39.754997926584146,
      "value_282_6": 31.4754075126364,
      "value_282_7": 34.38791739184884,
      "value_282_8": 44.79382061769741,
      "value_282_9": 59.66510589170529,
      "value_282_10": 81.2552832618996,
      "value_282_11": 95.0728653367588,
      "value_282_12": 107.82191947438073,
      "value_282": 809.6168780044477,
      "electricity_sold_to_grid_pv_primary_energy_1": 0.715,
      "electricity_sold_to_grid_pv_primary_energy_2": 0.697,
      "electricity_sold_to_grid_pv_primary_energy_3": 0.645,
      "electricity_sold_to_grid_pv_primary_energy_4": 0.567,
      "electricity_sold_to_grid_pv_primary_energy_5": 0.478,
      "electricity_sold_to_grid_pv_primary_energy_6": 0.389,
      "electricity_sold_to_grid_pv_primary_energy_7": 0.33,
      "electricity_sold_to_grid_pv_primary_energy_8": 0.336,
      "electricity_sold_to_grid_pv_primary_energy_9": 0.405,
      "electricity_sold_to_grid_pv_primary_energy_10": 0.504,
      "electricity_sold_to_grid_pv_primary_energy_11": 0.558,
      "electricity_sold_to_grid_pv_primary_energy_12": 0.604,
      "electricity_sold_to_grid_other_primary_energy_1": 0.602,
      "electricity_sold_to_grid_other_primary_energy_2": 0.593,
      "electricity_sold_to_grid_other_primary_energy_3": 0.568,
      "electricity_sold_to_grid_other_primary_energy_4": 0.53,
      "electricity_sold_to_grid_other_primary_energy_5": 0.487,
      "electricity_sold_to_grid_other_primary_energy_6": 0.389,
      "electricity_sold_to_grid_other_primary_energy_7": 0.33,
      "electricity_sold_to_grid_other_primary_energy_8": 0.336,
      "electricity_sold_to_grid_other_primary_energy_9": 0.405,
      "electricity_sold_to_grid_other_primary_energy_10": 0.513,
      "electricity_sold_to_grid_other_primary_energy_11": 0.623,
      "electricity_sold_to_grid_other_primary_energy_12": 0.718,
      "value_283_1": null,
      "value_283_2": null,
      "value_283_3": null,
      "value_283_4": null,
      "value_283_5": null,
      "value_283_6": null,
      "value_283_7": null,
      "value_283_8": null,
      "value_283_9": null,
      "value_283_10": null,
      "value_283_11": null,
      "value_283_12": null,
      "value_283": null,
      "value_284": null,
      "value_285": null,
      "value_286": 17751.222250726823,
      "value_287": 177.51222250726823
   },
   "sap_calculation_success": true,
   "sap_calculation_error_type": null,
   "sap_calculation_error_message": null,
   "sap_calculation_error_traceback": null
}