From 2e1c8064a3b2763b5bc3da175374048d66fba96b Mon Sep 17 00:00:00 2001 From: Nina Odegard Date: Wed, 23 Oct 2024 15:59:41 +0200 Subject: [PATCH 1/9] feat: add workflow triggers --- toolkit/config.staging.yaml | 6 ++ .../bid_process_triggers.WorkflowTrigger.yaml | 102 ++++++++++++++++++ 2 files changed, 108 insertions(+) create mode 100644 toolkit/modules/power_ops_template/workflows/bid_process_triggers.WorkflowTrigger.yaml diff --git a/toolkit/config.staging.yaml b/toolkit/config.staging.yaml index 04a33019..ff2b6b3b 100644 --- a/toolkit/config.staging.yaml +++ b/toolkit/config.staging.yaml @@ -12,3 +12,9 @@ variables: power_ops_instance_space: "power_ops_instances" power_ops_models_space: "power_ops_core" version: "1" + wf_day_ahead_market: "DAY_AHEAD" + wf_day_ahead_bid_process_xid: "DayAheadBidProcess" + wf_day_ahead_bid_process_version: "latest" + wf_day_ahead_bid_process_cron: "30 9 * * *" # translates to 9:30 UTC / 11:30 CEST + wf_trigger_client_id: "FOO" + wf_trigger_client_secret: ${IDP_WF_TRIGGER_SECRET} #TODO: check if this prints secret to files/logs diff --git a/toolkit/modules/power_ops_template/workflows/bid_process_triggers.WorkflowTrigger.yaml b/toolkit/modules/power_ops_template/workflows/bid_process_triggers.WorkflowTrigger.yaml new file mode 100644 index 00000000..06fd09ec --- /dev/null +++ b/toolkit/modules/power_ops_template/workflows/bid_process_triggers.WorkflowTrigger.yaml @@ -0,0 +1,102 @@ +- externalId: trigger_bid_process_bid_configuration_day_ahead_water_value_no2_full + triggerRule: + triggerType: schedule + cronExpression: "{{wf_day_ahead_bid_process_cron}}" + input: + bigConfiguration: + externalId: "bid_configuration_day_ahead_water_value_no2_full" + metadata: + config: "bid_configuration_day_ahead_water_value_no2_full" + market: "{{wf_day_ahead_market}}" + method: "Water Value NO2 Full" + priceArea: "NO2" + workflowExternalId: "{{wf_day_ahead_bid_process_xid}}" + workflowVersion: "{{wf_day_ahead_bid_process_version}}" + authentication: + clientId: "{{wf_trigger_client_id}}" + clientSecret: "{{wf_trigger_client_secret}}" +- externalId: trigger_bid_process_bid_configuration_day_ahead_multi_scenario_20_no2 + triggerRule: + triggerType: schedule + cronExpression: "{{wf_day_ahead_bid_process_cron}}" + input: + bigConfiguration: + externalId: "bid_configuration_day_ahead_multi_scenario_20_no2" + metadata: + config: "bid_configuration_day_ahead_multi_scenario_20_no2" + market: "{{wf_day_ahead_market}}" + method: "Multi scenario 20 NO2" + priceArea: "NO2" + workflowExternalId: "{{wf_day_ahead_bid_process_xid}}" + workflowVersion: "{{wf_day_ahead_bid_process_version}}" + authentication: + clientId: "{{wf_trigger_client_id}}" + clientSecret: "{{wf_trigger_client_secret}}" +- externalId: trigger_bid_process_bid_configuration_day_ahead_multi_scenario_3_no2 + triggerRule: + triggerType: schedule + cronExpression: "{{wf_day_ahead_bid_process_cron}}" + input: + bigConfiguration: + externalId: "bid_configuration_day_ahead_multi_scenario_3_no2" + metadata: + config: "bid_configuration_day_ahead_multi_scenario_3_no2" + market: "{{wf_day_ahead_market}}" + method: "Multi Scenario 3 NO2" + priceArea: "NO2" + workflowExternalId: "{{wf_day_ahead_bid_process_xid}}" + workflowVersion: "{{wf_day_ahead_bid_process_version}}" + authentication: + clientId: "{{wf_trigger_client_id}}" + clientSecret: "{{wf_trigger_client_secret}}" +- externalId: trigger_bid_process_bid_configuration_day_ahead_multi_scenario_2_no2 + triggerRule: + triggerType: schedule + cronExpression: "{{wf_day_ahead_bid_process_cron}}" + input: + bigConfiguration: + externalId: "bid_configuration_day_ahead_multi_scenario_2_no2" + metadata: + config: "bid_configuration_day_ahead_multi_scenario_2_no2" + market: "{{wf_day_ahead_market}}" + method: "Multi Scenario 2 NO2" + priceArea: "NO2" + workflowExternalId: "{{wf_day_ahead_bid_process_xid}}" + workflowVersion: "{{wf_day_ahead_bid_process_version}}" + authentication: + clientId: "{{wf_trigger_client_id}}" + clientSecret: "{{wf_trigger_client_secret}}" +- externalId: trigger_bid_process_bid_configuration_day_ahead_no2_combination + triggerRule: + triggerType: schedule + cronExpression: "{{wf_day_ahead_bid_process_cron}}" + input: + bigConfiguration: + externalId: "bid_configuration_day_ahead_no2_combination" + metadata: + config: "bid_configuration_day_ahead_no2_combination" + market: "{{wf_day_ahead_market}}" + method: "NO2 Combination" + priceArea: "NO2" + workflowExternalId: "{{wf_day_ahead_bid_process_xid}}" + workflowVersion: "{{wf_day_ahead_bid_process_version}}" + authentication: + clientId: "{{wf_trigger_client_id}}" + clientSecret: "{{wf_trigger_client_secret}}" +- externalId: trigger_bid_process_bid_configuration_day_ahead_price_independent_no2 + triggerRule: + triggerType: schedule + cronExpression: "{{wf_day_ahead_bid_process_cron}}" + input: + bigConfiguration: + externalId: "bid_configuration_day_ahead_price_independent_no2" + metadata: + config: "bid_configuration_day_ahead_price_independent_no2" + market: "{{wf_day_ahead_market}}" + method: "Price Independent NO2" + priceArea: "NO2" + workflowExternalId: "{{wf_day_ahead_bid_process_xid}}" + workflowVersion: "{{wf_day_ahead_bid_process_version}}" + authentication: + clientId: "{{wf_trigger_client_id}}" + clientSecret: "{{wf_trigger_client_secret}}" From 394a38a263d81843d617961be18933a1797376b6 Mon Sep 17 00:00:00 2001 From: Nina Odegard Date: Thu, 24 Oct 2024 10:04:37 +0200 Subject: [PATCH 2/9] refactor: change variable name so it's the same in both modules --- toolkit/config.heco-dev.yaml | 2 +- toolkit/config.heco-prod.yaml | 2 +- toolkit/config.lyse-dev.yaml | 2 +- toolkit/config.lyse-prod.yaml | 2 +- toolkit/config.oe-dev.yaml | 2 +- toolkit/config.oe-prod.yaml | 2 +- toolkit/config.staging.yaml | 9 +- .../data_models/all_DayAhead.datamodel.yaml | 90 ++++++------- .../data_models/all_PowerOps.datamodel.yaml | 126 +++++++++--------- ...ompute_BenchmarkingDayAhead.datamodel.yaml | 60 ++++----- .../compute_ShopBasedDayAhead.datamodel.yaml | 64 ++++----- ...e_TotalBidMatrixCalculation.datamodel.yaml | 54 ++++---- ...ute_WaterValueBasedDayAhead.datamodel.yaml | 44 +++--- ...onfig_DayAheadConfiguration.datamodel.yaml | 44 +++--- .../data_models/config_Resync.datamodel.yaml | 42 +++--- .../frontend_AFRRBid.datamodel.yaml | 14 +- .../data_models/frontend_Asset.datamodel.yaml | 32 ++--- .../frontend_DayAheadBid.datamodel.yaml | 50 +++---- .../product_CogShop.datamodel.yaml | 20 +-- ...enchmarkingConfigurationDayAhead.view.yaml | 12 +- .../data_models/views/BidRow.view.yaml | 8 +- .../views/DateSpecification.view.yaml | 2 +- .../views/MarketConfiguration.view.yaml | 2 +- .../views/alerts/1-interface.Alert.view.yaml | 2 +- .../views/alerts/ShopPenaltyReport.view.yaml | 4 +- .../assets/1-interface.PowerAsset.view.yaml | 2 +- .../assets/generator/Generator.view.yaml | 8 +- .../GeneratorEfficiencyCurve.view.yaml | 2 +- .../TurbineEfficiencyCurve.view.yaml | 2 +- .../assets/plant/1-interface.Plant.view.yaml | 4 +- .../assets/plant/PlantInformation.view.yaml | 6 +- .../plant/PlantWaterValueBased.view.yaml | 10 +- .../1-interface.PriceArea.view.yaml | 4 +- .../assets/price_area/PriceAreaAFRR.view.yaml | 4 +- .../price_area/PriceAreaDayAhead.view.yaml | 6 +- .../price_area/PriceAreaInformation.view.yaml | 6 +- .../1-interface.Watercourse.view.yaml | 4 +- ...nterface.PartialBidConfiguration.view.yaml | 4 +- .../BidConfigurationDayAhead.view.yaml | 10 +- ...ShopBasedPartialBidConfiguration.view.yaml | 6 +- ...alueBasedPartialBidConfiguration.view.yaml | 6 +- .../1-interface.BidDocument.view.yaml | 4 +- .../bid_document/BidDocumentAFRR.view.yaml | 8 +- .../BidDocumentDayAhead.view.yaml | 10 +- .../BidDocumentDayAheadSimple.view.yaml | 8 +- .../1-interface.BidMatrix.view.yaml | 2 +- ...1-interface.BidMatrixInformation.view.yaml | 8 +- ...face.PartialBidMatrixInformation.view.yaml | 8 +- ...idMatrixInformationWithScenarios.view.yaml | 6 +- .../cogshop/1-interface.ShopCase.view.yaml | 6 +- .../cogshop/BenchmarkingShopCase.view.yaml | 4 +- .../cogshop/ShopAttributeMapping.view.yaml | 2 +- .../views/cogshop/ShopCommands.view.yaml | 2 +- .../views/cogshop/ShopFile.view.yaml | 2 +- .../views/cogshop/ShopModel.view.yaml | 6 +- .../cogshop/ShopModelWithAssets.view.yaml | 10 +- .../ShopOutputTimeSeriesDefinition.view.yaml | 2 +- .../views/cogshop/ShopScenario.view.yaml | 10 +- .../views/cogshop/ShopScenarioSet.view.yaml | 8 +- .../1-interface.FunctionInput.view.yaml | 2 +- ...PartialBidMatrixCalculationInput.view.yaml | 8 +- .../BenchmarkingCalculationInput.view.yaml | 6 +- ...rkingTaskDispatcherInputDayAhead.view.yaml | 6 +- ...PartialBidMatrixCalculationInput.view.yaml | 8 +- .../ShopPreprocessorInput.view.yaml | 6 +- .../ShopTriggerInput.view.yaml | 8 +- .../TaskDispatcherInput.view.yaml | 6 +- .../TotalBidMatrixCalculationInput.view.yaml | 8 +- ...PartialBidMatrixCalculationInput.view.yaml | 6 +- .../1-interface.FunctionOutput.view.yaml | 6 +- .../BenchmarkingCalculationOutput.view.yaml | 8 +- ...kingTaskDispatcherOutputDayAhead.view.yaml | 8 +- ...artialBidMatrixCalculationOutput.view.yaml | 10 +- .../ShopPreprocessorOutput.view.yaml | 8 +- .../ShopTriggerOutput.view.yaml | 8 +- .../TaskDispatcherOutput.view.yaml | 8 +- .../TotalBidMatrixCalculationOutput.view.yaml | 8 +- ...kingProductionObligationDayAhead.view.yaml | 2 +- .../BenchmarkingResultDayAhead.view.yaml | 6 +- .../shop_result/PriceProduction.view.yaml | 4 +- .../views/shop_result/ShopResult.view.yaml | 8 +- .../shop_result/ShopTimeSeries.view.yaml | 2 +- 82 files changed, 517 insertions(+), 514 deletions(-) diff --git a/toolkit/config.heco-dev.yaml b/toolkit/config.heco-dev.yaml index cadcbbe9..e514ec92 100644 --- a/toolkit/config.heco-dev.yaml +++ b/toolkit/config.heco-dev.yaml @@ -11,4 +11,4 @@ variables: power_ops_type_space: "power_ops_types" power_ops_instance_space: "power_ops_instances" power_ops_models_space: "power_ops_core" - version: "1" + power_ops_version: "1" diff --git a/toolkit/config.heco-prod.yaml b/toolkit/config.heco-prod.yaml index 25a0ccf6..6c6ff709 100644 --- a/toolkit/config.heco-prod.yaml +++ b/toolkit/config.heco-prod.yaml @@ -9,4 +9,4 @@ variables: power_ops_type_space: "power_ops_types" power_ops_instance_space: "power_ops_instances" power_ops_models_space: "power_ops_core" - version: "1" + power_ops_version: "1" diff --git a/toolkit/config.lyse-dev.yaml b/toolkit/config.lyse-dev.yaml index bb40fe49..35c4ef61 100644 --- a/toolkit/config.lyse-dev.yaml +++ b/toolkit/config.lyse-dev.yaml @@ -11,4 +11,4 @@ variables: power_ops_type_space: "power_ops_types" power_ops_instance_space: "power_ops_instances" power_ops_models_space: "power_ops_core" - version: "1" + power_ops_version: "1" diff --git a/toolkit/config.lyse-prod.yaml b/toolkit/config.lyse-prod.yaml index e6591b0b..23ed741d 100644 --- a/toolkit/config.lyse-prod.yaml +++ b/toolkit/config.lyse-prod.yaml @@ -9,4 +9,4 @@ variables: power_ops_type_space: "power_ops_types" power_ops_instance_space: "power_ops_instances" power_ops_models_space: "power_ops_core" - version: "1" + power_ops_version: "1" diff --git a/toolkit/config.oe-dev.yaml b/toolkit/config.oe-dev.yaml index 7978dc85..78632a11 100644 --- a/toolkit/config.oe-dev.yaml +++ b/toolkit/config.oe-dev.yaml @@ -11,4 +11,4 @@ variables: power_ops_type_space: "power_ops_types" power_ops_instance_space: "power_ops_instances" power_ops_models_space: "power_ops_core" - version: "1" + power_ops_version: "1" diff --git a/toolkit/config.oe-prod.yaml b/toolkit/config.oe-prod.yaml index e1198d3c..bc133c10 100644 --- a/toolkit/config.oe-prod.yaml +++ b/toolkit/config.oe-prod.yaml @@ -9,4 +9,4 @@ variables: power_ops_type_space: "power_ops_types" power_ops_instance_space: "power_ops_instances" power_ops_models_space: "power_ops_core" - version: "1" + power_ops_version: "1" diff --git a/toolkit/config.staging.yaml b/toolkit/config.staging.yaml index ff2b6b3b..ac57bffe 100644 --- a/toolkit/config.staging.yaml +++ b/toolkit/config.staging.yaml @@ -5,16 +5,19 @@ environment: type: staging selected: - modules/power_model + # - modules/power_ops_template variables: modules: + # variables required for BOTH power_model and power_ops_template power_ops_type_space: "power_ops_types" power_ops_instance_space: "power_ops_instances" power_ops_models_space: "power_ops_core" - version: "1" + power_ops_version: "1" + # variables required for ONLY power_ops_template wf_day_ahead_market: "DAY_AHEAD" wf_day_ahead_bid_process_xid: "DayAheadBidProcess" wf_day_ahead_bid_process_version: "latest" wf_day_ahead_bid_process_cron: "30 9 * * *" # translates to 9:30 UTC / 11:30 CEST - wf_trigger_client_id: "FOO" - wf_trigger_client_secret: ${IDP_WF_TRIGGER_SECRET} #TODO: check if this prints secret to files/logs + wf_trigger_client_id: "d985b4fe-275e-4df3-9e49-b6b18a77778a" + wf_trigger_client_secret: ${WF_TRIGGER_SECRET} diff --git a/toolkit/modules/power_model/data_models/all_DayAhead.datamodel.yaml b/toolkit/modules/power_model/data_models/all_DayAhead.datamodel.yaml index eb8eb2d6..a91d73a4 100644 --- a/toolkit/modules/power_model/data_models/all_DayAhead.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/all_DayAhead.datamodel.yaml @@ -7,180 +7,180 @@ views: - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: WaterValueBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopScenarioSet space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Generator space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TurbineEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: GeneratorEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Plant space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PlantWaterValueBased space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TaskDispatcherInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TaskDispatcherOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopPreprocessorInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopPreprocessorOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopTriggerInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopTriggerOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: MultiScenarioPartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidMatrixCalculationOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidMatrix space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopResult space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceProduction space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopTimeSeries space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: WaterValueBasedPartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TotalBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TotalBidMatrixCalculationOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidDocumentDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopCase space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - space: "{{power_ops_models_space}}" externalId: BidDocument - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: ShopFile - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: BidMatrixInformation - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PartialBidMatrixInformation - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" diff --git a/toolkit/modules/power_model/data_models/all_PowerOps.datamodel.yaml b/toolkit/modules/power_model/data_models/all_PowerOps.datamodel.yaml index ac10699e..b83fcbb8 100644 --- a/toolkit/modules/power_model/data_models/all_PowerOps.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/all_PowerOps.datamodel.yaml @@ -1,253 +1,253 @@ externalId: all_PowerOps space: "{{power_ops_models_space}}" -version: "{{version}}" +version: "{{power_ops_version}}" name: all_PowerOps views: - externalId: ShopResult space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidRow space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: WaterValueBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopTriggerInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: WaterValueBasedPartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopPreprocessorInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: FunctionInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TotalBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TaskDispatcherInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: MultiScenarioPartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopScenarioSet space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopPreprocessorOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidMatrixCalculationOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopTriggerOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: FunctionOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TaskDispatcherOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TotalBidMatrixCalculationOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidDocument space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidDocumentDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidDocumentAFRR space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PowerAsset space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Generator space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TurbineEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Watercourse space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Plant space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PlantWaterValueBased space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PlantInformation space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceAreaInformation space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: GeneratorEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceAreaAFRR space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidMatrix space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BenchmarkingTaskDispatcherInputDayAhead space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: BenchmarkingTaskDispatcherOutputDayAhead space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: BenchmarkingCalculationInput space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: BenchmarkingCalculationOutput space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: ShopCase space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceProduction space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopTimeSeries space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - space: "{{power_ops_models_space}}" externalId: ShopFile - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: BidMatrixInformation space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidMatrixInformation space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidMatrixInformationWithScenarios space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopPenaltyReport space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BenchmarkingShopCase space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopModelWithAssets space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BenchmarkingProductionObligationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BenchmarkingResultDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BenchmarkingConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" diff --git a/toolkit/modules/power_model/data_models/compute_BenchmarkingDayAhead.datamodel.yaml b/toolkit/modules/power_model/data_models/compute_BenchmarkingDayAhead.datamodel.yaml index 5b61cb41..d0ebc118 100644 --- a/toolkit/modules/power_model/data_models/compute_BenchmarkingDayAhead.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/compute_BenchmarkingDayAhead.datamodel.yaml @@ -6,121 +6,121 @@ description: "The process of benchmarking day-ahead bids" views: - externalId: BenchmarkingConfigurationDayAhead space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: ShopModelWithAssets space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: BenchmarkingTaskDispatcherInputDayAhead space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: BenchmarkingTaskDispatcherOutputDayAhead space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: BenchmarkingShopCase space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: BenchmarkingResultDayAhead space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: BenchmarkingProductionObligationDayAhead space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: MarketConfiguration space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: BenchmarkingCalculationOutput space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: BenchmarkingCalculationInput space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: Alert space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: ShopScenario space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: FunctionInput space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: FunctionOutput space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: PriceArea space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: ShopModel space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: ShopCommands space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: PowerAsset space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: PartialBidConfiguration space: "{{power_ops_models_space}}" - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopFile space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopCase space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopResult space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopTimeSeries space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopTriggerInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopPreprocessorInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" diff --git a/toolkit/modules/power_model/data_models/compute_ShopBasedDayAhead.datamodel.yaml b/toolkit/modules/power_model/data_models/compute_ShopBasedDayAhead.datamodel.yaml index 1947b278..ede93495 100644 --- a/toolkit/modules/power_model/data_models/compute_ShopBasedDayAhead.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/compute_ShopBasedDayAhead.datamodel.yaml @@ -7,128 +7,128 @@ views: - externalId: TaskDispatcherInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TaskDispatcherOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopPreprocessorInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopPreprocessorOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopTriggerInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopTriggerOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: MultiScenarioPartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidMatrixCalculationOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidMatrix space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopScenarioSet space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopResult space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopCase space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceProduction space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopTimeSeries space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: ShopBasedPartialBidConfiguration - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: ShopFile - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" diff --git a/toolkit/modules/power_model/data_models/compute_TotalBidMatrixCalculation.datamodel.yaml b/toolkit/modules/power_model/data_models/compute_TotalBidMatrixCalculation.datamodel.yaml index 6eafee27..f525f1f1 100644 --- a/toolkit/modules/power_model/data_models/compute_TotalBidMatrixCalculation.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/compute_TotalBidMatrixCalculation.datamodel.yaml @@ -7,108 +7,108 @@ views: - externalId: BidMatrix space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidMatrixInformation space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidMatrixInformation space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TotalBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TotalBidMatrixCalculationOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidDocumentDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopResult space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceProduction space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopCase space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopTimeSeries space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: BidDocument - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: ShopFile - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" diff --git a/toolkit/modules/power_model/data_models/compute_WaterValueBasedDayAhead.datamodel.yaml b/toolkit/modules/power_model/data_models/compute_WaterValueBasedDayAhead.datamodel.yaml index dbf9d94a..8293ccfd 100644 --- a/toolkit/modules/power_model/data_models/compute_WaterValueBasedDayAhead.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/compute_WaterValueBasedDayAhead.datamodel.yaml @@ -7,88 +7,88 @@ views: - externalId: TaskDispatcherInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TaskDispatcherOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: WaterValueBasedPartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidMatrixCalculationOutput space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Plant space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PlantWaterValueBased space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Generator space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: GeneratorEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TurbineEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: BidMatrix - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: WaterValueBasedPartialBidConfiguration - version: "{{version}}" + version: "{{power_ops_version}}" type: view - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" diff --git a/toolkit/modules/power_model/data_models/config_DayAheadConfiguration.datamodel.yaml b/toolkit/modules/power_model/data_models/config_DayAheadConfiguration.datamodel.yaml index 9686a21c..746e2ad9 100644 --- a/toolkit/modules/power_model/data_models/config_DayAheadConfiguration.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/config_DayAheadConfiguration.datamodel.yaml @@ -7,88 +7,88 @@ views: - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: WaterValueBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopScenarioSet space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Generator space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TurbineEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: GeneratorEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PowerAsset space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Plant space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PlantInformation space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PlantWaterValueBased space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopFile space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" diff --git a/toolkit/modules/power_model/data_models/config_Resync.datamodel.yaml b/toolkit/modules/power_model/data_models/config_Resync.datamodel.yaml index 4b927906..a1136c26 100644 --- a/toolkit/modules/power_model/data_models/config_Resync.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/config_Resync.datamodel.yaml @@ -7,84 +7,84 @@ views: - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: WaterValueBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopScenarioSet space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Generator space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TurbineEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: GeneratorEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PowerAsset space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Plant space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PlantWaterValueBased space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopFile space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" diff --git a/toolkit/modules/power_model/data_models/frontend_AFRRBid.datamodel.yaml b/toolkit/modules/power_model/data_models/frontend_AFRRBid.datamodel.yaml index 3c8cceff..7d477302 100644 --- a/toolkit/modules/power_model/data_models/frontend_AFRRBid.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/frontend_AFRRBid.datamodel.yaml @@ -7,28 +7,28 @@ views: - externalId: BidDocumentAFRR space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidDocument space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidRow space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceAreaAFRR space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PowerAsset space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" diff --git a/toolkit/modules/power_model/data_models/frontend_Asset.datamodel.yaml b/toolkit/modules/power_model/data_models/frontend_Asset.datamodel.yaml index 1a3bbc21..a66c93a6 100644 --- a/toolkit/modules/power_model/data_models/frontend_Asset.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/frontend_Asset.datamodel.yaml @@ -7,64 +7,64 @@ views: - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceAreaAFRR space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceAreaInformation space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PowerAsset space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Plant space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PlantWaterValueBased space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PlantInformation space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Watercourse space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Generator space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: TurbineEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: GeneratorEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" diff --git a/toolkit/modules/power_model/data_models/frontend_DayAheadBid.datamodel.yaml b/toolkit/modules/power_model/data_models/frontend_DayAheadBid.datamodel.yaml index fb507737..282d740c 100644 --- a/toolkit/modules/power_model/data_models/frontend_DayAheadBid.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/frontend_DayAheadBid.datamodel.yaml @@ -7,100 +7,100 @@ views: - externalId: BidDocumentDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidDocument space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PriceProduction space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopCase space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PowerAsset space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopResult space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopTimeSeries space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopFile space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidMatrix space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: BidMatrixInformation space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidMatrixInformation space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: PartialBidMatrixInformationWithScenarios space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopPenaltyReport space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" diff --git a/toolkit/modules/power_model/data_models/product_CogShop.datamodel.yaml b/toolkit/modules/power_model/data_models/product_CogShop.datamodel.yaml index 7217a68d..33f6b5e7 100644 --- a/toolkit/modules/power_model/data_models/product_CogShop.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/product_CogShop.datamodel.yaml @@ -7,40 +7,40 @@ views: - externalId: ShopCase space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopResult space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopTimeSeries space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopFile space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{version}}" + version: "{{power_ops_version}}" diff --git a/toolkit/modules/power_model/data_models/views/BenchmarkingConfigurationDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/BenchmarkingConfigurationDayAhead.view.yaml index 627d0d48..01eaf5ba 100644 --- a/toolkit/modules/power_model/data_models/views/BenchmarkingConfigurationDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/BenchmarkingConfigurationDayAhead.view.yaml @@ -21,7 +21,7 @@ filter: space: "{{power_ops_type_space}}" externalId: BenchmarkingConfigurationDayAhead implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: @@ -38,7 +38,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: bidConfigurations @@ -51,7 +51,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopModelWithAssets - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: assetsPerShopModel @@ -68,7 +68,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PriceAreaDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view shopStartSpecification: container: @@ -81,7 +81,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: DateSpecification - version: "{{version}}" + version: "{{power_ops_version}}" type: view shopEndSpecification: container: @@ -94,5 +94,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: DateSpecification - version: "{{version}}" + version: "{{power_ops_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/BidRow.view.yaml b/toolkit/modules/power_model/data_models/views/BidRow.view.yaml index f9d446c2..16044fa9 100644 --- a/toolkit/modules/power_model/data_models/views/BidRow.view.yaml +++ b/toolkit/modules/power_model/data_models/views/BidRow.view.yaml @@ -21,7 +21,7 @@ filter: externalId: BidRow space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: price: container: @@ -88,7 +88,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidRow - version: "{{version}}" + version: "{{power_ops_version}}" type: view powerAsset: container: @@ -101,7 +101,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{version}}" + version: "{{power_ops_version}}" type: view alerts: type: @@ -110,7 +110,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: Alert - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: alerts diff --git a/toolkit/modules/power_model/data_models/views/DateSpecification.view.yaml b/toolkit/modules/power_model/data_models/views/DateSpecification.view.yaml index 5044169e..c35ee9ab 100644 --- a/toolkit/modules/power_model/data_models/views/DateSpecification.view.yaml +++ b/toolkit/modules/power_model/data_models/views/DateSpecification.view.yaml @@ -21,7 +21,7 @@ filter: externalId: DateSpecification space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: diff --git a/toolkit/modules/power_model/data_models/views/MarketConfiguration.view.yaml b/toolkit/modules/power_model/data_models/views/MarketConfiguration.view.yaml index d0c3f8e8..c8c3a028 100644 --- a/toolkit/modules/power_model/data_models/views/MarketConfiguration.view.yaml +++ b/toolkit/modules/power_model/data_models/views/MarketConfiguration.view.yaml @@ -21,7 +21,7 @@ filter: externalId: MarketConfiguration space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: diff --git a/toolkit/modules/power_model/data_models/views/alerts/1-interface.Alert.view.yaml b/toolkit/modules/power_model/data_models/views/alerts/1-interface.Alert.view.yaml index 52ee0555..5da5cd1b 100644 --- a/toolkit/modules/power_model/data_models/views/alerts/1-interface.Alert.view.yaml +++ b/toolkit/modules/power_model/data_models/views/alerts/1-interface.Alert.view.yaml @@ -21,7 +21,7 @@ filter: # externalId: Alert # space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: time: container: diff --git a/toolkit/modules/power_model/data_models/views/alerts/ShopPenaltyReport.view.yaml b/toolkit/modules/power_model/data_models/views/alerts/ShopPenaltyReport.view.yaml index 5b1cfe79..1572e830 100644 --- a/toolkit/modules/power_model/data_models/views/alerts/ShopPenaltyReport.view.yaml +++ b/toolkit/modules/power_model/data_models/views/alerts/ShopPenaltyReport.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: Alert - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: penalties: container: diff --git a/toolkit/modules/power_model/data_models/views/assets/1-interface.PowerAsset.view.yaml b/toolkit/modules/power_model/data_models/views/assets/1-interface.PowerAsset.view.yaml index a2335099..0fafac28 100644 --- a/toolkit/modules/power_model/data_models/views/assets/1-interface.PowerAsset.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/1-interface.PowerAsset.view.yaml @@ -14,7 +14,7 @@ filter: - space value: "{{power_ops_instance_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: diff --git a/toolkit/modules/power_model/data_models/views/assets/generator/Generator.view.yaml b/toolkit/modules/power_model/data_models/views/assets/generator/Generator.view.yaml index bea01c8c..c33a9ee0 100644 --- a/toolkit/modules/power_model/data_models/views/assets/generator/Generator.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/generator/Generator.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: productionMin: container: @@ -72,7 +72,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: GeneratorEfficiencyCurve - version: "{{version}}" + version: "{{power_ops_version}}" type: view turbineEfficiencyCurves: type: @@ -81,7 +81,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: TurbineEfficiencyCurve - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: turbineEfficiencyCurves diff --git a/toolkit/modules/power_model/data_models/views/assets/generator/GeneratorEfficiencyCurve.view.yaml b/toolkit/modules/power_model/data_models/views/assets/generator/GeneratorEfficiencyCurve.view.yaml index 7d2003c9..073bdf8a 100644 --- a/toolkit/modules/power_model/data_models/views/assets/generator/GeneratorEfficiencyCurve.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/generator/GeneratorEfficiencyCurve.view.yaml @@ -21,7 +21,7 @@ filter: externalId: GeneratorEfficiencyCurve space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: power: container: diff --git a/toolkit/modules/power_model/data_models/views/assets/generator/TurbineEfficiencyCurve.view.yaml b/toolkit/modules/power_model/data_models/views/assets/generator/TurbineEfficiencyCurve.view.yaml index 608424d4..e38742ad 100644 --- a/toolkit/modules/power_model/data_models/views/assets/generator/TurbineEfficiencyCurve.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/generator/TurbineEfficiencyCurve.view.yaml @@ -21,7 +21,7 @@ filter: externalId: TurbineEfficiencyCurve space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: head: container: diff --git a/toolkit/modules/power_model/data_models/views/assets/plant/1-interface.Plant.view.yaml b/toolkit/modules/power_model/data_models/views/assets/plant/1-interface.Plant.view.yaml index d29f7f20..66991694 100644 --- a/toolkit/modules/power_model/data_models/views/assets/plant/1-interface.Plant.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/plant/1-interface.Plant.view.yaml @@ -11,7 +11,7 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: {} diff --git a/toolkit/modules/power_model/data_models/views/assets/plant/PlantInformation.view.yaml b/toolkit/modules/power_model/data_models/views/assets/plant/PlantInformation.view.yaml index a374dc6c..b522e267 100644 --- a/toolkit/modules/power_model/data_models/views/assets/plant/PlantInformation.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/plant/PlantInformation.view.yaml @@ -11,11 +11,11 @@ description: TODO interface for configuration population implements: - space: "{{power_ops_models_space}}" externalId: PlantWaterValueBased - version: "{{version}}" + version: "{{power_ops_version}}" type: view # - space: "{{power_ops_models_space}}" # externalId: PlantShop - # version: "{{version}}" + # version: "{{power_ops_version}}" # type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: {} diff --git a/toolkit/modules/power_model/data_models/views/assets/plant/PlantWaterValueBased.view.yaml b/toolkit/modules/power_model/data_models/views/assets/plant/PlantWaterValueBased.view.yaml index 90b0712c..343b5549 100644 --- a/toolkit/modules/power_model/data_models/views/assets/plant/PlantWaterValueBased.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/plant/PlantWaterValueBased.view.yaml @@ -11,9 +11,9 @@ description: Represent a plant TODO for WVB implements: - space: "{{power_ops_models_space}}" externalId: Plant - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: headLossFactor: container: @@ -60,7 +60,7 @@ properties: # source: # space: "{{power_ops_models_space}}" # externalId: Watercourse - # version: "{{version}}" + # version: "{{power_ops_version}}" # type: view connectionLosses: container: @@ -128,7 +128,7 @@ properties: # source: # space: "{{power_ops_models_space}}" # externalId: Reservoir - # version: "{{version}}" + # version: "{{power_ops_version}}" # type: view generators: type: @@ -137,7 +137,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: Generator - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: generators diff --git a/toolkit/modules/power_model/data_models/views/assets/price_area/1-interface.PriceArea.view.yaml b/toolkit/modules/power_model/data_models/views/assets/price_area/1-interface.PriceArea.view.yaml index 6e5683b6..b4af73b4 100644 --- a/toolkit/modules/power_model/data_models/views/assets/price_area/1-interface.PriceArea.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/price_area/1-interface.PriceArea.view.yaml @@ -11,7 +11,7 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: {} diff --git a/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaAFRR.view.yaml b/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaAFRR.view.yaml index 4eda8bd9..a46e39fa 100644 --- a/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaAFRR.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaAFRR.view.yaml @@ -23,9 +23,9 @@ description: Information about the Price Area that is only relevant for AFRR implements: - space: "{{power_ops_models_space}}" externalId: PriceArea - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: capacityPriceUp: container: diff --git a/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaDayAhead.view.yaml index b75bb2b3..ca2cfbbe 100644 --- a/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaDayAhead.view.yaml @@ -23,9 +23,9 @@ description: Information about the Price Area that is only relevant for Day Ahea implements: - space: "{{power_ops_models_space}}" externalId: PriceArea - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: defaultBidConfiguration: container: @@ -38,7 +38,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view mainPriceScenario: container: diff --git a/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaInformation.view.yaml b/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaInformation.view.yaml index 88957149..f138dbfe 100644 --- a/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaInformation.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaInformation.view.yaml @@ -14,11 +14,11 @@ description: TODO interface for configuration population implements: - space: "{{power_ops_models_space}}" externalId: PriceAreaAFRR - version: "{{version}}" + version: "{{power_ops_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PriceAreaDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: {} diff --git a/toolkit/modules/power_model/data_models/views/assets/watercourse/1-interface.Watercourse.view.yaml b/toolkit/modules/power_model/data_models/views/assets/watercourse/1-interface.Watercourse.view.yaml index 8f84be0c..292ee88c 100644 --- a/toolkit/modules/power_model/data_models/views/assets/watercourse/1-interface.Watercourse.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/watercourse/1-interface.Watercourse.view.yaml @@ -14,7 +14,7 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: {} diff --git a/toolkit/modules/power_model/data_models/views/bid_configuration/1-interface.PartialBidConfiguration.view.yaml b/toolkit/modules/power_model/data_models/views/bid_configuration/1-interface.PartialBidConfiguration.view.yaml index 3ddcce2e..c36d394f 100644 --- a/toolkit/modules/power_model/data_models/views/bid_configuration/1-interface.PartialBidConfiguration.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_configuration/1-interface.PartialBidConfiguration.view.yaml @@ -13,7 +13,7 @@ filter: - node - space value: "{{power_ops_instance_space}}" -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: @@ -42,7 +42,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{version}}" + version: "{{power_ops_version}}" type: view addSteps: container: diff --git a/toolkit/modules/power_model/data_models/views/bid_configuration/BidConfigurationDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/bid_configuration/BidConfigurationDayAhead.view.yaml index 7eac08b5..c76be7ed 100644 --- a/toolkit/modules/power_model/data_models/views/bid_configuration/BidConfigurationDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_configuration/BidConfigurationDayAhead.view.yaml @@ -21,7 +21,7 @@ filter: space: "{{power_ops_type_space}}" externalId: BidConfigurationDayAhead implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: @@ -42,7 +42,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: MarketConfiguration - version: "{{version}}" + version: "{{power_ops_version}}" type: view priceArea: container: @@ -55,7 +55,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PriceAreaDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view bidDateSpecification: container: @@ -68,7 +68,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: DateSpecification - version: "{{version}}" + version: "{{power_ops_version}}" type: view partials: type: @@ -77,7 +77,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: partials diff --git a/toolkit/modules/power_model/data_models/views/bid_configuration/ShopBasedPartialBidConfiguration.view.yaml b/toolkit/modules/power_model/data_models/views/bid_configuration/ShopBasedPartialBidConfiguration.view.yaml index 8c2309f6..a1a22202 100644 --- a/toolkit/modules/power_model/data_models/views/bid_configuration/ShopBasedPartialBidConfiguration.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_configuration/ShopBasedPartialBidConfiguration.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: scenarioSet: container: @@ -37,5 +37,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopScenarioSet - version: "{{version}}" + version: "{{power_ops_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/bid_configuration/WaterValueBasedPartialBidConfiguration.view.yaml b/toolkit/modules/power_model/data_models/views/bid_configuration/WaterValueBasedPartialBidConfiguration.view.yaml index 9f820c47..e510da2a 100644 --- a/toolkit/modules/power_model/data_models/views/bid_configuration/WaterValueBasedPartialBidConfiguration.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_configuration/WaterValueBasedPartialBidConfiguration.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: powerAsset: container: @@ -38,5 +38,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PlantWaterValueBased - version: "{{version}}" + version: "{{power_ops_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/bid_document/1-interface.BidDocument.view.yaml b/toolkit/modules/power_model/data_models/views/bid_document/1-interface.BidDocument.view.yaml index f1d7613d..45a4e7bd 100644 --- a/toolkit/modules/power_model/data_models/views/bid_document/1-interface.BidDocument.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_document/1-interface.BidDocument.view.yaml @@ -14,7 +14,7 @@ filter: - space value: "{{power_ops_instance_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: @@ -71,7 +71,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: Alert - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: alerts diff --git a/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentAFRR.view.yaml b/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentAFRR.view.yaml index 98ab8931..79ceef58 100644 --- a/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentAFRR.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentAFRR.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: BidDocument - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: priceArea: container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PriceAreaAFRR - version: "{{version}}" + version: "{{power_ops_version}}" type: view bids: type: @@ -46,7 +46,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidRow - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: bids diff --git a/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAhead.view.yaml index 15963f5b..bfa67b7e 100644 --- a/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAhead.view.yaml @@ -22,9 +22,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: BidDocument - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: bidConfiguration: container: @@ -36,7 +36,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view total: container: @@ -48,7 +48,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidMatrixInformation - version: "{{version}}" + version: "{{power_ops_version}}" type: view partials: type: @@ -57,7 +57,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PartialBidMatrixInformation - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: partials diff --git a/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAheadSimple.view.yaml b/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAheadSimple.view.yaml index 3f3e6785..69afba0a 100644 --- a/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAheadSimple.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAheadSimple.view.yaml @@ -20,7 +20,7 @@ filter: externalId: DayAheadBidDocument space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: priceArea: container: @@ -32,7 +32,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PriceArea - version: "{{version}}" + version: "{{power_ops_version}}" type: view total: container: @@ -44,7 +44,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidMatrix - version: "{{version}}" + version: "{{power_ops_version}}" type: view partials: type: @@ -53,7 +53,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidMatrix - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: partials diff --git a/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrix.view.yaml b/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrix.view.yaml index eaf1fc4e..4942f36e 100644 --- a/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrix.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrix.view.yaml @@ -13,7 +13,7 @@ filter: - space value: "{{power_ops_instance_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: state: container: diff --git a/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrixInformation.view.yaml b/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrixInformation.view.yaml index f311d2c5..f4cd5b3f 100644 --- a/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrixInformation.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrixInformation.view.yaml @@ -15,9 +15,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: BidMatrix - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: underlyingBidMatrices: type: @@ -26,7 +26,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidMatrix - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: underlyingBidMatrices @@ -39,7 +39,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: Alert - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: alerts diff --git a/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.PartialBidMatrixInformation.view.yaml b/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.PartialBidMatrixInformation.view.yaml index 93762420..4df7573a 100644 --- a/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.PartialBidMatrixInformation.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.PartialBidMatrixInformation.view.yaml @@ -15,9 +15,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: BidMatrixInformation - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: powerAsset: container: @@ -27,7 +27,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{version}}" + version: "{{power_ops_version}}" type: view containerPropertyIdentifier: powerAsset name: powerAsset @@ -46,7 +46,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{version}}" + version: "{{power_ops_version}}" type: view containerPropertyIdentifier: partialBidConfiguration name: partialBidConfiguration diff --git a/toolkit/modules/power_model/data_models/views/bid_matrix/PartialBidMatrixInformationWithScenarios.view.yaml b/toolkit/modules/power_model/data_models/views/bid_matrix/PartialBidMatrixInformationWithScenarios.view.yaml index 6a6dfd33..dbc894fd 100644 --- a/toolkit/modules/power_model/data_models/views/bid_matrix/PartialBidMatrixInformationWithScenarios.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_matrix/PartialBidMatrixInformationWithScenarios.view.yaml @@ -15,9 +15,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PartialBidMatrixInformation - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: multiScenarioInput: type: @@ -26,7 +26,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PriceProduction - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: multiScenarioInput diff --git a/toolkit/modules/power_model/data_models/views/cogshop/1-interface.ShopCase.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/1-interface.ShopCase.view.yaml index 3f260626..d0fc4860 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/1-interface.ShopCase.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/1-interface.ShopCase.view.yaml @@ -3,7 +3,7 @@ externalId: ShopCase name: ShopCase description: A case that links a Scenario and shop dates to run shop with implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: scenario: container: @@ -16,7 +16,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopScenario - version: "{{version}}" + version: "{{power_ops_version}}" type: view startTime: container: @@ -42,7 +42,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopFile - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards description: The list of shop files that are used in a shop run. This encompasses all shop files such as case, module series, cut files etc. diff --git a/toolkit/modules/power_model/data_models/views/cogshop/BenchmarkingShopCase.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/BenchmarkingShopCase.view.yaml index 5fdfa03a..d38d92e5 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/BenchmarkingShopCase.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/BenchmarkingShopCase.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: ShopCase - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: bidSource: # A BidConfiguration ext ID, or BenchmarkingProductionObligationDayAhead ext ID, or a string for "upper bound" container: diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopAttributeMapping.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopAttributeMapping.view.yaml index a122d6a1..09a94a39 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopAttributeMapping.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopAttributeMapping.view.yaml @@ -21,7 +21,7 @@ filter: externalId: ShopAttributeMapping space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: objectType: container: diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopCommands.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopCommands.view.yaml index 2c15e005..b9479a38 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopCommands.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopCommands.view.yaml @@ -21,7 +21,7 @@ filter: externalId: ShopCommands space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopFile.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopFile.view.yaml index 881f723b..339ba3ad 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopFile.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopFile.view.yaml @@ -21,7 +21,7 @@ filter: externalId: ShopFile space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopModel.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopModel.view.yaml index 0e33583e..2e654d0d 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopModel.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopModel.view.yaml @@ -21,7 +21,7 @@ filter: externalId: ShopModel space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: @@ -70,7 +70,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopFile - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: cogShopFilesConfig @@ -83,7 +83,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopAttributeMapping - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: baseAttributeMappings diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopModelWithAssets.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopModelWithAssets.view.yaml index d9e4a98e..c2a38bd3 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopModelWithAssets.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopModelWithAssets.view.yaml @@ -21,7 +21,7 @@ filter: externalId: ShopModelWithAssets space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: shopModel: container: @@ -34,7 +34,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopModel - version: "{{version}}" + version: "{{power_ops_version}}" type: view powerAssets: type: @@ -45,7 +45,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards connectionType: multi_edge_connection @@ -58,7 +58,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BenchmarkingProductionObligationDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards connectionType: multi_edge_connection @@ -73,5 +73,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopCommands - version: "{{version}}" + version: "{{power_ops_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopOutputTimeSeriesDefinition.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopOutputTimeSeriesDefinition.view.yaml index d2fc8ef5..8bf01697 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopOutputTimeSeriesDefinition.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopOutputTimeSeriesDefinition.view.yaml @@ -21,7 +21,7 @@ filter: externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopScenario.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopScenario.view.yaml index edaaad45..edadeb0d 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopScenario.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopScenario.view.yaml @@ -14,7 +14,7 @@ filter: - space value: "{{power_ops_instance_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: @@ -35,7 +35,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopModel - version: "{{version}}" + version: "{{power_ops_version}}" type: view commands: container: @@ -48,7 +48,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopCommands - version: "{{version}}" + version: "{{power_ops_version}}" type: view source: container: @@ -65,7 +65,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopOutputTimeSeriesDefinition - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: outputDefinition @@ -78,7 +78,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopAttributeMapping - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: attributeMappingsOverride diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopScenarioSet.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopScenarioSet.view.yaml index 5de149c4..b5ec023a 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopScenarioSet.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopScenarioSet.view.yaml @@ -14,7 +14,7 @@ filter: - space value: "{{power_ops_instance_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: @@ -35,7 +35,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: DateSpecification - version: "{{version}}" + version: "{{power_ops_version}}" type: view endSpecification: container: @@ -48,7 +48,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: DateSpecification - version: "{{version}}" + version: "{{power_ops_version}}" type: view scenarios: type: @@ -57,7 +57,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopScenario - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: scenarios diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.FunctionInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.FunctionInput.view.yaml index e66a6b2d..37b6e56b 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.FunctionInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.FunctionInput.view.yaml @@ -14,7 +14,7 @@ filter: - space value: "{{power_ops_instance_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: workflowExecutionId: container: diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.PartialBidMatrixCalculationInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.PartialBidMatrixCalculationInput.view.yaml index c58b367b..5eae4e2a 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.PartialBidMatrixCalculationInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.PartialBidMatrixCalculationInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: bidDate: container: @@ -46,7 +46,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view partialBidConfiguration: container: @@ -59,5 +59,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{version}}" + version: "{{power_ops_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingCalculationInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingCalculationInput.view.yaml index c80e2d9b..9aa7578b 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingCalculationInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingCalculationInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: shopResults: type: @@ -34,7 +34,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopResult - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: shopResults diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingTaskDispatcherInputDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingTaskDispatcherInputDayAhead.view.yaml index c06d0914..76c29322 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingTaskDispatcherInputDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingTaskDispatcherInputDayAhead.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: benchmarkingConfig: container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BenchmarkingConfigurationDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view deliveryDate: container: diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/MultiScenarioPartialBidMatrixCalculationInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/MultiScenarioPartialBidMatrixCalculationInput.view.yaml index c10c9ab7..c43476ec 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/MultiScenarioPartialBidMatrixCalculationInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/MultiScenarioPartialBidMatrixCalculationInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PartialBidMatrixCalculationInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: partialBidConfiguration: # Overrides the view type from the PartialBidMatrixCalculationInput view container: @@ -38,7 +38,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopBasedPartialBidConfiguration - version: "{{version}}" + version: "{{power_ops_version}}" type: view priceProduction: type: @@ -47,7 +47,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PriceProduction - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: priceProduction diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/ShopPreprocessorInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/ShopPreprocessorInput.view.yaml index 5f73a3ca..4cce464c 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/ShopPreprocessorInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/ShopPreprocessorInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: scenario: container: @@ -38,7 +38,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopScenario - version: "{{version}}" + version: "{{power_ops_version}}" type: view startTime: container: diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/ShopTriggerInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/ShopTriggerInput.view.yaml index 004776e0..5eba23bb 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/ShopTriggerInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/ShopTriggerInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: cogShopTag: container: @@ -46,7 +46,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopCase - version: "{{version}}" + version: "{{power_ops_version}}" type: view preprocessorInput: container: @@ -59,5 +59,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopPreprocessorInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/TaskDispatcherInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/TaskDispatcherInput.view.yaml index ec451f4a..6372f635 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/TaskDispatcherInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/TaskDispatcherInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: bidConfiguration: container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view bidDate: container: diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/TotalBidMatrixCalculationInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/TotalBidMatrixCalculationInput.view.yaml index 5dca584a..10804dc1 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/TotalBidMatrixCalculationInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/TotalBidMatrixCalculationInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: bidConfiguration: container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view bidDate: container: @@ -54,7 +54,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidMatrix - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: partialBidMatrices diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/WaterPartialBidMatrixCalculationInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/WaterPartialBidMatrixCalculationInput.view.yaml index 955554f0..0e312298 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/WaterPartialBidMatrixCalculationInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/WaterPartialBidMatrixCalculationInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PartialBidMatrixCalculationInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: partialBidConfiguration: # Overrides the view type from the PartialBidMatrixCalculationInput view container: @@ -38,5 +38,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: WaterValueBasedPartialBidConfiguration - version: "{{version}}" + version: "{{power_ops_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/1-interface.FunctionOutput.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/1-interface.FunctionOutput.view.yaml index 61b94c86..bce31aba 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/1-interface.FunctionOutput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/1-interface.FunctionOutput.view.yaml @@ -17,7 +17,7 @@ filter: # property: # - input implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: workflowExecutionId: container: @@ -61,7 +61,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view alerts: type: @@ -70,7 +70,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: Alert - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: alerts diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingCalculationOutput.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingCalculationOutput.view.yaml index 5e6d80f1..92b1dcc9 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingCalculationOutput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingCalculationOutput.view.yaml @@ -19,9 +19,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: functionInput: # Overrides the view type from the FunctionOutput view container: @@ -33,7 +33,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BenchmarkingCalculationInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view benchmarkingResults: type: @@ -42,7 +42,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BenchmarkingResultDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: benchmarkingResults diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingTaskDispatcherOutputDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingTaskDispatcherOutputDayAhead.view.yaml index 9449fdf0..dbeb5a69 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingTaskDispatcherOutputDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingTaskDispatcherOutputDayAhead.view.yaml @@ -19,9 +19,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: functionInput: # Overrides the view type from the FunctionOutput view container: @@ -33,7 +33,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BenchmarkingTaskDispatcherInputDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view benchmarkingSubTasks: type: @@ -42,7 +42,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: benchmarkingSubTasks diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/PartialBidMatrixCalculationOutput.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/PartialBidMatrixCalculationOutput.view.yaml index e8047be5..787f8138 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/PartialBidMatrixCalculationOutput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/PartialBidMatrixCalculationOutput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: functionInput: # Overrides the view type from the FunctionOutput view container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PartialBidMatrixCalculationInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view partialMatrix: container: @@ -49,7 +49,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidMatrix - version: "{{version}}" + version: "{{power_ops_version}}" type: view bidConfiguration: container: @@ -61,5 +61,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/ShopPreprocessorOutput.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/ShopPreprocessorOutput.view.yaml index de78f347..e29c10b7 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/ShopPreprocessorOutput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/ShopPreprocessorOutput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: functionInput: # Overrides the view type from the FunctionOutput view container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopPreprocessorInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view case: container: @@ -50,5 +50,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopCase - version: "{{version}}" + version: "{{power_ops_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/ShopTriggerOutput.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/ShopTriggerOutput.view.yaml index 4e037958..11231852 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/ShopTriggerOutput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/ShopTriggerOutput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: functionInput: # Overrides the view type from the FunctionOutput view container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopTriggerInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view shopResult: container: @@ -49,5 +49,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopResult - version: "{{version}}" + version: "{{power_ops_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/TaskDispatcherOutput.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/TaskDispatcherOutput.view.yaml index 34680af2..46e328db 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/TaskDispatcherOutput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/TaskDispatcherOutput.view.yaml @@ -19,9 +19,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: functionInput: # Overrides the view type from the FunctionOutput view container: @@ -33,7 +33,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: TaskDispatcherInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view processSubTasks: type: @@ -42,7 +42,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: processSubTasks diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/TotalBidMatrixCalculationOutput.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/TotalBidMatrixCalculationOutput.view.yaml index b2b30ac5..0bd16ee0 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/TotalBidMatrixCalculationOutput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/TotalBidMatrixCalculationOutput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{version}}" + version: "{{power_ops_version}}" type: view -version: "{{version}}" +version: "{{power_ops_version}}" properties: functionInput: # Overrides the view type from the FunctionOutput view container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: TotalBidMatrixCalculationInput - version: "{{version}}" + version: "{{power_ops_version}}" type: view bidDocument: container: @@ -49,5 +49,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidDocumentDayAhead - version: "{{version}}" + version: "{{power_ops_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/obligations/BenchmarkingProductionObligationDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/obligations/BenchmarkingProductionObligationDayAhead.view.yaml index 6df32e49..5f8c21a1 100644 --- a/toolkit/modules/power_model/data_models/views/obligations/BenchmarkingProductionObligationDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/obligations/BenchmarkingProductionObligationDayAhead.view.yaml @@ -21,7 +21,7 @@ filter: space: "{{power_ops_type_space}}" externalId: BenchmarkingProductionObligationDayAhead implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: timeSeries: container: diff --git a/toolkit/modules/power_model/data_models/views/shop_result/BenchmarkingResultDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/shop_result/BenchmarkingResultDayAhead.view.yaml index dc68bf56..9dd9d37b 100644 --- a/toolkit/modules/power_model/data_models/views/shop_result/BenchmarkingResultDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/shop_result/BenchmarkingResultDayAhead.view.yaml @@ -21,7 +21,7 @@ filter: externalId: BenchmarkingResultDayAhead space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: @@ -72,7 +72,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopResult - version: "{{version}}" + version: "{{power_ops_version}}" type: view isSelected: container: @@ -97,7 +97,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: Alert - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: alerts diff --git a/toolkit/modules/power_model/data_models/views/shop_result/PriceProduction.view.yaml b/toolkit/modules/power_model/data_models/views/shop_result/PriceProduction.view.yaml index 313d525e..50189bf3 100644 --- a/toolkit/modules/power_model/data_models/views/shop_result/PriceProduction.view.yaml +++ b/toolkit/modules/power_model/data_models/views/shop_result/PriceProduction.view.yaml @@ -21,7 +21,7 @@ filter: externalId: PriceProduction space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: name: container: @@ -52,7 +52,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopResult - version: "{{version}}" + version: "{{power_ops_version}}" type: view containerPropertyIdentifier: shopResult name: shopResult diff --git a/toolkit/modules/power_model/data_models/views/shop_result/ShopResult.view.yaml b/toolkit/modules/power_model/data_models/views/shop_result/ShopResult.view.yaml index a058f6e7..aab5b99d 100644 --- a/toolkit/modules/power_model/data_models/views/shop_result/ShopResult.view.yaml +++ b/toolkit/modules/power_model/data_models/views/shop_result/ShopResult.view.yaml @@ -14,7 +14,7 @@ filter: - space value: "{{power_ops_instance_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: case: container: @@ -27,7 +27,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopCase - version: "{{version}}" + version: "{{power_ops_version}}" type: view objectiveValue: container: @@ -76,7 +76,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopTimeSeries - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: outputTimeSeries @@ -89,7 +89,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: Alert - version: "{{version}}" + version: "{{power_ops_version}}" type: view direction: outwards name: alerts diff --git a/toolkit/modules/power_model/data_models/views/shop_result/ShopTimeSeries.view.yaml b/toolkit/modules/power_model/data_models/views/shop_result/ShopTimeSeries.view.yaml index 9c36f94b..f05ad284 100644 --- a/toolkit/modules/power_model/data_models/views/shop_result/ShopTimeSeries.view.yaml +++ b/toolkit/modules/power_model/data_models/views/shop_result/ShopTimeSeries.view.yaml @@ -21,7 +21,7 @@ filter: externalId: ShopTimeSeries space: "{{power_ops_type_space}}" implements: [] -version: "{{version}}" +version: "{{power_ops_version}}" properties: objectType: container: From 71d5932eeb3deea9d73510a9f8291ef18be08244 Mon Sep 17 00:00:00 2001 From: Nina Odegard Date: Thu, 24 Oct 2024 10:11:12 +0200 Subject: [PATCH 3/9] fix: external_id naming --- .../bid_process_triggers.WorkflowTrigger.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/toolkit/modules/power_ops_template/workflows/bid_process_triggers.WorkflowTrigger.yaml b/toolkit/modules/power_ops_template/workflows/bid_process_triggers.WorkflowTrigger.yaml index 06fd09ec..48ff20f2 100644 --- a/toolkit/modules/power_ops_template/workflows/bid_process_triggers.WorkflowTrigger.yaml +++ b/toolkit/modules/power_ops_template/workflows/bid_process_triggers.WorkflowTrigger.yaml @@ -1,4 +1,4 @@ -- externalId: trigger_bid_process_bid_configuration_day_ahead_water_value_no2_full +- externalId: trigger_bid_process:bid_configuration_day_ahead_water_value_no2_full triggerRule: triggerType: schedule cronExpression: "{{wf_day_ahead_bid_process_cron}}" @@ -15,7 +15,7 @@ authentication: clientId: "{{wf_trigger_client_id}}" clientSecret: "{{wf_trigger_client_secret}}" -- externalId: trigger_bid_process_bid_configuration_day_ahead_multi_scenario_20_no2 +- externalId: trigger_bid_process:bid_configuration_day_ahead_multi_scenario_20_no2 triggerRule: triggerType: schedule cronExpression: "{{wf_day_ahead_bid_process_cron}}" @@ -32,7 +32,7 @@ authentication: clientId: "{{wf_trigger_client_id}}" clientSecret: "{{wf_trigger_client_secret}}" -- externalId: trigger_bid_process_bid_configuration_day_ahead_multi_scenario_3_no2 +- externalId: trigger_bid_process:bid_configuration_day_ahead_multi_scenario_3_no2 triggerRule: triggerType: schedule cronExpression: "{{wf_day_ahead_bid_process_cron}}" @@ -49,7 +49,7 @@ authentication: clientId: "{{wf_trigger_client_id}}" clientSecret: "{{wf_trigger_client_secret}}" -- externalId: trigger_bid_process_bid_configuration_day_ahead_multi_scenario_2_no2 +- externalId: trigger_bid_process:bid_configuration_day_ahead_multi_scenario_2_no2 triggerRule: triggerType: schedule cronExpression: "{{wf_day_ahead_bid_process_cron}}" @@ -66,7 +66,7 @@ authentication: clientId: "{{wf_trigger_client_id}}" clientSecret: "{{wf_trigger_client_secret}}" -- externalId: trigger_bid_process_bid_configuration_day_ahead_no2_combination +- externalId: trigger_bid_process:bid_configuration_day_ahead_no2_combination triggerRule: triggerType: schedule cronExpression: "{{wf_day_ahead_bid_process_cron}}" @@ -83,7 +83,7 @@ authentication: clientId: "{{wf_trigger_client_id}}" clientSecret: "{{wf_trigger_client_secret}}" -- externalId: trigger_bid_process_bid_configuration_day_ahead_price_independent_no2 +- externalId: trigger_bid_process:bid_configuration_day_ahead_price_independent_no2 triggerRule: triggerType: schedule cronExpression: "{{wf_day_ahead_bid_process_cron}}" From 1f31b7e15915a7e6ad1836ce6d679f105344ad7f Mon Sep 17 00:00:00 2001 From: Nina Odegard Date: Thu, 24 Oct 2024 15:15:17 +0200 Subject: [PATCH 4/9] chore: rename power_ops_version to power_ops_data_model_version --- .../data_models/all_DayAhead.datamodel.yaml | 90 ++++++------- .../data_models/all_PowerOps.datamodel.yaml | 126 +++++++++--------- ...ompute_BenchmarkingDayAhead.datamodel.yaml | 60 ++++----- .../compute_ShopBasedDayAhead.datamodel.yaml | 64 ++++----- ...e_TotalBidMatrixCalculation.datamodel.yaml | 54 ++++---- ...ute_WaterValueBasedDayAhead.datamodel.yaml | 44 +++--- ...onfig_DayAheadConfiguration.datamodel.yaml | 44 +++--- .../data_models/config_Resync.datamodel.yaml | 42 +++--- .../frontend_AFRRBid.datamodel.yaml | 14 +- .../data_models/frontend_Asset.datamodel.yaml | 32 ++--- .../frontend_DayAheadBid.datamodel.yaml | 50 +++---- .../product_CogShop.datamodel.yaml | 20 +-- ...enchmarkingConfigurationDayAhead.view.yaml | 12 +- .../data_models/views/BidRow.view.yaml | 8 +- .../views/DateSpecification.view.yaml | 2 +- .../views/MarketConfiguration.view.yaml | 2 +- .../views/alerts/1-interface.Alert.view.yaml | 2 +- .../views/alerts/ShopPenaltyReport.view.yaml | 4 +- .../assets/1-interface.PowerAsset.view.yaml | 2 +- .../assets/generator/Generator.view.yaml | 8 +- .../GeneratorEfficiencyCurve.view.yaml | 2 +- .../TurbineEfficiencyCurve.view.yaml | 2 +- .../assets/plant/1-interface.Plant.view.yaml | 4 +- .../assets/plant/PlantInformation.view.yaml | 6 +- .../plant/PlantWaterValueBased.view.yaml | 10 +- .../1-interface.PriceArea.view.yaml | 4 +- .../assets/price_area/PriceAreaAFRR.view.yaml | 4 +- .../price_area/PriceAreaDayAhead.view.yaml | 6 +- .../price_area/PriceAreaInformation.view.yaml | 6 +- .../1-interface.Watercourse.view.yaml | 4 +- ...nterface.PartialBidConfiguration.view.yaml | 4 +- .../BidConfigurationDayAhead.view.yaml | 10 +- ...ShopBasedPartialBidConfiguration.view.yaml | 6 +- ...alueBasedPartialBidConfiguration.view.yaml | 6 +- .../1-interface.BidDocument.view.yaml | 4 +- .../bid_document/BidDocumentAFRR.view.yaml | 8 +- .../BidDocumentDayAhead.view.yaml | 10 +- .../BidDocumentDayAheadSimple.view.yaml | 8 +- .../1-interface.BidMatrix.view.yaml | 2 +- ...1-interface.BidMatrixInformation.view.yaml | 8 +- ...face.PartialBidMatrixInformation.view.yaml | 8 +- ...idMatrixInformationWithScenarios.view.yaml | 6 +- .../cogshop/1-interface.ShopCase.view.yaml | 6 +- .../cogshop/BenchmarkingShopCase.view.yaml | 4 +- .../cogshop/ShopAttributeMapping.view.yaml | 2 +- .../views/cogshop/ShopCommands.view.yaml | 2 +- .../views/cogshop/ShopFile.view.yaml | 2 +- .../views/cogshop/ShopModel.view.yaml | 6 +- .../cogshop/ShopModelWithAssets.view.yaml | 10 +- .../ShopOutputTimeSeriesDefinition.view.yaml | 2 +- .../views/cogshop/ShopScenario.view.yaml | 10 +- .../views/cogshop/ShopScenarioSet.view.yaml | 8 +- .../1-interface.FunctionInput.view.yaml | 2 +- ...PartialBidMatrixCalculationInput.view.yaml | 8 +- .../BenchmarkingCalculationInput.view.yaml | 6 +- ...rkingTaskDispatcherInputDayAhead.view.yaml | 6 +- ...PartialBidMatrixCalculationInput.view.yaml | 8 +- .../ShopPreprocessorInput.view.yaml | 6 +- .../ShopTriggerInput.view.yaml | 8 +- .../TaskDispatcherInput.view.yaml | 6 +- .../TotalBidMatrixCalculationInput.view.yaml | 8 +- ...PartialBidMatrixCalculationInput.view.yaml | 6 +- .../1-interface.FunctionOutput.view.yaml | 6 +- .../BenchmarkingCalculationOutput.view.yaml | 8 +- ...kingTaskDispatcherOutputDayAhead.view.yaml | 8 +- ...artialBidMatrixCalculationOutput.view.yaml | 10 +- .../ShopPreprocessorOutput.view.yaml | 8 +- .../ShopTriggerOutput.view.yaml | 8 +- .../TaskDispatcherOutput.view.yaml | 8 +- .../TotalBidMatrixCalculationOutput.view.yaml | 8 +- ...kingProductionObligationDayAhead.view.yaml | 2 +- .../BenchmarkingResultDayAhead.view.yaml | 6 +- .../shop_result/PriceProduction.view.yaml | 4 +- .../views/shop_result/ShopResult.view.yaml | 8 +- .../shop_result/ShopTimeSeries.view.yaml | 2 +- .../nodes/date_specification.node.yaml | 6 +- .../nodes/market_configuration.node.yaml | 2 +- .../data_models/nodes/price_area.node.yaml | 10 +- .../data_models/nodes/shop_commands.node.yaml | 2 +- ...op_output_time_series_definition.node.yaml | 12 +- 80 files changed, 521 insertions(+), 521 deletions(-) diff --git a/toolkit/modules/power_model/data_models/all_DayAhead.datamodel.yaml b/toolkit/modules/power_model/data_models/all_DayAhead.datamodel.yaml index a91d73a4..49dcd6d8 100644 --- a/toolkit/modules/power_model/data_models/all_DayAhead.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/all_DayAhead.datamodel.yaml @@ -7,180 +7,180 @@ views: - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: WaterValueBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopScenarioSet space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Generator space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TurbineEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: GeneratorEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Plant space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PlantWaterValueBased space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TaskDispatcherInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TaskDispatcherOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopPreprocessorInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopPreprocessorOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopTriggerInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopTriggerOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: MultiScenarioPartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidMatrixCalculationOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidMatrix space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopResult space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceProduction space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopTimeSeries space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: WaterValueBasedPartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TotalBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TotalBidMatrixCalculationOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidDocumentDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopCase space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - space: "{{power_ops_models_space}}" externalId: BidDocument - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: ShopFile - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: BidMatrixInformation - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PartialBidMatrixInformation - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" diff --git a/toolkit/modules/power_model/data_models/all_PowerOps.datamodel.yaml b/toolkit/modules/power_model/data_models/all_PowerOps.datamodel.yaml index b83fcbb8..d1df8ffb 100644 --- a/toolkit/modules/power_model/data_models/all_PowerOps.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/all_PowerOps.datamodel.yaml @@ -1,253 +1,253 @@ externalId: all_PowerOps space: "{{power_ops_models_space}}" -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" name: all_PowerOps views: - externalId: ShopResult space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidRow space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: WaterValueBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopTriggerInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: WaterValueBasedPartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopPreprocessorInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: FunctionInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TotalBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TaskDispatcherInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: MultiScenarioPartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopScenarioSet space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopPreprocessorOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidMatrixCalculationOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopTriggerOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: FunctionOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TaskDispatcherOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TotalBidMatrixCalculationOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidDocument space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidDocumentDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidDocumentAFRR space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PowerAsset space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Generator space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TurbineEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Watercourse space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Plant space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PlantWaterValueBased space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PlantInformation space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceAreaInformation space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: GeneratorEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceAreaAFRR space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidMatrix space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BenchmarkingTaskDispatcherInputDayAhead space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: BenchmarkingTaskDispatcherOutputDayAhead space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: BenchmarkingCalculationInput space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: BenchmarkingCalculationOutput space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: ShopCase space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceProduction space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopTimeSeries space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - space: "{{power_ops_models_space}}" externalId: ShopFile - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: BidMatrixInformation space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidMatrixInformation space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidMatrixInformationWithScenarios space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopPenaltyReport space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BenchmarkingShopCase space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopModelWithAssets space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BenchmarkingProductionObligationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BenchmarkingResultDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BenchmarkingConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" diff --git a/toolkit/modules/power_model/data_models/compute_BenchmarkingDayAhead.datamodel.yaml b/toolkit/modules/power_model/data_models/compute_BenchmarkingDayAhead.datamodel.yaml index d0ebc118..c7248754 100644 --- a/toolkit/modules/power_model/data_models/compute_BenchmarkingDayAhead.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/compute_BenchmarkingDayAhead.datamodel.yaml @@ -6,121 +6,121 @@ description: "The process of benchmarking day-ahead bids" views: - externalId: BenchmarkingConfigurationDayAhead space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: ShopModelWithAssets space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: BenchmarkingTaskDispatcherInputDayAhead space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: BenchmarkingTaskDispatcherOutputDayAhead space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: BenchmarkingShopCase space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: BenchmarkingResultDayAhead space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: BenchmarkingProductionObligationDayAhead space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: MarketConfiguration space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: BenchmarkingCalculationOutput space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: BenchmarkingCalculationInput space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: Alert space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: ShopScenario space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: FunctionInput space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: FunctionOutput space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: PriceArea space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: ShopModel space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: ShopCommands space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: PowerAsset space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: PartialBidConfiguration space: "{{power_ops_models_space}}" - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopFile space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopCase space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopResult space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopTimeSeries space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopTriggerInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopPreprocessorInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" diff --git a/toolkit/modules/power_model/data_models/compute_ShopBasedDayAhead.datamodel.yaml b/toolkit/modules/power_model/data_models/compute_ShopBasedDayAhead.datamodel.yaml index ede93495..ac394600 100644 --- a/toolkit/modules/power_model/data_models/compute_ShopBasedDayAhead.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/compute_ShopBasedDayAhead.datamodel.yaml @@ -7,128 +7,128 @@ views: - externalId: TaskDispatcherInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TaskDispatcherOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopPreprocessorInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopPreprocessorOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopTriggerInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopTriggerOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: MultiScenarioPartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidMatrixCalculationOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidMatrix space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopScenarioSet space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopResult space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopCase space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceProduction space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopTimeSeries space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: ShopBasedPartialBidConfiguration - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: ShopFile - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" diff --git a/toolkit/modules/power_model/data_models/compute_TotalBidMatrixCalculation.datamodel.yaml b/toolkit/modules/power_model/data_models/compute_TotalBidMatrixCalculation.datamodel.yaml index f525f1f1..6ab543ca 100644 --- a/toolkit/modules/power_model/data_models/compute_TotalBidMatrixCalculation.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/compute_TotalBidMatrixCalculation.datamodel.yaml @@ -7,108 +7,108 @@ views: - externalId: BidMatrix space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidMatrixInformation space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidMatrixInformation space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TotalBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TotalBidMatrixCalculationOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidDocumentDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopResult space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceProduction space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopCase space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopTimeSeries space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: BidDocument - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: ShopFile - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" diff --git a/toolkit/modules/power_model/data_models/compute_WaterValueBasedDayAhead.datamodel.yaml b/toolkit/modules/power_model/data_models/compute_WaterValueBasedDayAhead.datamodel.yaml index 8293ccfd..53006238 100644 --- a/toolkit/modules/power_model/data_models/compute_WaterValueBasedDayAhead.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/compute_WaterValueBasedDayAhead.datamodel.yaml @@ -7,88 +7,88 @@ views: - externalId: TaskDispatcherInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TaskDispatcherOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: WaterValueBasedPartialBidMatrixCalculationInput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidMatrixCalculationOutput space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Plant space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PlantWaterValueBased space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Generator space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: GeneratorEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TurbineEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: BidMatrix - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: WaterValueBasedPartialBidConfiguration - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" diff --git a/toolkit/modules/power_model/data_models/config_DayAheadConfiguration.datamodel.yaml b/toolkit/modules/power_model/data_models/config_DayAheadConfiguration.datamodel.yaml index 746e2ad9..69f0dbd2 100644 --- a/toolkit/modules/power_model/data_models/config_DayAheadConfiguration.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/config_DayAheadConfiguration.datamodel.yaml @@ -7,88 +7,88 @@ views: - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: WaterValueBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopScenarioSet space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Generator space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TurbineEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: GeneratorEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PowerAsset space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Plant space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PlantInformation space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PlantWaterValueBased space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopFile space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" diff --git a/toolkit/modules/power_model/data_models/config_Resync.datamodel.yaml b/toolkit/modules/power_model/data_models/config_Resync.datamodel.yaml index a1136c26..6372c915 100644 --- a/toolkit/modules/power_model/data_models/config_Resync.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/config_Resync.datamodel.yaml @@ -7,84 +7,84 @@ views: - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: WaterValueBasedPartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopScenarioSet space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Generator space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TurbineEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: GeneratorEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PowerAsset space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Plant space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PlantWaterValueBased space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopFile space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" diff --git a/toolkit/modules/power_model/data_models/frontend_AFRRBid.datamodel.yaml b/toolkit/modules/power_model/data_models/frontend_AFRRBid.datamodel.yaml index 7d477302..f79f4e94 100644 --- a/toolkit/modules/power_model/data_models/frontend_AFRRBid.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/frontend_AFRRBid.datamodel.yaml @@ -7,28 +7,28 @@ views: - externalId: BidDocumentAFRR space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidDocument space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidRow space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceAreaAFRR space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PowerAsset space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" diff --git a/toolkit/modules/power_model/data_models/frontend_Asset.datamodel.yaml b/toolkit/modules/power_model/data_models/frontend_Asset.datamodel.yaml index a66c93a6..32c4dbe3 100644 --- a/toolkit/modules/power_model/data_models/frontend_Asset.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/frontend_Asset.datamodel.yaml @@ -7,64 +7,64 @@ views: - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceAreaAFRR space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceAreaInformation space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PowerAsset space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Plant space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PlantWaterValueBased space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PlantInformation space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Watercourse space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Generator space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: TurbineEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: GeneratorEfficiencyCurve space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" diff --git a/toolkit/modules/power_model/data_models/frontend_DayAheadBid.datamodel.yaml b/toolkit/modules/power_model/data_models/frontend_DayAheadBid.datamodel.yaml index 282d740c..303ab169 100644 --- a/toolkit/modules/power_model/data_models/frontend_DayAheadBid.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/frontend_DayAheadBid.datamodel.yaml @@ -7,100 +7,100 @@ views: - externalId: BidDocumentDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidDocument space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceArea space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceAreaDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PriceProduction space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopCase space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PowerAsset space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidConfigurationDayAhead space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopResult space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: MarketConfiguration space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopTimeSeries space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopFile space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidMatrix space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: BidMatrixInformation space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidMatrixInformation space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: PartialBidMatrixInformationWithScenarios space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopPenaltyReport space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: DateSpecification space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" diff --git a/toolkit/modules/power_model/data_models/product_CogShop.datamodel.yaml b/toolkit/modules/power_model/data_models/product_CogShop.datamodel.yaml index 33f6b5e7..687f9e7b 100644 --- a/toolkit/modules/power_model/data_models/product_CogShop.datamodel.yaml +++ b/toolkit/modules/power_model/data_models/product_CogShop.datamodel.yaml @@ -7,40 +7,40 @@ views: - externalId: ShopCase space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopScenario space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopCommands space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopAttributeMapping space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopModel space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopResult space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopTimeSeries space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: Alert space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopFile space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" - externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_models_space}}" type: view - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" diff --git a/toolkit/modules/power_model/data_models/views/BenchmarkingConfigurationDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/BenchmarkingConfigurationDayAhead.view.yaml index 01eaf5ba..ccbad547 100644 --- a/toolkit/modules/power_model/data_models/views/BenchmarkingConfigurationDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/BenchmarkingConfigurationDayAhead.view.yaml @@ -21,7 +21,7 @@ filter: space: "{{power_ops_type_space}}" externalId: BenchmarkingConfigurationDayAhead implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: @@ -38,7 +38,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: bidConfigurations @@ -51,7 +51,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopModelWithAssets - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: assetsPerShopModel @@ -68,7 +68,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PriceAreaDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view shopStartSpecification: container: @@ -81,7 +81,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: DateSpecification - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view shopEndSpecification: container: @@ -94,5 +94,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: DateSpecification - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/BidRow.view.yaml b/toolkit/modules/power_model/data_models/views/BidRow.view.yaml index 16044fa9..bbd50ef0 100644 --- a/toolkit/modules/power_model/data_models/views/BidRow.view.yaml +++ b/toolkit/modules/power_model/data_models/views/BidRow.view.yaml @@ -21,7 +21,7 @@ filter: externalId: BidRow space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: price: container: @@ -88,7 +88,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidRow - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view powerAsset: container: @@ -101,7 +101,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view alerts: type: @@ -110,7 +110,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: Alert - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: alerts diff --git a/toolkit/modules/power_model/data_models/views/DateSpecification.view.yaml b/toolkit/modules/power_model/data_models/views/DateSpecification.view.yaml index c35ee9ab..c8dbb0d3 100644 --- a/toolkit/modules/power_model/data_models/views/DateSpecification.view.yaml +++ b/toolkit/modules/power_model/data_models/views/DateSpecification.view.yaml @@ -21,7 +21,7 @@ filter: externalId: DateSpecification space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: diff --git a/toolkit/modules/power_model/data_models/views/MarketConfiguration.view.yaml b/toolkit/modules/power_model/data_models/views/MarketConfiguration.view.yaml index c8c3a028..c4749250 100644 --- a/toolkit/modules/power_model/data_models/views/MarketConfiguration.view.yaml +++ b/toolkit/modules/power_model/data_models/views/MarketConfiguration.view.yaml @@ -21,7 +21,7 @@ filter: externalId: MarketConfiguration space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: diff --git a/toolkit/modules/power_model/data_models/views/alerts/1-interface.Alert.view.yaml b/toolkit/modules/power_model/data_models/views/alerts/1-interface.Alert.view.yaml index 5da5cd1b..5482cc7a 100644 --- a/toolkit/modules/power_model/data_models/views/alerts/1-interface.Alert.view.yaml +++ b/toolkit/modules/power_model/data_models/views/alerts/1-interface.Alert.view.yaml @@ -21,7 +21,7 @@ filter: # externalId: Alert # space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: time: container: diff --git a/toolkit/modules/power_model/data_models/views/alerts/ShopPenaltyReport.view.yaml b/toolkit/modules/power_model/data_models/views/alerts/ShopPenaltyReport.view.yaml index 1572e830..5348e7f0 100644 --- a/toolkit/modules/power_model/data_models/views/alerts/ShopPenaltyReport.view.yaml +++ b/toolkit/modules/power_model/data_models/views/alerts/ShopPenaltyReport.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: Alert - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: penalties: container: diff --git a/toolkit/modules/power_model/data_models/views/assets/1-interface.PowerAsset.view.yaml b/toolkit/modules/power_model/data_models/views/assets/1-interface.PowerAsset.view.yaml index 0fafac28..78a8f2a4 100644 --- a/toolkit/modules/power_model/data_models/views/assets/1-interface.PowerAsset.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/1-interface.PowerAsset.view.yaml @@ -14,7 +14,7 @@ filter: - space value: "{{power_ops_instance_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: diff --git a/toolkit/modules/power_model/data_models/views/assets/generator/Generator.view.yaml b/toolkit/modules/power_model/data_models/views/assets/generator/Generator.view.yaml index c33a9ee0..60f8cf04 100644 --- a/toolkit/modules/power_model/data_models/views/assets/generator/Generator.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/generator/Generator.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: productionMin: container: @@ -72,7 +72,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: GeneratorEfficiencyCurve - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view turbineEfficiencyCurves: type: @@ -81,7 +81,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: TurbineEfficiencyCurve - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: turbineEfficiencyCurves diff --git a/toolkit/modules/power_model/data_models/views/assets/generator/GeneratorEfficiencyCurve.view.yaml b/toolkit/modules/power_model/data_models/views/assets/generator/GeneratorEfficiencyCurve.view.yaml index 073bdf8a..eb611fc4 100644 --- a/toolkit/modules/power_model/data_models/views/assets/generator/GeneratorEfficiencyCurve.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/generator/GeneratorEfficiencyCurve.view.yaml @@ -21,7 +21,7 @@ filter: externalId: GeneratorEfficiencyCurve space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: power: container: diff --git a/toolkit/modules/power_model/data_models/views/assets/generator/TurbineEfficiencyCurve.view.yaml b/toolkit/modules/power_model/data_models/views/assets/generator/TurbineEfficiencyCurve.view.yaml index e38742ad..b2c9c04c 100644 --- a/toolkit/modules/power_model/data_models/views/assets/generator/TurbineEfficiencyCurve.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/generator/TurbineEfficiencyCurve.view.yaml @@ -21,7 +21,7 @@ filter: externalId: TurbineEfficiencyCurve space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: head: container: diff --git a/toolkit/modules/power_model/data_models/views/assets/plant/1-interface.Plant.view.yaml b/toolkit/modules/power_model/data_models/views/assets/plant/1-interface.Plant.view.yaml index 66991694..e34d62ef 100644 --- a/toolkit/modules/power_model/data_models/views/assets/plant/1-interface.Plant.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/plant/1-interface.Plant.view.yaml @@ -11,7 +11,7 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: {} diff --git a/toolkit/modules/power_model/data_models/views/assets/plant/PlantInformation.view.yaml b/toolkit/modules/power_model/data_models/views/assets/plant/PlantInformation.view.yaml index b522e267..a66cfaca 100644 --- a/toolkit/modules/power_model/data_models/views/assets/plant/PlantInformation.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/plant/PlantInformation.view.yaml @@ -11,11 +11,11 @@ description: TODO interface for configuration population implements: - space: "{{power_ops_models_space}}" externalId: PlantWaterValueBased - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view # - space: "{{power_ops_models_space}}" # externalId: PlantShop - # version: "{{power_ops_version}}" + # version: "{{power_ops_data_model_version}}" # type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: {} diff --git a/toolkit/modules/power_model/data_models/views/assets/plant/PlantWaterValueBased.view.yaml b/toolkit/modules/power_model/data_models/views/assets/plant/PlantWaterValueBased.view.yaml index 343b5549..f485fb9c 100644 --- a/toolkit/modules/power_model/data_models/views/assets/plant/PlantWaterValueBased.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/plant/PlantWaterValueBased.view.yaml @@ -11,9 +11,9 @@ description: Represent a plant TODO for WVB implements: - space: "{{power_ops_models_space}}" externalId: Plant - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: headLossFactor: container: @@ -60,7 +60,7 @@ properties: # source: # space: "{{power_ops_models_space}}" # externalId: Watercourse - # version: "{{power_ops_version}}" + # version: "{{power_ops_data_model_version}}" # type: view connectionLosses: container: @@ -128,7 +128,7 @@ properties: # source: # space: "{{power_ops_models_space}}" # externalId: Reservoir - # version: "{{power_ops_version}}" + # version: "{{power_ops_data_model_version}}" # type: view generators: type: @@ -137,7 +137,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: Generator - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: generators diff --git a/toolkit/modules/power_model/data_models/views/assets/price_area/1-interface.PriceArea.view.yaml b/toolkit/modules/power_model/data_models/views/assets/price_area/1-interface.PriceArea.view.yaml index b4af73b4..bdf96277 100644 --- a/toolkit/modules/power_model/data_models/views/assets/price_area/1-interface.PriceArea.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/price_area/1-interface.PriceArea.view.yaml @@ -11,7 +11,7 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: {} diff --git a/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaAFRR.view.yaml b/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaAFRR.view.yaml index a46e39fa..859bc186 100644 --- a/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaAFRR.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaAFRR.view.yaml @@ -23,9 +23,9 @@ description: Information about the Price Area that is only relevant for AFRR implements: - space: "{{power_ops_models_space}}" externalId: PriceArea - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: capacityPriceUp: container: diff --git a/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaDayAhead.view.yaml index ca2cfbbe..036064d6 100644 --- a/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaDayAhead.view.yaml @@ -23,9 +23,9 @@ description: Information about the Price Area that is only relevant for Day Ahea implements: - space: "{{power_ops_models_space}}" externalId: PriceArea - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: defaultBidConfiguration: container: @@ -38,7 +38,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view mainPriceScenario: container: diff --git a/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaInformation.view.yaml b/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaInformation.view.yaml index f138dbfe..559d0531 100644 --- a/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaInformation.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/price_area/PriceAreaInformation.view.yaml @@ -14,11 +14,11 @@ description: TODO interface for configuration population implements: - space: "{{power_ops_models_space}}" externalId: PriceAreaAFRR - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view - space: "{{power_ops_models_space}}" externalId: PriceAreaDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: {} diff --git a/toolkit/modules/power_model/data_models/views/assets/watercourse/1-interface.Watercourse.view.yaml b/toolkit/modules/power_model/data_models/views/assets/watercourse/1-interface.Watercourse.view.yaml index 292ee88c..ab241d6f 100644 --- a/toolkit/modules/power_model/data_models/views/assets/watercourse/1-interface.Watercourse.view.yaml +++ b/toolkit/modules/power_model/data_models/views/assets/watercourse/1-interface.Watercourse.view.yaml @@ -14,7 +14,7 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: {} diff --git a/toolkit/modules/power_model/data_models/views/bid_configuration/1-interface.PartialBidConfiguration.view.yaml b/toolkit/modules/power_model/data_models/views/bid_configuration/1-interface.PartialBidConfiguration.view.yaml index c36d394f..88aa3642 100644 --- a/toolkit/modules/power_model/data_models/views/bid_configuration/1-interface.PartialBidConfiguration.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_configuration/1-interface.PartialBidConfiguration.view.yaml @@ -13,7 +13,7 @@ filter: - node - space value: "{{power_ops_instance_space}}" -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: @@ -42,7 +42,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view addSteps: container: diff --git a/toolkit/modules/power_model/data_models/views/bid_configuration/BidConfigurationDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/bid_configuration/BidConfigurationDayAhead.view.yaml index c76be7ed..857fb9f3 100644 --- a/toolkit/modules/power_model/data_models/views/bid_configuration/BidConfigurationDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_configuration/BidConfigurationDayAhead.view.yaml @@ -21,7 +21,7 @@ filter: space: "{{power_ops_type_space}}" externalId: BidConfigurationDayAhead implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: @@ -42,7 +42,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: MarketConfiguration - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view priceArea: container: @@ -55,7 +55,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PriceAreaDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view bidDateSpecification: container: @@ -68,7 +68,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: DateSpecification - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view partials: type: @@ -77,7 +77,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: partials diff --git a/toolkit/modules/power_model/data_models/views/bid_configuration/ShopBasedPartialBidConfiguration.view.yaml b/toolkit/modules/power_model/data_models/views/bid_configuration/ShopBasedPartialBidConfiguration.view.yaml index a1a22202..dd0b2743 100644 --- a/toolkit/modules/power_model/data_models/views/bid_configuration/ShopBasedPartialBidConfiguration.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_configuration/ShopBasedPartialBidConfiguration.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: scenarioSet: container: @@ -37,5 +37,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopScenarioSet - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/bid_configuration/WaterValueBasedPartialBidConfiguration.view.yaml b/toolkit/modules/power_model/data_models/views/bid_configuration/WaterValueBasedPartialBidConfiguration.view.yaml index e510da2a..25470982 100644 --- a/toolkit/modules/power_model/data_models/views/bid_configuration/WaterValueBasedPartialBidConfiguration.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_configuration/WaterValueBasedPartialBidConfiguration.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: powerAsset: container: @@ -38,5 +38,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PlantWaterValueBased - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/bid_document/1-interface.BidDocument.view.yaml b/toolkit/modules/power_model/data_models/views/bid_document/1-interface.BidDocument.view.yaml index 45a4e7bd..ad22c03f 100644 --- a/toolkit/modules/power_model/data_models/views/bid_document/1-interface.BidDocument.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_document/1-interface.BidDocument.view.yaml @@ -14,7 +14,7 @@ filter: - space value: "{{power_ops_instance_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: @@ -71,7 +71,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: Alert - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: alerts diff --git a/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentAFRR.view.yaml b/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentAFRR.view.yaml index 79ceef58..08c5407a 100644 --- a/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentAFRR.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentAFRR.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: BidDocument - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: priceArea: container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PriceAreaAFRR - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view bids: type: @@ -46,7 +46,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidRow - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: bids diff --git a/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAhead.view.yaml index bfa67b7e..f4a17883 100644 --- a/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAhead.view.yaml @@ -22,9 +22,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: BidDocument - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: bidConfiguration: container: @@ -36,7 +36,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view total: container: @@ -48,7 +48,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidMatrixInformation - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view partials: type: @@ -57,7 +57,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PartialBidMatrixInformation - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: partials diff --git a/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAheadSimple.view.yaml b/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAheadSimple.view.yaml index 69afba0a..a7dee7f5 100644 --- a/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAheadSimple.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_document/BidDocumentDayAheadSimple.view.yaml @@ -20,7 +20,7 @@ filter: externalId: DayAheadBidDocument space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: priceArea: container: @@ -32,7 +32,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PriceArea - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view total: container: @@ -44,7 +44,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidMatrix - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view partials: type: @@ -53,7 +53,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidMatrix - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: partials diff --git a/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrix.view.yaml b/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrix.view.yaml index 4942f36e..1270495c 100644 --- a/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrix.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrix.view.yaml @@ -13,7 +13,7 @@ filter: - space value: "{{power_ops_instance_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: state: container: diff --git a/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrixInformation.view.yaml b/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrixInformation.view.yaml index f4cd5b3f..a65bf4e4 100644 --- a/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrixInformation.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.BidMatrixInformation.view.yaml @@ -15,9 +15,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: BidMatrix - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: underlyingBidMatrices: type: @@ -26,7 +26,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidMatrix - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: underlyingBidMatrices @@ -39,7 +39,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: Alert - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: alerts diff --git a/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.PartialBidMatrixInformation.view.yaml b/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.PartialBidMatrixInformation.view.yaml index 4df7573a..8e53b511 100644 --- a/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.PartialBidMatrixInformation.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_matrix/1-interface.PartialBidMatrixInformation.view.yaml @@ -15,9 +15,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: BidMatrixInformation - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: powerAsset: container: @@ -27,7 +27,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view containerPropertyIdentifier: powerAsset name: powerAsset @@ -46,7 +46,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view containerPropertyIdentifier: partialBidConfiguration name: partialBidConfiguration diff --git a/toolkit/modules/power_model/data_models/views/bid_matrix/PartialBidMatrixInformationWithScenarios.view.yaml b/toolkit/modules/power_model/data_models/views/bid_matrix/PartialBidMatrixInformationWithScenarios.view.yaml index dbc894fd..13d054a7 100644 --- a/toolkit/modules/power_model/data_models/views/bid_matrix/PartialBidMatrixInformationWithScenarios.view.yaml +++ b/toolkit/modules/power_model/data_models/views/bid_matrix/PartialBidMatrixInformationWithScenarios.view.yaml @@ -15,9 +15,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PartialBidMatrixInformation - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: multiScenarioInput: type: @@ -26,7 +26,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PriceProduction - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: multiScenarioInput diff --git a/toolkit/modules/power_model/data_models/views/cogshop/1-interface.ShopCase.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/1-interface.ShopCase.view.yaml index d0fc4860..7fbc32bd 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/1-interface.ShopCase.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/1-interface.ShopCase.view.yaml @@ -3,7 +3,7 @@ externalId: ShopCase name: ShopCase description: A case that links a Scenario and shop dates to run shop with implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: scenario: container: @@ -16,7 +16,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopScenario - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view startTime: container: @@ -42,7 +42,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopFile - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards description: The list of shop files that are used in a shop run. This encompasses all shop files such as case, module series, cut files etc. diff --git a/toolkit/modules/power_model/data_models/views/cogshop/BenchmarkingShopCase.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/BenchmarkingShopCase.view.yaml index d38d92e5..2796415e 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/BenchmarkingShopCase.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/BenchmarkingShopCase.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: ShopCase - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: bidSource: # A BidConfiguration ext ID, or BenchmarkingProductionObligationDayAhead ext ID, or a string for "upper bound" container: diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopAttributeMapping.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopAttributeMapping.view.yaml index 09a94a39..a0558d64 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopAttributeMapping.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopAttributeMapping.view.yaml @@ -21,7 +21,7 @@ filter: externalId: ShopAttributeMapping space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: objectType: container: diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopCommands.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopCommands.view.yaml index b9479a38..84b9cf3f 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopCommands.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopCommands.view.yaml @@ -21,7 +21,7 @@ filter: externalId: ShopCommands space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopFile.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopFile.view.yaml index 339ba3ad..46e38dab 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopFile.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopFile.view.yaml @@ -21,7 +21,7 @@ filter: externalId: ShopFile space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopModel.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopModel.view.yaml index 2e654d0d..a03754fc 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopModel.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopModel.view.yaml @@ -21,7 +21,7 @@ filter: externalId: ShopModel space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: @@ -70,7 +70,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopFile - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: cogShopFilesConfig @@ -83,7 +83,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopAttributeMapping - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: baseAttributeMappings diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopModelWithAssets.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopModelWithAssets.view.yaml index c2a38bd3..e8225879 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopModelWithAssets.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopModelWithAssets.view.yaml @@ -21,7 +21,7 @@ filter: externalId: ShopModelWithAssets space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: shopModel: container: @@ -34,7 +34,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopModel - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view powerAssets: type: @@ -45,7 +45,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PowerAsset - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards connectionType: multi_edge_connection @@ -58,7 +58,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BenchmarkingProductionObligationDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards connectionType: multi_edge_connection @@ -73,5 +73,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopCommands - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopOutputTimeSeriesDefinition.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopOutputTimeSeriesDefinition.view.yaml index 8bf01697..09351c6e 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopOutputTimeSeriesDefinition.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopOutputTimeSeriesDefinition.view.yaml @@ -21,7 +21,7 @@ filter: externalId: ShopOutputTimeSeriesDefinition space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopScenario.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopScenario.view.yaml index edadeb0d..a78d622a 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopScenario.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopScenario.view.yaml @@ -14,7 +14,7 @@ filter: - space value: "{{power_ops_instance_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: @@ -35,7 +35,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopModel - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view commands: container: @@ -48,7 +48,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopCommands - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view source: container: @@ -65,7 +65,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopOutputTimeSeriesDefinition - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: outputDefinition @@ -78,7 +78,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopAttributeMapping - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: attributeMappingsOverride diff --git a/toolkit/modules/power_model/data_models/views/cogshop/ShopScenarioSet.view.yaml b/toolkit/modules/power_model/data_models/views/cogshop/ShopScenarioSet.view.yaml index b5ec023a..61ea116a 100644 --- a/toolkit/modules/power_model/data_models/views/cogshop/ShopScenarioSet.view.yaml +++ b/toolkit/modules/power_model/data_models/views/cogshop/ShopScenarioSet.view.yaml @@ -14,7 +14,7 @@ filter: - space value: "{{power_ops_instance_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: @@ -35,7 +35,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: DateSpecification - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view endSpecification: container: @@ -48,7 +48,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: DateSpecification - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view scenarios: type: @@ -57,7 +57,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopScenario - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: scenarios diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.FunctionInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.FunctionInput.view.yaml index 37b6e56b..13e60e57 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.FunctionInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.FunctionInput.view.yaml @@ -14,7 +14,7 @@ filter: - space value: "{{power_ops_instance_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: workflowExecutionId: container: diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.PartialBidMatrixCalculationInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.PartialBidMatrixCalculationInput.view.yaml index 5eae4e2a..326fb953 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.PartialBidMatrixCalculationInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/1-interface.PartialBidMatrixCalculationInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: bidDate: container: @@ -46,7 +46,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view partialBidConfiguration: container: @@ -59,5 +59,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PartialBidConfiguration - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingCalculationInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingCalculationInput.view.yaml index 9aa7578b..ca4b7359 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingCalculationInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingCalculationInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: shopResults: type: @@ -34,7 +34,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopResult - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: shopResults diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingTaskDispatcherInputDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingTaskDispatcherInputDayAhead.view.yaml index 76c29322..0ce0ef7e 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingTaskDispatcherInputDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/BenchmarkingTaskDispatcherInputDayAhead.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: benchmarkingConfig: container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BenchmarkingConfigurationDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view deliveryDate: container: diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/MultiScenarioPartialBidMatrixCalculationInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/MultiScenarioPartialBidMatrixCalculationInput.view.yaml index c43476ec..96fee71c 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/MultiScenarioPartialBidMatrixCalculationInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/MultiScenarioPartialBidMatrixCalculationInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PartialBidMatrixCalculationInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: partialBidConfiguration: # Overrides the view type from the PartialBidMatrixCalculationInput view container: @@ -38,7 +38,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopBasedPartialBidConfiguration - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view priceProduction: type: @@ -47,7 +47,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PriceProduction - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: priceProduction diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/ShopPreprocessorInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/ShopPreprocessorInput.view.yaml index 4cce464c..e5f3116c 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/ShopPreprocessorInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/ShopPreprocessorInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: scenario: container: @@ -38,7 +38,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopScenario - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view startTime: container: diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/ShopTriggerInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/ShopTriggerInput.view.yaml index 5eba23bb..d6189903 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/ShopTriggerInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/ShopTriggerInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: cogShopTag: container: @@ -46,7 +46,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopCase - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view preprocessorInput: container: @@ -59,5 +59,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopPreprocessorInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/TaskDispatcherInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/TaskDispatcherInput.view.yaml index 6372f635..f3838699 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/TaskDispatcherInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/TaskDispatcherInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: bidConfiguration: container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view bidDate: container: diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/TotalBidMatrixCalculationInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/TotalBidMatrixCalculationInput.view.yaml index 10804dc1..ba690dc8 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/TotalBidMatrixCalculationInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/TotalBidMatrixCalculationInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: bidConfiguration: container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view bidDate: container: @@ -54,7 +54,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidMatrix - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: partialBidMatrices diff --git a/toolkit/modules/power_model/data_models/views/function_inputs/WaterPartialBidMatrixCalculationInput.view.yaml b/toolkit/modules/power_model/data_models/views/function_inputs/WaterPartialBidMatrixCalculationInput.view.yaml index 0e312298..2edca55d 100644 --- a/toolkit/modules/power_model/data_models/views/function_inputs/WaterPartialBidMatrixCalculationInput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_inputs/WaterPartialBidMatrixCalculationInput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: PartialBidMatrixCalculationInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: partialBidConfiguration: # Overrides the view type from the PartialBidMatrixCalculationInput view container: @@ -38,5 +38,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: WaterValueBasedPartialBidConfiguration - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/1-interface.FunctionOutput.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/1-interface.FunctionOutput.view.yaml index bce31aba..9f74e538 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/1-interface.FunctionOutput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/1-interface.FunctionOutput.view.yaml @@ -17,7 +17,7 @@ filter: # property: # - input implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: workflowExecutionId: container: @@ -61,7 +61,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view alerts: type: @@ -70,7 +70,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: Alert - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: alerts diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingCalculationOutput.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingCalculationOutput.view.yaml index 92b1dcc9..48f21cbe 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingCalculationOutput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingCalculationOutput.view.yaml @@ -19,9 +19,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: functionInput: # Overrides the view type from the FunctionOutput view container: @@ -33,7 +33,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BenchmarkingCalculationInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view benchmarkingResults: type: @@ -42,7 +42,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BenchmarkingResultDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: benchmarkingResults diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingTaskDispatcherOutputDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingTaskDispatcherOutputDayAhead.view.yaml index dbeb5a69..1931943c 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingTaskDispatcherOutputDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/BenchmarkingTaskDispatcherOutputDayAhead.view.yaml @@ -19,9 +19,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: functionInput: # Overrides the view type from the FunctionOutput view container: @@ -33,7 +33,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BenchmarkingTaskDispatcherInputDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view benchmarkingSubTasks: type: @@ -42,7 +42,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: benchmarkingSubTasks diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/PartialBidMatrixCalculationOutput.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/PartialBidMatrixCalculationOutput.view.yaml index 787f8138..11ad1199 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/PartialBidMatrixCalculationOutput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/PartialBidMatrixCalculationOutput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: functionInput: # Overrides the view type from the FunctionOutput view container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: PartialBidMatrixCalculationInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view partialMatrix: container: @@ -49,7 +49,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidMatrix - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view bidConfiguration: container: @@ -61,5 +61,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidConfigurationDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/ShopPreprocessorOutput.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/ShopPreprocessorOutput.view.yaml index e29c10b7..6376550b 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/ShopPreprocessorOutput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/ShopPreprocessorOutput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: functionInput: # Overrides the view type from the FunctionOutput view container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopPreprocessorInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view case: container: @@ -50,5 +50,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopCase - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/ShopTriggerOutput.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/ShopTriggerOutput.view.yaml index 11231852..3992225e 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/ShopTriggerOutput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/ShopTriggerOutput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: functionInput: # Overrides the view type from the FunctionOutput view container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopTriggerInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view shopResult: container: @@ -49,5 +49,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopResult - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/TaskDispatcherOutput.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/TaskDispatcherOutput.view.yaml index 46e328db..d9503ce6 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/TaskDispatcherOutput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/TaskDispatcherOutput.view.yaml @@ -19,9 +19,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: functionInput: # Overrides the view type from the FunctionOutput view container: @@ -33,7 +33,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: TaskDispatcherInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view processSubTasks: type: @@ -42,7 +42,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: FunctionInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: processSubTasks diff --git a/toolkit/modules/power_model/data_models/views/function_outputs/TotalBidMatrixCalculationOutput.view.yaml b/toolkit/modules/power_model/data_models/views/function_outputs/TotalBidMatrixCalculationOutput.view.yaml index 0bd16ee0..87f598bc 100644 --- a/toolkit/modules/power_model/data_models/views/function_outputs/TotalBidMatrixCalculationOutput.view.yaml +++ b/toolkit/modules/power_model/data_models/views/function_outputs/TotalBidMatrixCalculationOutput.view.yaml @@ -23,9 +23,9 @@ filter: implements: - space: "{{power_ops_models_space}}" externalId: FunctionOutput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: functionInput: # Overrides the view type from the FunctionOutput view container: @@ -37,7 +37,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: TotalBidMatrixCalculationInput - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view bidDocument: container: @@ -49,5 +49,5 @@ properties: source: space: "{{power_ops_models_space}}" externalId: BidDocumentDayAhead - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view diff --git a/toolkit/modules/power_model/data_models/views/obligations/BenchmarkingProductionObligationDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/obligations/BenchmarkingProductionObligationDayAhead.view.yaml index 5f8c21a1..8c8db3aa 100644 --- a/toolkit/modules/power_model/data_models/views/obligations/BenchmarkingProductionObligationDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/obligations/BenchmarkingProductionObligationDayAhead.view.yaml @@ -21,7 +21,7 @@ filter: space: "{{power_ops_type_space}}" externalId: BenchmarkingProductionObligationDayAhead implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: timeSeries: container: diff --git a/toolkit/modules/power_model/data_models/views/shop_result/BenchmarkingResultDayAhead.view.yaml b/toolkit/modules/power_model/data_models/views/shop_result/BenchmarkingResultDayAhead.view.yaml index 9dd9d37b..99548408 100644 --- a/toolkit/modules/power_model/data_models/views/shop_result/BenchmarkingResultDayAhead.view.yaml +++ b/toolkit/modules/power_model/data_models/views/shop_result/BenchmarkingResultDayAhead.view.yaml @@ -21,7 +21,7 @@ filter: externalId: BenchmarkingResultDayAhead space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: @@ -72,7 +72,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopResult - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view isSelected: container: @@ -97,7 +97,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: Alert - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: alerts diff --git a/toolkit/modules/power_model/data_models/views/shop_result/PriceProduction.view.yaml b/toolkit/modules/power_model/data_models/views/shop_result/PriceProduction.view.yaml index 50189bf3..4a688396 100644 --- a/toolkit/modules/power_model/data_models/views/shop_result/PriceProduction.view.yaml +++ b/toolkit/modules/power_model/data_models/views/shop_result/PriceProduction.view.yaml @@ -21,7 +21,7 @@ filter: externalId: PriceProduction space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: name: container: @@ -52,7 +52,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopResult - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view containerPropertyIdentifier: shopResult name: shopResult diff --git a/toolkit/modules/power_model/data_models/views/shop_result/ShopResult.view.yaml b/toolkit/modules/power_model/data_models/views/shop_result/ShopResult.view.yaml index aab5b99d..ce78281f 100644 --- a/toolkit/modules/power_model/data_models/views/shop_result/ShopResult.view.yaml +++ b/toolkit/modules/power_model/data_models/views/shop_result/ShopResult.view.yaml @@ -14,7 +14,7 @@ filter: - space value: "{{power_ops_instance_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: case: container: @@ -27,7 +27,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopCase - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view objectiveValue: container: @@ -76,7 +76,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: ShopTimeSeries - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: outputTimeSeries @@ -89,7 +89,7 @@ properties: source: space: "{{power_ops_models_space}}" externalId: Alert - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view direction: outwards name: alerts diff --git a/toolkit/modules/power_model/data_models/views/shop_result/ShopTimeSeries.view.yaml b/toolkit/modules/power_model/data_models/views/shop_result/ShopTimeSeries.view.yaml index f05ad284..80ecf6e8 100644 --- a/toolkit/modules/power_model/data_models/views/shop_result/ShopTimeSeries.view.yaml +++ b/toolkit/modules/power_model/data_models/views/shop_result/ShopTimeSeries.view.yaml @@ -21,7 +21,7 @@ filter: externalId: ShopTimeSeries space: "{{power_ops_type_space}}" implements: [] -version: "{{power_ops_version}}" +version: "{{power_ops_data_model_version}}" properties: objectType: container: diff --git a/toolkit/modules/power_ops_template/data_models/nodes/date_specification.node.yaml b/toolkit/modules/power_ops_template/data_models/nodes/date_specification.node.yaml index 28def65e..6821fd1a 100644 --- a/toolkit/modules/power_ops_template/data_models/nodes/date_specification.node.yaml +++ b/toolkit/modules/power_ops_template/data_models/nodes/date_specification.node.yaml @@ -20,7 +20,7 @@ - source: space: "{{power_ops_models_space}}" externalId: DateSpecification - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: Tomorrow @@ -38,7 +38,7 @@ - source: space: "{{power_ops_models_space}}" externalId: DateSpecification - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: Start of tomorrow @@ -56,7 +56,7 @@ - source: space: "{{power_ops_models_space}}" externalId: DateSpecification - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: End of next week diff --git a/toolkit/modules/power_ops_template/data_models/nodes/market_configuration.node.yaml b/toolkit/modules/power_ops_template/data_models/nodes/market_configuration.node.yaml index 4cc72619..b8fc081e 100644 --- a/toolkit/modules/power_ops_template/data_models/nodes/market_configuration.node.yaml +++ b/toolkit/modules/power_ops_template/data_models/nodes/market_configuration.node.yaml @@ -24,7 +24,7 @@ - source: space: "{{power_ops_models_space}}" externalId: MarketConfiguration - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: "Nord Pool Day-Ahead" diff --git a/toolkit/modules/power_ops_template/data_models/nodes/price_area.node.yaml b/toolkit/modules/power_ops_template/data_models/nodes/price_area.node.yaml index 037b045f..b1441428 100644 --- a/toolkit/modules/power_ops_template/data_models/nodes/price_area.node.yaml +++ b/toolkit/modules/power_ops_template/data_models/nodes/price_area.node.yaml @@ -31,7 +31,7 @@ - source: space: "{{power_ops_models_space}}" externalId: PriceAreaInformation - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: NO1 @@ -47,7 +47,7 @@ - source: space: "{{power_ops_models_space}}" externalId: PriceAreaInformation - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: NO2 @@ -63,7 +63,7 @@ - source: space: "{{power_ops_models_space}}" externalId: PriceAreaInformation - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: NO3 @@ -79,7 +79,7 @@ - source: space: "{{power_ops_models_space}}" externalId: PriceAreaInformation - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: NO4 @@ -95,7 +95,7 @@ - source: space: "{{power_ops_models_space}}" externalId: PriceAreaInformation - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: NO5 diff --git a/toolkit/modules/power_ops_template/data_models/nodes/shop_commands.node.yaml b/toolkit/modules/power_ops_template/data_models/nodes/shop_commands.node.yaml index b6f0eef4..1f3717a7 100644 --- a/toolkit/modules/power_ops_template/data_models/nodes/shop_commands.node.yaml +++ b/toolkit/modules/power_ops_template/data_models/nodes/shop_commands.node.yaml @@ -17,7 +17,7 @@ - source: space: "{{power_ops_models_space}}" externalId: ShopCommands - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: default diff --git a/toolkit/modules/power_ops_template/data_models/nodes/shop_output_time_series_definition.node.yaml b/toolkit/modules/power_ops_template/data_models/nodes/shop_output_time_series_definition.node.yaml index 3a4ba988..3664b44f 100644 --- a/toolkit/modules/power_ops_template/data_models/nodes/shop_output_time_series_definition.node.yaml +++ b/toolkit/modules/power_ops_template/data_models/nodes/shop_output_time_series_definition.node.yaml @@ -21,7 +21,7 @@ - source: space: "{{power_ops_models_space}}" externalId: ShopOutputTimeSeriesDefinition - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: market price @@ -39,7 +39,7 @@ - source: space: "{{power_ops_models_space}}" externalId: ShopOutputTimeSeriesDefinition - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: market sale @@ -57,7 +57,7 @@ - source: space: "{{power_ops_models_space}}" externalId: ShopOutputTimeSeriesDefinition - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: plant production @@ -75,7 +75,7 @@ - source: space: "{{power_ops_models_space}}" externalId: ShopOutputTimeSeriesDefinition - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: plant consumption @@ -93,7 +93,7 @@ - source: space: "{{power_ops_models_space}}" externalId: ShopOutputTimeSeriesDefinition - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: reservoir water value @@ -111,7 +111,7 @@ - source: space: "{{power_ops_models_space}}" externalId: ShopOutputTimeSeriesDefinition - version: "{{power_ops_version}}" + version: "{{power_ops_data_model_version}}" type: view properties: name: reservoir energy conversion factor From 74be9d01b0068593eeed586fa8e4ad1af8126d6e Mon Sep 17 00:00:00 2001 From: Nina Odegard Date: Thu, 24 Oct 2024 15:16:05 +0200 Subject: [PATCH 5/9] chore: rename toolkit file --- .../data_sets/{data_sets.yaml => data_sets.DataSet.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename toolkit/modules/power_ops_template/data_sets/{data_sets.yaml => data_sets.DataSet.yaml} (100%) diff --git a/toolkit/modules/power_ops_template/data_sets/data_sets.yaml b/toolkit/modules/power_ops_template/data_sets/data_sets.DataSet.yaml similarity index 100% rename from toolkit/modules/power_ops_template/data_sets/data_sets.yaml rename to toolkit/modules/power_ops_template/data_sets/data_sets.DataSet.yaml From f74e4c2f05448af8bbe03a5c745fde26cb50afaa Mon Sep 17 00:00:00 2001 From: Nina Odegard Date: Thu, 24 Oct 2024 15:17:23 +0200 Subject: [PATCH 6/9] chore: poetry update --- poetry.lock | 115 ++++++++++++++++++++++++----------------------- toolkit/cdf.toml | 3 ++ 2 files changed, 61 insertions(+), 57 deletions(-) diff --git a/poetry.lock b/poetry.lock index 294924ef..c103f4bc 100644 --- a/poetry.lock +++ b/poetry.lock @@ -503,13 +503,13 @@ format = ["black (>=24.4.2)"] [[package]] name = "cognite-sdk" -version = "7.63.9" +version = "7.63.10" description = "Cognite Python SDK" optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "cognite_sdk-7.63.9-py3-none-any.whl", hash = "sha256:ed80b9d21338b5c18325ae3fbcb16314674191308e188e2783f3360778285e6d"}, - {file = "cognite_sdk-7.63.9.tar.gz", hash = "sha256:c73a192eeabbde7f39a1240d614396b3a36627ad485a10a154f30c2f1ce00f1d"}, + {file = "cognite_sdk-7.63.10-py3-none-any.whl", hash = "sha256:d5443493eef61a2e4ea1dd9e1d88541ea82f28c08521f9bac6ee0644d8dce06c"}, + {file = "cognite_sdk-7.63.10.tar.gz", hash = "sha256:c8985bc399e8d481287d4a85714c2bb6ea4be4baa9aeff826ea06a4da4d2b274"}, ] [package.dependencies] @@ -532,13 +532,13 @@ yaml = ["PyYAML (>=6.0,<7.0)"] [[package]] name = "cognite-toolkit" -version = "0.3.4" +version = "0.3.5" description = "Official Cognite Data Fusion tool for project templates and configuration deployment" optional = false python-versions = "<4.0,>=3.10" files = [ - {file = "cognite_toolkit-0.3.4-py3-none-any.whl", hash = "sha256:3bfdf279aee2317cb74583278131ef5f21d055bf1b421e528c1ea4406c56d710"}, - {file = "cognite_toolkit-0.3.4.tar.gz", hash = "sha256:3d2de3b50886351f5a6a73ceb5c4b3cfa14b723a8b6764f2b166c05f2b5171e3"}, + {file = "cognite_toolkit-0.3.5-py3-none-any.whl", hash = "sha256:4a5ff26327edb52afcf137a6b5cc6e317edc3761c456e9e429084b7ac971597d"}, + {file = "cognite_toolkit-0.3.5.tar.gz", hash = "sha256:2b90754a4cc81c2da0484c5f6480082c26a37435765f793ba3ff04ccadb2e4d5"}, ] [package.dependencies] @@ -2332,13 +2332,13 @@ mkdocs = ">=1.0" [[package]] name = "mkdocs-git-revision-date-localized-plugin" -version = "1.2.9" +version = "1.3.0" description = "Mkdocs plugin that enables displaying the localized date of the last git modification of a markdown file." optional = true python-versions = ">=3.8" files = [ - {file = "mkdocs_git_revision_date_localized_plugin-1.2.9-py3-none-any.whl", hash = "sha256:dea5c8067c23df30275702a1708885500fadf0abfb595b60e698bffc79c7a423"}, - {file = "mkdocs_git_revision_date_localized_plugin-1.2.9.tar.gz", hash = "sha256:df9a50873fba3a42ce9123885f8c53d589e90ef6c2443fe3280ef1e8d33c8f65"}, + {file = "mkdocs_git_revision_date_localized_plugin-1.3.0-py3-none-any.whl", hash = "sha256:c99377ee119372d57a9e47cff4e68f04cce634a74831c06bc89b33e456e840a1"}, + {file = "mkdocs_git_revision_date_localized_plugin-1.3.0.tar.gz", hash = "sha256:439e2f14582204050a664c258861c325064d97cdc848c541e48bb034a6c4d0cb"}, ] [package.dependencies] @@ -2508,43 +2508,43 @@ broker = ["pymsalruntime (>=0.14,<0.18)", "pymsalruntime (>=0.17,<0.18)"] [[package]] name = "mypy" -version = "1.12.1" +version = "1.13.0" description = "Optional static typing for Python" optional = false python-versions = ">=3.8" files = [ - {file = "mypy-1.12.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3d7d4371829184e22fda4015278fbfdef0327a4b955a483012bd2d423a788801"}, - {file = "mypy-1.12.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f59f1dfbf497d473201356966e353ef09d4daec48caeacc0254db8ef633a28a5"}, - {file = "mypy-1.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b947097fae68004b8328c55161ac9db7d3566abfef72d9d41b47a021c2fba6b1"}, - {file = "mypy-1.12.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:96af62050971c5241afb4701c15189ea9507db89ad07794a4ee7b4e092dc0627"}, - {file = "mypy-1.12.1-cp310-cp310-win_amd64.whl", hash = "sha256:d90da248f4c2dba6c44ddcfea94bb361e491962f05f41990ff24dbd09969ce20"}, - {file = "mypy-1.12.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1230048fec1380faf240be6385e709c8570604d2d27ec6ca7e573e3bc09c3735"}, - {file = "mypy-1.12.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:02dcfe270c6ea13338210908f8cadc8d31af0f04cee8ca996438fe6a97b4ec66"}, - {file = "mypy-1.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a5a437c9102a6a252d9e3a63edc191a3aed5f2fcb786d614722ee3f4472e33f6"}, - {file = "mypy-1.12.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:186e0c8346efc027ee1f9acf5ca734425fc4f7dc2b60144f0fbe27cc19dc7931"}, - {file = "mypy-1.12.1-cp311-cp311-win_amd64.whl", hash = "sha256:673ba1140a478b50e6d265c03391702fa11a5c5aff3f54d69a62a48da32cb811"}, - {file = "mypy-1.12.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:9fb83a7be97c498176fb7486cafbb81decccaef1ac339d837c377b0ce3743a7f"}, - {file = "mypy-1.12.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:389e307e333879c571029d5b93932cf838b811d3f5395ed1ad05086b52148fb0"}, - {file = "mypy-1.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:94b2048a95a21f7a9ebc9fbd075a4fcd310410d078aa0228dbbad7f71335e042"}, - {file = "mypy-1.12.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ee5932370ccf7ebf83f79d1c157a5929d7ea36313027b0d70a488493dc1b179"}, - {file = "mypy-1.12.1-cp312-cp312-win_amd64.whl", hash = "sha256:19bf51f87a295e7ab2894f1d8167622b063492d754e69c3c2fed6563268cb42a"}, - {file = "mypy-1.12.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d34167d43613ffb1d6c6cdc0cc043bb106cac0aa5d6a4171f77ab92a3c758bcc"}, - {file = "mypy-1.12.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:427878aa54f2e2c5d8db31fa9010c599ed9f994b3b49e64ae9cd9990c40bd635"}, - {file = "mypy-1.12.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5fcde63ea2c9f69d6be859a1e6dd35955e87fa81de95bc240143cf00de1f7f81"}, - {file = "mypy-1.12.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:d54d840f6c052929f4a3d2aab2066af0f45a020b085fe0e40d4583db52aab4e4"}, - {file = "mypy-1.12.1-cp313-cp313-win_amd64.whl", hash = "sha256:20db6eb1ca3d1de8ece00033b12f793f1ea9da767334b7e8c626a4872090cf02"}, - {file = "mypy-1.12.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b16fe09f9c741d85a2e3b14a5257a27a4f4886c171d562bc5a5e90d8591906b8"}, - {file = "mypy-1.12.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0dcc1e843d58f444fce19da4cce5bd35c282d4bde232acdeca8279523087088a"}, - {file = "mypy-1.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e10ba7de5c616e44ad21005fa13450cd0de7caaa303a626147d45307492e4f2d"}, - {file = "mypy-1.12.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0e6fe449223fa59fbee351db32283838a8fee8059e0028e9e6494a03802b4004"}, - {file = "mypy-1.12.1-cp38-cp38-win_amd64.whl", hash = "sha256:dc6e2a2195a290a7fd5bac3e60b586d77fc88e986eba7feced8b778c373f9afe"}, - {file = "mypy-1.12.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:de5b2a8988b4e1269a98beaf0e7cc71b510d050dce80c343b53b4955fff45f19"}, - {file = "mypy-1.12.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:843826966f1d65925e8b50d2b483065c51fc16dc5d72647e0236aae51dc8d77e"}, - {file = "mypy-1.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9fe20f89da41a95e14c34b1ddb09c80262edcc295ad891f22cc4b60013e8f78d"}, - {file = "mypy-1.12.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8135ffec02121a75f75dc97c81af7c14aa4ae0dda277132cfcd6abcd21551bfd"}, - {file = "mypy-1.12.1-cp39-cp39-win_amd64.whl", hash = "sha256:a7b76fa83260824300cc4834a3ab93180db19876bce59af921467fd03e692810"}, - {file = "mypy-1.12.1-py3-none-any.whl", hash = "sha256:ce561a09e3bb9863ab77edf29ae3a50e65685ad74bba1431278185b7e5d5486e"}, - {file = "mypy-1.12.1.tar.gz", hash = "sha256:f5b3936f7a6d0e8280c9bdef94c7ce4847f5cdfc258fbb2c29a8c1711e8bb96d"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6607e0f1dd1fb7f0aca14d936d13fd19eba5e17e1cd2a14f808fa5f8f6d8f60a"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a21be69bd26fa81b1f80a61ee7ab05b076c674d9b18fb56239d72e21d9f4c80"}, + {file = "mypy-1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b2353a44d2179846a096e25691d54d59904559f4232519d420d64da6828a3a7"}, + {file = "mypy-1.13.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0730d1c6a2739d4511dc4253f8274cdd140c55c32dfb0a4cf8b7a43f40abfa6f"}, + {file = "mypy-1.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:c5fc54dbb712ff5e5a0fca797e6e0aa25726c7e72c6a5850cfd2adbc1eb0a372"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:581665e6f3a8a9078f28d5502f4c334c0c8d802ef55ea0e7276a6e409bc0d82d"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3ddb5b9bf82e05cc9a627e84707b528e5c7caaa1c55c69e175abb15a761cec2d"}, + {file = "mypy-1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:20c7ee0bc0d5a9595c46f38beb04201f2620065a93755704e141fcac9f59db2b"}, + {file = "mypy-1.13.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3790ded76f0b34bc9c8ba4def8f919dd6a46db0f5a6610fb994fe8efdd447f73"}, + {file = "mypy-1.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:51f869f4b6b538229c1d1bcc1dd7d119817206e2bc54e8e374b3dfa202defcca"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5c7051a3461ae84dfb5dd15eff5094640c61c5f22257c8b766794e6dd85e72d5"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:39bb21c69a5d6342f4ce526e4584bc5c197fd20a60d14a8624d8743fffb9472e"}, + {file = "mypy-1.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:164f28cb9d6367439031f4c81e84d3ccaa1e19232d9d05d37cb0bd880d3f93c2"}, + {file = "mypy-1.13.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a4c1bfcdbce96ff5d96fc9b08e3831acb30dc44ab02671eca5953eadad07d6d0"}, + {file = "mypy-1.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:a0affb3a79a256b4183ba09811e3577c5163ed06685e4d4b46429a271ba174d2"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a7b44178c9760ce1a43f544e595d35ed61ac2c3de306599fa59b38a6048e1aa7"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5d5092efb8516d08440e36626f0153b5006d4088c1d663d88bf79625af3d1d62"}, + {file = "mypy-1.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:de2904956dac40ced10931ac967ae63c5089bd498542194b436eb097a9f77bc8"}, + {file = "mypy-1.13.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:7bfd8836970d33c2105562650656b6846149374dc8ed77d98424b40b09340ba7"}, + {file = "mypy-1.13.0-cp313-cp313-win_amd64.whl", hash = "sha256:9f73dba9ec77acb86457a8fc04b5239822df0c14a082564737833d2963677dbc"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:100fac22ce82925f676a734af0db922ecfea991e1d7ec0ceb1e115ebe501301a"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7bcb0bb7f42a978bb323a7c88f1081d1b5dee77ca86f4100735a6f541299d8fb"}, + {file = "mypy-1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bde31fc887c213e223bbfc34328070996061b0833b0a4cfec53745ed61f3519b"}, + {file = "mypy-1.13.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:07de989f89786f62b937851295ed62e51774722e5444a27cecca993fc3f9cd74"}, + {file = "mypy-1.13.0-cp38-cp38-win_amd64.whl", hash = "sha256:4bde84334fbe19bad704b3f5b78c4abd35ff1026f8ba72b29de70dda0916beb6"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0246bcb1b5de7f08f2826451abd947bf656945209b140d16ed317f65a17dc7dc"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7f5b7deae912cf8b77e990b9280f170381fdfbddf61b4ef80927edd813163732"}, + {file = "mypy-1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7029881ec6ffb8bc233a4fa364736789582c738217b133f1b55967115288a2bc"}, + {file = "mypy-1.13.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3e38b980e5681f28f033f3be86b099a247b13c491f14bb8b1e1e134d23bb599d"}, + {file = "mypy-1.13.0-cp39-cp39-win_amd64.whl", hash = "sha256:a6789be98a2017c912ae6ccb77ea553bbaf13d27605d2ca20a76dfbced631b24"}, + {file = "mypy-1.13.0-py3-none-any.whl", hash = "sha256:9c250883f9fd81d212e0952c92dbfcc96fc237f4b7c92f56ac81fd48460b3e5a"}, + {file = "mypy-1.13.0.tar.gz", hash = "sha256:0291a61b6fbf3e6673e3405cfcc0e7650bebc7939659fdca2702958038bd835e"}, ] [package.dependencies] @@ -2554,6 +2554,7 @@ typing-extensions = ">=4.6.0" [package.extras] dmypy = ["psutil (>=4.0)"] +faster-cache = ["orjson"] install-types = ["pip"] mypyc = ["setuptools (>=50)"] reports = ["lxml"] @@ -3213,22 +3214,22 @@ wcwidth = "*" [[package]] name = "protobuf" -version = "5.28.2" +version = "5.28.3" description = "" optional = false python-versions = ">=3.8" files = [ - {file = "protobuf-5.28.2-cp310-abi3-win32.whl", hash = "sha256:eeea10f3dc0ac7e6b4933d32db20662902b4ab81bf28df12218aa389e9c2102d"}, - {file = "protobuf-5.28.2-cp310-abi3-win_amd64.whl", hash = "sha256:2c69461a7fcc8e24be697624c09a839976d82ae75062b11a0972e41fd2cd9132"}, - {file = "protobuf-5.28.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a8b9403fc70764b08d2f593ce44f1d2920c5077bf7d311fefec999f8c40f78b7"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:35cfcb15f213449af7ff6198d6eb5f739c37d7e4f1c09b5d0641babf2cc0c68f"}, - {file = "protobuf-5.28.2-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:5e8a95246d581eef20471b5d5ba010d55f66740942b95ba9b872d918c459452f"}, - {file = "protobuf-5.28.2-cp38-cp38-win32.whl", hash = "sha256:87317e9bcda04a32f2ee82089a204d3a2f0d3c8aeed16568c7daf4756e4f1fe0"}, - {file = "protobuf-5.28.2-cp38-cp38-win_amd64.whl", hash = "sha256:c0ea0123dac3399a2eeb1a1443d82b7afc9ff40241433296769f7da42d142ec3"}, - {file = "protobuf-5.28.2-cp39-cp39-win32.whl", hash = "sha256:ca53faf29896c526863366a52a8f4d88e69cd04ec9571ed6082fa117fac3ab36"}, - {file = "protobuf-5.28.2-cp39-cp39-win_amd64.whl", hash = "sha256:8ddc60bf374785fb7cb12510b267f59067fa10087325b8e1855b898a0d81d276"}, - {file = "protobuf-5.28.2-py3-none-any.whl", hash = "sha256:52235802093bd8a2811abbe8bf0ab9c5f54cca0a751fdd3f6ac2a21438bffece"}, - {file = "protobuf-5.28.2.tar.gz", hash = "sha256:59379674ff119717404f7454647913787034f03fe7049cbef1d74a97bb4593f0"}, + {file = "protobuf-5.28.3-cp310-abi3-win32.whl", hash = "sha256:0c4eec6f987338617072592b97943fdbe30d019c56126493111cf24344c1cc24"}, + {file = "protobuf-5.28.3-cp310-abi3-win_amd64.whl", hash = "sha256:91fba8f445723fcf400fdbe9ca796b19d3b1242cd873907979b9ed71e4afe868"}, + {file = "protobuf-5.28.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a3f6857551e53ce35e60b403b8a27b0295f7d6eb63d10484f12bc6879c715687"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:3fa2de6b8b29d12c61911505d893afe7320ce7ccba4df913e2971461fa36d584"}, + {file = "protobuf-5.28.3-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:712319fbdddb46f21abb66cd33cb9e491a5763b2febd8f228251add221981135"}, + {file = "protobuf-5.28.3-cp38-cp38-win32.whl", hash = "sha256:3e6101d095dfd119513cde7259aa703d16c6bbdfae2554dfe5cfdbe94e32d548"}, + {file = "protobuf-5.28.3-cp38-cp38-win_amd64.whl", hash = "sha256:27b246b3723692bf1068d5734ddaf2fccc2cdd6e0c9b47fe099244d80200593b"}, + {file = "protobuf-5.28.3-cp39-cp39-win32.whl", hash = "sha256:135658402f71bbd49500322c0f736145731b16fc79dc8f367ab544a17eab4535"}, + {file = "protobuf-5.28.3-cp39-cp39-win_amd64.whl", hash = "sha256:70585a70fc2dd4818c51287ceef5bdba6387f88a578c86d47bb34669b5552c36"}, + {file = "protobuf-5.28.3-py3-none-any.whl", hash = "sha256:cee1757663fa32a1ee673434fcf3bf24dd54763c79690201208bafec62f19eed"}, + {file = "protobuf-5.28.3.tar.gz", hash = "sha256:64badbc49180a5e401f373f9ce7ab1d18b63f7dd4a9cdc43c92b9f0b481cef7b"}, ] [[package]] @@ -4142,13 +4143,13 @@ files = [ [[package]] name = "rich" -version = "13.9.2" +version = "13.9.3" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" optional = false python-versions = ">=3.8.0" files = [ - {file = "rich-13.9.2-py3-none-any.whl", hash = "sha256:8c82a3d3f8dcfe9e734771313e606b39d8247bb6b826e196f4914b333b743cf1"}, - {file = "rich-13.9.2.tar.gz", hash = "sha256:51a2c62057461aaf7152b4d611168f93a9fc73068f8ded2790f29fe2b5366d0c"}, + {file = "rich-13.9.3-py3-none-any.whl", hash = "sha256:9836f5096eb2172c9e77df411c1b009bace4193d6a481d534fea75ebba758283"}, + {file = "rich-13.9.3.tar.gz", hash = "sha256:bc1e01b899537598cf02579d2b9f4a415104d3fc439313a7a2c165d76557a08e"}, ] [package.dependencies] diff --git a/toolkit/cdf.toml b/toolkit/cdf.toml index fcef65a4..e898aa0b 100644 --- a/toolkit/cdf.toml +++ b/toolkit/cdf.toml @@ -1,6 +1,9 @@ [cdf] default_env = "dev" +[feature_flags] +require-kind = true + [modules] # This is the version of the modules. It should not be changed manually. # It will be updated by the 'cdf module upgrade' command. From 6e5c402469aefa87334a8140f0d912f6f6ad29d2 Mon Sep 17 00:00:00 2001 From: Nina Odegard Date: Thu, 24 Oct 2024 15:22:17 +0200 Subject: [PATCH 7/9] chore: bump toolkit for files --- toolkit/cdf.toml | 2 +- toolkit/config.staging.yaml | 6 +- .../files/SHOP_model_fornebu.yaml | 5874 +++++++++++++++++ .../files/shop_models.FileMetadata.yaml | 4 +- 4 files changed, 5880 insertions(+), 6 deletions(-) create mode 100644 toolkit/modules/power_ops_template/files/SHOP_model_fornebu.yaml diff --git a/toolkit/cdf.toml b/toolkit/cdf.toml index e898aa0b..413f32b0 100644 --- a/toolkit/cdf.toml +++ b/toolkit/cdf.toml @@ -7,7 +7,7 @@ require-kind = true [modules] # This is the version of the modules. It should not be changed manually. # It will be updated by the 'cdf module upgrade' command. -version = "0.3.4" +version = "0.3.5" [plugins] diff --git a/toolkit/config.staging.yaml b/toolkit/config.staging.yaml index ac57bffe..9906e7b6 100644 --- a/toolkit/config.staging.yaml +++ b/toolkit/config.staging.yaml @@ -4,8 +4,8 @@ environment: # doesn't match the environment variables (valid options are dev, staging, prod) type: staging selected: - - modules/power_model - # - modules/power_ops_template + # - modules/power_model + - modules/power_ops_template variables: modules: @@ -13,7 +13,7 @@ variables: power_ops_type_space: "power_ops_types" power_ops_instance_space: "power_ops_instances" power_ops_models_space: "power_ops_core" - power_ops_version: "1" + power_ops_data_model_version: "1" # variables required for ONLY power_ops_template wf_day_ahead_market: "DAY_AHEAD" wf_day_ahead_bid_process_xid: "DayAheadBidProcess" diff --git a/toolkit/modules/power_ops_template/files/SHOP_model_fornebu.yaml b/toolkit/modules/power_ops_template/files/SHOP_model_fornebu.yaml new file mode 100644 index 00000000..61dfe5ec --- /dev/null +++ b/toolkit/modules/power_ops_template/files/SHOP_model_fornebu.yaml @@ -0,0 +1,5874 @@ +model: + creek_intake: + Blakstad: + net_head: 641 + max_inflow: 12 + inflow: + 2022-03-27 22:00:00: 0.34375839890938 + 2022-03-27 23:00:00: 2.2106747501663 + 2022-03-28 00:00:00: 4.7635355289014 + 2022-03-28 01:00:00: 2.7145725341401 + 2022-03-28 02:00:00: 2.3222141364391 + 2022-03-28 03:00:00: 2.198249845179 + 2022-03-28 04:00:00: 1.9031420367097 + 2022-03-28 05:00:00: 1.5164121052534 + 2022-03-28 06:00:00: 1.7042214786468 + 2022-03-28 07:00:00: 1.7254814023853 + 2022-03-28 08:00:00: 1.738294446476 + 2022-03-28 09:00:00: 1.7499286904557 + 2022-03-28 10:00:00: 1.7547458436669 + 2022-03-28 11:00:00: 1.7566153956529 + 2022-03-28 12:00:00: 1.7640976953197 + 2022-03-28 13:00:00: 1.7733507860363 + 2022-03-28 14:00:00: 1.7815195007685 + 2022-03-28 15:00:00: 1.7848375326921 + 2022-03-28 16:00:00: 1.7814743490358 + 2022-03-28 17:00:00: 1.77396384625 + 2022-03-28 18:00:00: 1.7622558796098 + 2022-03-28 19:00:00: 1.7498171765082 + 2022-03-28 20:00:00: 1.7374473001563 + 2022-03-28 21:00:00: 1.7251461856645 + 2022-03-28 22:00:00: 1.7129137618406 + 2022-03-28 23:00:00: 1.7007499513199 + 2022-03-29 00:00:00: 1.6886546706948 + 2022-03-29 01:00:00: 1.6766278306419 + 2022-03-29 02:00:00: 1.6646693360478 + 2022-03-29 03:00:00: 1.6527790861335 + 2022-03-29 04:00:00: 1.6409569745768 + 2022-03-29 05:00:00: 1.6292028896333 + 2022-03-29 06:00:00: 1.6175167142558 + 2022-03-29 07:00:00: 1.6058983262122 + 2022-03-29 08:00:00: 1.5943475982019 + 2022-03-29 09:00:00: 1.5828643979704 + 2022-03-29 10:00:00: 1.5714764021737 + 2022-03-29 11:00:00: 1.5606046172504 + 2022-03-29 12:00:00: 1.5504622225625 + 2022-03-29 13:00:00: 1.5399949328559 + 2022-03-29 14:00:00: 1.5307138451358 + 2022-03-29 15:00:00: 1.521463590655 + 2022-03-29 16:00:00: 1.5109138826479 + 2022-03-29 17:00:00: 1.4999262386501 + 2022-03-29 18:00:00: 1.4890048292192 + 2022-03-29 19:00:00: 1.4781494808426 + 2022-03-29 20:00:00: 1.467360016158 + 2022-03-29 21:00:00: 1.4566362540515 + 2022-03-29 22:00:00: 1.4459780097539 + 2022-03-29 23:00:00: 1.4353850949356 + 2022-03-30 00:00:00: 1.4248573178002 + 2022-03-30 01:00:00: 1.4143944831764 + 2022-03-30 02:00:00: 1.4039963926094 + 2022-03-30 03:00:00: 1.3936628444496 + 2022-03-30 04:00:00: 1.3833936339414 + 2022-03-30 05:00:00: 1.3731885533093 + 2022-03-30 06:00:00: 1.3630473918438 + 2022-03-30 07:00:00: 1.3529699359853 + 2022-03-30 08:00:00: 1.3429559694069 + 2022-03-30 09:00:00: 1.3330052730962 + 2022-03-30 10:00:00: 1.3231176254352 + 2022-03-30 11:00:00: 1.3132928022795 + 2022-03-30 12:00:00: 1.3037016475943 + 2022-03-30 13:00:00: 1.294145875962 + 2022-03-30 14:00:00: 1.2845061406181 + 2022-03-30 15:00:00: 1.2749283170661 + 2022-03-30 16:00:00: 1.2654121697401 + 2022-03-30 17:00:00: 1.2559574609938 + 2022-03-30 18:00:00: 1.2465639511709 + 2022-03-30 19:00:00: 1.2372313986744 + 2022-03-30 20:00:00: 1.2279595600352 + 2022-03-30 21:00:00: 1.2187481899786 + 2022-03-30 22:00:00: 1.209597041491 + 2022-03-30 23:00:00: 1.2005058658843 + 2022-03-31 00:00:00: 1.1914744128598 + 2022-03-31 01:00:00: 1.182502430571 + 2022-03-31 02:00:00: 1.1735896656849 + 2022-03-31 03:00:00: 1.164735863443 + 2022-03-31 04:00:00: 1.1559407677205 + 2022-03-31 05:00:00: 1.1472041210848 + 2022-03-31 06:00:00: 1.1385256648529 + 2022-03-31 07:00:00: 1.1299051391482 + 2022-03-31 08:00:00: 1.1213422829553 + 2022-03-31 09:00:00: 1.1128368341749 + 2022-03-31 10:00:00: 1.1043885296773 + 2022-03-31 11:00:00: 1.096025167099 + 2022-03-31 12:00:00: 1.0880397416525 + 2022-03-31 13:00:00: 1.0804669564893 + 2022-03-31 14:00:00: 1.0727319590376 + 2022-03-31 15:00:00: 1.0647880958424 + 2022-03-31 16:00:00: 1.0567199705802 + 2022-03-31 17:00:00: 1.0486517524901 + 2022-03-31 18:00:00: 1.0406386034572 + 2022-03-31 19:00:00: 1.032680253459 + 2022-03-31 20:00:00: 1.0247764319156 + 2022-03-31 21:00:00: 1.0169268677337 + Fjerdingby_intake: + net_head: 752.7 + max_inflow: 10 + inflow: + 2022-03-27 22:00:00: 0.42737768307707 + 2022-03-27 23:00:00: 0.30217242175934 + 2022-03-28 00:00:00: 0.30473208748383 + 2022-03-28 01:00:00: 0.34691106380328 + 2022-03-28 02:00:00: 0.35172418152612 + 2022-03-28 03:00:00: 0.35690100430014 + 2022-03-28 04:00:00: 0.36170966918924 + 2022-03-28 05:00:00: 0.36683945969685 + 2022-03-28 06:00:00: 0.37261445391565 + 2022-03-28 07:00:00: 0.35460052823778 + 2022-03-28 08:00:00: 0.3559487182813 + 2022-03-28 09:00:00: 0.35565014656716 + 2022-03-28 10:00:00: 0.35426972454455 + 2022-03-28 11:00:00: 0.35231006369825 + 2022-03-28 12:00:00: 0.35017874418691 + 2022-03-28 13:00:00: 0.34268077715073 + 2022-03-28 14:00:00: 0.34051911297485 + 2022-03-28 15:00:00: 0.33836462996147 + 2022-03-28 16:00:00: 0.33621735310358 + 2022-03-28 17:00:00: 0.33416586197044 + 2022-03-28 18:00:00: 0.33213263548682 + 2022-03-28 19:00:00: 0.32874098811367 + 2022-03-28 20:00:00: 0.32674955387331 + 2022-03-28 21:00:00: 0.32476456254092 + 2022-03-28 22:00:00: 0.32278603998957 + 2022-03-28 23:00:00: 0.32081401133539 + 2022-03-29 00:00:00: 0.31884470542911 + 2022-03-29 01:00:00: 0.31704402680704 + 2022-03-29 02:00:00: 0.31507192027382 + 2022-03-29 03:00:00: 0.31310625400693 + 2022-03-29 04:00:00: 0.31114705278653 + 2022-03-29 05:00:00: 0.30911960819448 + 2022-03-29 06:00:00: 0.30707657361464 + 2022-03-29 07:00:00: 0.30239588028903 + 2022-03-29 08:00:00: 0.30043852027913 + 2022-03-29 09:00:00: 0.29848778023636 + 2022-03-29 10:00:00: 0.29656310594395 + 2022-03-29 11:00:00: 0.29464794699312 + 2022-03-29 12:00:00: 0.29273958947155 + 2022-03-29 13:00:00: 0.29264900987762 + 2022-03-29 14:00:00: 0.29070149064946 + 2022-03-29 15:00:00: 0.28876096405297 + 2022-03-29 16:00:00: 0.28682744519992 + 2022-03-29 17:00:00: 0.28490094855556 + 2022-03-29 18:00:00: 0.28298148794653 + 2022-03-29 19:00:00: 0.28072311819919 + 2022-03-29 20:00:00: 0.27879633206963 + 2022-03-29 21:00:00: 0.27687696097329 + 2022-03-29 22:00:00: 0.27496501233984 + 2022-03-29 23:00:00: 0.27306049303216 + 2022-03-30 00:00:00: 0.27116340935381 + 2022-03-30 01:00:00: 0.26951393519954 + 2022-03-30 02:00:00: 0.26766599766809 + 2022-03-30 03:00:00: 0.26582553585677 + 2022-03-30 04:00:00: 0.26399255139975 + 2022-03-30 05:00:00: 0.26216704544215 + 2022-03-30 06:00:00: 0.26034901864693 + 2022-03-30 07:00:00: 0.25713918014758 + 2022-03-30 08:00:00: 0.25529746645627 + 2022-03-30 09:00:00: 0.25346336191949 + 2022-03-30 10:00:00: 0.25163686570358 + 2022-03-30 11:00:00: 0.2498179765131 + 2022-03-30 12:00:00: 0.24800669259753 + 2022-03-30 13:00:00: 0.24620301175786 + 2022-03-30 14:00:00: 0.2444208974484 + 2022-03-30 15:00:00: 0.24265166635075 + 2022-03-30 16:00:00: 0.2408896894913 + 2022-03-30 17:00:00: 0.23913496710134 + 2022-03-30 18:00:00: 0.23738749895701 + 2022-03-30 19:00:00: 0.23554041330991 + 2022-03-30 20:00:00: 0.23378985612607 + 2022-03-30 21:00:00: 0.23204686905899 + 2022-03-30 22:00:00: 0.23031144616273 + 2022-03-30 23:00:00: 0.22858358110612 + 2022-03-31 00:00:00: 0.22686326717877 + 2022-03-31 01:00:00: 0.22515777063838 + 2022-03-31 02:00:00: 0.22345259062615 + 2022-03-31 03:00:00: 0.22175493923597 + 2022-03-31 04:00:00: 0.22006480829881 + 2022-03-31 05:00:00: 0.21838218929567 + 2022-03-31 06:00:00: 0.21670707336331 + 2022-03-31 07:00:00: 0.21504576660701 + 2022-03-31 08:00:00: 0.21341211678943 + 2022-03-31 09:00:00: 0.21178546363221 + 2022-03-31 10:00:00: 0.21016580294482 + 2022-03-31 11:00:00: 0.20855313016129 + 2022-03-31 12:00:00: 0.20694744034597 + 2022-03-31 13:00:00: 0.20545682216521 + 2022-03-31 14:00:00: 0.20386587916448 + 2022-03-31 15:00:00: 0.20228189981899 + 2022-03-31 16:00:00: 0.20070487775678 + 2022-03-31 17:00:00: 0.19913480626443 + 2022-03-31 18:00:00: 0.19821280856796 + 2022-03-31 19:00:00: 0.19725751281354 + 2022-03-31 20:00:00: 0.19709162557988 + 2022-03-31 21:00:00: 0.19698031281315 + overflow_cost: + 2022-03-27 22:00:00: 100000 + Vigrestad: + net_head: 762 + max_inflow: 10 + inflow: + 2022-03-27 22:00:00: 0.051888060212736 + 2022-03-27 23:00:00: 0.33368675474209 + 2022-03-28 00:00:00: 0.71902423077758 + 2022-03-28 01:00:00: 0.40974679760605 + 2022-03-28 02:00:00: 0.3505228885191 + 2022-03-28 03:00:00: 0.33181129738552 + 2022-03-28 04:00:00: 0.28726672252222 + 2022-03-28 05:00:00: 0.2288923932458 + 2022-03-28 06:00:00: 0.25724097790896 + 2022-03-28 07:00:00: 0.26045002300155 + 2022-03-28 08:00:00: 0.26238406739261 + 2022-03-28 09:00:00: 0.26414017969142 + 2022-03-28 10:00:00: 0.26486729715727 + 2022-03-28 11:00:00: 0.26514949368346 + 2022-03-28 12:00:00: 0.26627889740674 + 2022-03-28 13:00:00: 0.2676755903451 + 2022-03-28 14:00:00: 0.26890860388959 + 2022-03-28 15:00:00: 0.26940943889692 + 2022-03-28 16:00:00: 0.26890178853371 + 2022-03-28 17:00:00: 0.26776812773584 + 2022-03-28 18:00:00: 0.26600088748828 + 2022-03-28 19:00:00: 0.26412334739746 + 2022-03-28 20:00:00: 0.26225619625 + 2022-03-28 21:00:00: 0.26039942425125 + 2022-03-28 22:00:00: 0.25855302065518 + 2022-03-28 23:00:00: 0.25671697378414 + 2022-03-29 00:00:00: 0.25489127104827 + 2022-03-29 01:00:00: 0.25307589896481 + 2022-03-29 02:00:00: 0.25127084317703 + 2022-03-29 03:00:00: 0.24947608847299 + 2022-03-29 04:00:00: 0.24769161880405 + 2022-03-29 05:00:00: 0.24591741730314 + 2022-03-29 06:00:00: 0.24415346630275 + 2022-03-29 07:00:00: 0.24239974735278 + 2022-03-29 08:00:00: 0.24065624123802 + 2022-03-29 09:00:00: 0.23892292799553 + 2022-03-29 10:00:00: 0.23720398523377 + 2022-03-29 11:00:00: 0.2355629610944 + 2022-03-29 12:00:00: 0.23403203359434 + 2022-03-29 13:00:00: 0.23245206533674 + 2022-03-29 14:00:00: 0.2310511464356 + 2022-03-29 15:00:00: 0.22965488160831 + 2022-03-29 16:00:00: 0.22806247285251 + 2022-03-29 17:00:00: 0.22640396055096 + 2022-03-29 18:00:00: 0.22475544591988 + 2022-03-29 19:00:00: 0.2231169027687 + 2022-03-29 20:00:00: 0.22148830432574 + 2022-03-29 21:00:00: 0.21986962325306 + 2022-03-29 22:00:00: 0.21826083166097 + 2022-03-29 23:00:00: 0.21666190112236 + 2022-03-30 00:00:00: 0.21507280268682 + 2022-03-30 01:00:00: 0.21349350689455 + 2022-03-30 02:00:00: 0.21192398379009 + 2022-03-30 03:00:00: 0.21036420293579 + 2022-03-30 04:00:00: 0.20881413342512 + 2022-03-30 05:00:00: 0.20727374389574 + 2022-03-30 06:00:00: 0.20574300254246 + 2022-03-30 07:00:00: 0.20422187712985 + 2022-03-30 08:00:00: 0.20271033500482 + 2022-03-30 09:00:00: 0.20120834310886 + 2022-03-30 10:00:00: 0.19971586799022 + 2022-03-30 11:00:00: 0.19823287581577 + 2022-03-30 12:00:00: 0.19678515435386 + 2022-03-30 13:00:00: 0.19534277373011 + 2022-03-30 14:00:00: 0.19388771933859 + 2022-03-30 15:00:00: 0.19244201012318 + 2022-03-30 16:00:00: 0.19100561052681 + 2022-03-30 17:00:00: 0.18957848467831 + 2022-03-30 18:00:00: 0.18816059640316 + 2022-03-30 19:00:00: 0.18675190923388 + 2022-03-30 20:00:00: 0.1853523864204 + 2022-03-30 21:00:00: 0.18396199094016 + 2022-03-30 22:00:00: 0.18258068550807 + 2022-03-30 23:00:00: 0.18120843258631 + 2022-03-31 00:00:00: 0.17984519439393 + 2022-03-31 01:00:00: 0.17849093291637 + 2022-03-31 02:00:00: 0.1771456099147 + 2022-03-31 03:00:00: 0.17580918693479 + 2022-03-31 04:00:00: 0.1744816253163 + 2022-03-31 05:00:00: 0.17316288620147 + 2022-03-31 06:00:00: 0.17185293054384 + 2022-03-31 07:00:00: 0.17055171911671 + 2022-03-31 08:00:00: 0.16925921252155 + 2022-03-31 09:00:00: 0.16797537119622 + 2022-03-31 10:00:00: 0.16670015542299 + 2022-03-31 11:00:00: 0.16543776107155 + 2022-03-31 12:00:00: 0.16423241383435 + 2022-03-31 13:00:00: 0.16308935192291 + 2022-03-31 14:00:00: 0.16192180513775 + 2022-03-31 15:00:00: 0.16072273144791 + 2022-03-31 16:00:00: 0.15950490121966 + 2022-03-31 17:00:00: 0.15828705697963 + 2022-03-31 18:00:00: 0.15707752505015 + 2022-03-31 19:00:00: 0.15587626467305 + 2022-03-31 20:00:00: 0.15468323500612 + 2022-03-31 21:00:00: 0.15349839512962 + Sandvika: + net_head: 1000 + inflow: + 2022-03-27 22:00:00: 0 + Golebiowski_intake: + net_head: 753 + max_inflow: 10 + inflow: + 2022-03-27 22:00:00: 0.11887326284263 + 2022-03-27 23:00:00: 0.084047958370147 + 2022-03-28 00:00:00: 0.084759918372986 + 2022-03-28 01:00:00: 0.096491819071111 + 2022-03-28 02:00:00: 0.097830567047 + 2022-03-28 03:00:00: 0.099270478017259 + 2022-03-28 04:00:00: 0.10060798745661 + 2022-03-28 05:00:00: 0.10203481660442 + 2022-03-28 06:00:00: 0.10364110638713 + 2022-03-28 07:00:00: 0.098630610503224 + 2022-03-28 08:00:00: 0.099005603760361 + 2022-03-28 09:00:00: 0.098922557323316 + 2022-03-28 10:00:00: 0.098538598879941 + 2022-03-28 11:00:00: 0.097993527651168 + 2022-03-28 12:00:00: 0.097400710303644 + 2022-03-28 13:00:00: 0.095315183048547 + 2022-03-28 14:00:00: 0.094713925463202 + 2022-03-28 15:00:00: 0.094114665287296 + 2022-03-28 16:00:00: 0.093517409472518 + 2022-03-28 17:00:00: 0.092946796044759 + 2022-03-28 18:00:00: 0.092381262850639 + 2022-03-28 19:00:00: 0.091437890733604 + 2022-03-28 20:00:00: 0.090883981872047 + 2022-03-28 21:00:00: 0.090331865077606 + 2022-03-28 22:00:00: 0.089781547546768 + 2022-03-28 23:00:00: 0.089233036265472 + 2022-03-29 00:00:00: 0.088685282304786 + 2022-03-29 01:00:00: 0.088184431297322 + 2022-03-29 02:00:00: 0.087635898354307 + 2022-03-29 03:00:00: 0.087089156743649 + 2022-03-29 04:00:00: 0.086544213357843 + 2022-03-29 05:00:00: 0.085980288371974 + 2022-03-29 06:00:00: 0.085412027098111 + 2022-03-29 07:00:00: 0.084110112398273 + 2022-03-29 08:00:00: 0.083565681137243 + 2022-03-29 09:00:00: 0.083023091191571 + 2022-03-29 10:00:00: 0.082487751322159 + 2022-03-29 11:00:00: 0.081955058104048 + 2022-03-29 12:00:00: 0.081424256674207 + 2022-03-29 13:00:00: 0.081399062350066 + 2022-03-29 14:00:00: 0.080857368260114 + 2022-03-29 15:00:00: 0.080317619140562 + 2022-03-29 16:00:00: 0.079779819194681 + 2022-03-29 17:00:00: 0.079243972445918 + 2022-03-29 18:00:00: 0.078710082740093 + 2022-03-29 19:00:00: 0.078081926916331 + 2022-03-29 20:00:00: 0.077545999648507 + 2022-03-29 21:00:00: 0.077012134840251 + 2022-03-29 22:00:00: 0.0764803345581 + 2022-03-29 23:00:00: 0.075950600710933 + 2022-03-30 00:00:00: 0.075422935052053 + 2022-03-30 01:00:00: 0.074964140916427 + 2022-03-30 02:00:00: 0.074450145046753 + 2022-03-30 03:00:00: 0.073938228516453 + 2022-03-30 04:00:00: 0.073428391780062 + 2022-03-30 05:00:00: 0.072920635156094 + 2022-03-30 06:00:00: 0.072414958828948 + 2022-03-30 07:00:00: 0.071522156067538 + 2022-03-30 08:00:00: 0.071009891332208 + 2022-03-30 09:00:00: 0.070499743050454 + 2022-03-30 10:00:00: 0.069991710990399 + 2022-03-30 11:00:00: 0.069485794791723 + 2022-03-30 12:00:00: 0.068981993967524 + 2022-03-30 13:00:00: 0.068480307906161 + 2022-03-30 14:00:00: 0.067984620482336 + 2022-03-30 15:00:00: 0.067492516468421 + 2022-03-30 16:00:00: 0.067002430189633 + 2022-03-30 17:00:00: 0.066514361710305 + 2022-03-30 18:00:00: 0.066028310968176 + 2022-03-30 19:00:00: 0.065514552046465 + 2022-03-30 20:00:00: 0.06502764210129 + 2022-03-30 21:00:00: 0.064542837751506 + 2022-03-30 22:00:00: 0.064060137343275 + 2022-03-30 23:00:00: 0.063579539115608 + 2022-03-31 00:00:00: 0.063101041202042 + 2022-03-31 01:00:00: 0.062626664680873 + 2022-03-31 02:00:00: 0.06215237620065 + 2022-03-31 03:00:00: 0.061680181774244 + 2022-03-31 04:00:00: 0.061210079129471 + 2022-03-31 05:00:00: 0.060742065896809 + 2022-03-31 06:00:00: 0.060276139610986 + 2022-03-31 07:00:00: 0.059814054288041 + 2022-03-31 08:00:00: 0.05935966162355 + 2022-03-31 09:00:00: 0.058907215050018 + 2022-03-31 10:00:00: 0.058456713401869 + 2022-03-31 11:00:00: 0.058008155409101 + 2022-03-31 12:00:00: 0.057561539698879 + 2022-03-31 13:00:00: 0.057146930668469 + 2022-03-31 14:00:00: 0.056704416721247 + 2022-03-31 15:00:00: 0.056263839684752 + 2022-03-31 16:00:00: 0.055825197786655 + 2022-03-31 17:00:00: 0.055388489159644 + 2022-03-31 18:00:00: 0.055132039469234 + 2022-03-31 19:00:00: 0.054866328067342 + 2022-03-31 20:00:00: 0.054820187247385 + 2022-03-31 21:00:00: 0.05478922608048 + overflow_cost: + 2022-03-27 22:00:00: 100000 + Lont_intake: + net_head: 753 + max_inflow: 10 + inflow: + 2022-03-27 22:00:00: 0.19529178895575 + 2022-03-27 23:00:00: 0.13807878875096 + 2022-03-28 00:00:00: 0.13924843732705 + 2022-03-28 01:00:00: 0.15852227418825 + 2022-03-28 02:00:00: 0.16072164586293 + 2022-03-28 03:00:00: 0.1630872138855 + 2022-03-28 04:00:00: 0.16528455082157 + 2022-03-28 05:00:00: 0.16762862727869 + 2022-03-28 06:00:00: 0.17026753192172 + 2022-03-28 07:00:00: 0.16203600296958 + 2022-03-28 08:00:00: 0.16265206332059 + 2022-03-28 09:00:00: 0.1625156298883 + 2022-03-28 10:00:00: 0.16188484101705 + 2022-03-28 11:00:00: 0.16098936685549 + 2022-03-28 12:00:00: 0.1600154526417 + 2022-03-28 13:00:00: 0.15658922929404 + 2022-03-28 14:00:00: 0.15560144897526 + 2022-03-28 15:00:00: 0.15461695011484 + 2022-03-28 16:00:00: 0.15363574413342 + 2022-03-28 17:00:00: 0.15269830778782 + 2022-03-28 18:00:00: 0.15176921754034 + 2022-03-28 19:00:00: 0.15021939191949 + 2022-03-28 20:00:00: 0.14930939878979 + 2022-03-28 21:00:00: 0.14840234977035 + 2022-03-28 22:00:00: 0.14749825668398 + 2022-03-28 23:00:00: 0.14659713100756 + 2022-03-29 00:00:00: 0.14569724950072 + 2022-03-29 01:00:00: 0.1448744228456 + 2022-03-29 02:00:00: 0.14397326158208 + 2022-03-29 03:00:00: 0.14307504322171 + 2022-03-29 04:00:00: 0.14217977908789 + 2022-03-29 05:00:00: 0.14125333089682 + 2022-03-29 06:00:00: 0.14031975880404 + 2022-03-29 07:00:00: 0.13818089894002 + 2022-03-29 08:00:00: 0.13728647615404 + 2022-03-29 09:00:00: 0.13639507838615 + 2022-03-29 10:00:00: 0.13551559145783 + 2022-03-29 11:00:00: 0.13464045259951 + 2022-03-29 12:00:00: 0.13376842167905 + 2022-03-29 13:00:00: 0.13372703100368 + 2022-03-29 14:00:00: 0.13283710499876 + 2022-03-29 15:00:00: 0.13195037430235 + 2022-03-29 16:00:00: 0.13106684581983 + 2022-03-29 17:00:00: 0.13018652616115 + 2022-03-29 18:00:00: 0.12930942164444 + 2022-03-29 19:00:00: 0.12827745136254 + 2022-03-29 20:00:00: 0.12739699942255 + 2022-03-29 21:00:00: 0.12651993580898 + 2022-03-29 22:00:00: 0.12564626391688 + 2022-03-29 23:00:00: 0.12477598688225 + 2022-03-30 00:00:00: 0.12390910758552 + 2022-03-30 01:00:00: 0.1231553743627 + 2022-03-30 02:00:00: 0.12231095257681 + 2022-03-30 03:00:00: 0.12146994684846 + 2022-03-30 04:00:00: 0.12063235792439 + 2022-03-30 05:00:00: 0.11979818632787 + 2022-03-30 06:00:00: 0.11896743236184 + 2022-03-30 07:00:00: 0.1175006849681 + 2022-03-30 08:00:00: 0.11665910718863 + 2022-03-30 09:00:00: 0.11582100644003 + 2022-03-30 10:00:00: 0.11498638234137 + 2022-03-30 11:00:00: 0.11415523430069 + 2022-03-30 12:00:00: 0.11332756151807 + 2022-03-30 13:00:00: 0.11250336298869 + 2022-03-30 14:00:00: 0.11168901936384 + 2022-03-30 15:00:00: 0.11088056276955 + 2022-03-30 16:00:00: 0.11007542102583 + 2022-03-30 17:00:00: 0.10927359423836 + 2022-03-30 18:00:00: 0.10847508230486 + 2022-03-30 19:00:00: 0.10763104979062 + 2022-03-30 20:00:00: 0.10683112630926 + 2022-03-30 21:00:00: 0.10603466202033 + 2022-03-30 22:00:00: 0.10524165420681 + 2022-03-30 23:00:00: 0.10445209997564 + 2022-03-31 00:00:00: 0.1036659962605 + 2022-03-31 01:00:00: 0.10288666340429 + 2022-03-31 02:00:00: 0.10210747518678 + 2022-03-31 03:00:00: 0.10133172720054 + 2022-03-31 04:00:00: 0.1005594157127 + 2022-03-31 05:00:00: 0.099790536830472 + 2022-03-31 06:00:00: 0.099025086503762 + 2022-03-31 07:00:00: 0.098265946330354 + 2022-03-31 08:00:00: 0.097519444095832 + 2022-03-31 09:00:00: 0.096776139010744 + 2022-03-31 10:00:00: 0.096036029160214 + 2022-03-31 11:00:00: 0.095299112457808 + 2022-03-31 12:00:00: 0.094565386648158 + 2022-03-31 13:00:00: 0.093884243241056 + 2022-03-31 14:00:00: 0.093157256042048 + 2022-03-31 15:00:00: 0.092433450910664 + 2022-03-31 16:00:00: 0.091712824935218 + 2022-03-31 17:00:00: 0.090995375047986 + 2022-03-31 18:00:00: 0.090574064842313 + 2022-03-31 19:00:00: 0.090137538967777 + 2022-03-31 20:00:00: 0.090061736192132 + 2022-03-31 21:00:00: 0.090010871417931 + overflow_cost: + 2022-03-27 22:00:00: 100000 + Narvhus: + net_head: 380.77 + max_inflow: 5 + inflow: + 2022-03-27 22:00:00: 0.56298036345121 + 2022-03-27 23:00:00: 0.56298036345121 + 2022-03-28 00:00:00: 0.56298036345121 + 2022-03-28 01:00:00: 0.56298036345121 + 2022-03-28 02:00:00: 0.56298036345121 + 2022-03-28 03:00:00: 0.56298036345121 + 2022-03-28 07:00:00: 0.56298036345121 + 2022-03-28 08:00:00: 0.56298036345121 + 2022-03-28 09:00:00: 0.56298036345121 + 2022-03-28 10:00:00: 0.56298036345121 + 2022-03-28 14:00:00: 0.56298036345121 + 2022-03-28 15:00:00: 0.56298036345121 + 2022-03-28 20:00:00: 0.56298036345121 + 2022-03-28 21:00:00: 0.34559745643301 + 2022-03-29 21:00:00: 0.29696442101222 + 2022-03-29 22:00:00: 0.29696442101222 + 2022-03-30 00:00:00: 0.29696442101222 + 2022-03-30 02:00:00: 0.29696442101222 + 2022-03-30 04:00:00: 0.29696442101222 + 2022-03-30 06:00:00: 0.29696442101222 + 2022-03-30 07:00:00: 0.29696442101222 + 2022-03-30 08:00:00: 0.29696442101222 + 2022-03-30 09:00:00: 0.29696442101222 + 2022-03-30 10:00:00: 0.29696442101222 + 2022-03-30 11:00:00: 0.29696442101222 + 2022-03-30 12:00:00: 0.29696442101222 + 2022-03-30 13:00:00: 0.29696442101222 + 2022-03-30 14:00:00: 0.29696442101222 + 2022-03-30 15:00:00: 0.29696442101222 + 2022-03-30 16:00:00: 0.29696442101222 + 2022-03-30 17:00:00: 0.29696442101222 + 2022-03-30 18:00:00: 0.29696442101222 + 2022-03-30 19:00:00: 0.29696442101222 + 2022-03-30 20:00:00: 0.29696442101222 + 2022-03-30 21:00:00: 0.26232750483094 + 2022-03-31 21:00:00: 0.23120730320663 + overflow_cost: + 2022-03-27 22:00:00: 100000 + Gustad: + net_head: 762 + max_inflow: 10 + inflow: + 2022-03-27 22:00:00: 0.090804105372288 + 2022-03-27 23:00:00: 0.58395182079865 + 2022-03-28 00:00:00: 1.2582924038608 + 2022-03-28 01:00:00: 0.71705689581059 + 2022-03-28 02:00:00: 0.61341505490843 + 2022-03-28 03:00:00: 0.58066977042465 + 2022-03-28 04:00:00: 0.50271676441389 + 2022-03-28 05:00:00: 0.40056168818014 + 2022-03-28 06:00:00: 0.45017171134067 + 2022-03-28 07:00:00: 0.45578754025271 + 2022-03-28 08:00:00: 0.45917211793706 + 2022-03-28 09:00:00: 0.46224531445999 + 2022-03-28 10:00:00: 0.46351777002523 + 2022-03-28 11:00:00: 0.46401161394605 + 2022-03-28 12:00:00: 0.4659880704618 + 2022-03-28 13:00:00: 0.46843228310392 + 2022-03-28 14:00:00: 0.47059005680678 + 2022-03-28 15:00:00: 0.47146651806961 + 2022-03-28 16:00:00: 0.470578129934 + 2022-03-28 17:00:00: 0.46859422353773 + 2022-03-28 18:00:00: 0.46550155310449 + 2022-03-28 19:00:00: 0.46221585794555 + 2022-03-28 20:00:00: 0.4589483434375 + 2022-03-28 21:00:00: 0.45569899243969 + 2022-03-28 22:00:00: 0.45246778614657 + 2022-03-28 23:00:00: 0.44925470412224 + 2022-03-29 00:00:00: 0.44605972433447 + 2022-03-29 01:00:00: 0.44288282318842 + 2022-03-29 02:00:00: 0.4397239755598 + 2022-03-29 03:00:00: 0.43658315482773 + 2022-03-29 04:00:00: 0.43346033290709 + 2022-03-29 05:00:00: 0.43035548028049 + 2022-03-29 06:00:00: 0.42726856602982 + 2022-03-29 07:00:00: 0.42419955786736 + 2022-03-29 08:00:00: 0.42114842216653 + 2022-03-29 09:00:00: 0.41811512399217 + 2022-03-29 10:00:00: 0.4151069741591 + 2022-03-29 11:00:00: 0.4122351819152 + 2022-03-29 12:00:00: 0.40955605879009 + 2022-03-29 13:00:00: 0.4067911143393 + 2022-03-29 14:00:00: 0.4043395062623 + 2022-03-29 15:00:00: 0.40189604281454 + 2022-03-29 16:00:00: 0.3991093274919 + 2022-03-29 17:00:00: 0.39620693096417 + 2022-03-29 18:00:00: 0.3933220303598 + 2022-03-29 19:00:00: 0.39045457984522 + 2022-03-29 20:00:00: 0.38760453257004 + 2022-03-29 21:00:00: 0.38477184069286 + 2022-03-29 22:00:00: 0.3819564554067 + 2022-03-29 23:00:00: 0.37915832696413 + 2022-03-30 00:00:00: 0.37637740470193 + 2022-03-30 01:00:00: 0.37361363706546 + 2022-03-30 02:00:00: 0.37086697163266 + 2022-03-30 03:00:00: 0.36813735513764 + 2022-03-30 04:00:00: 0.36542473349395 + 2022-03-30 05:00:00: 0.36272905181755 + 2022-03-30 06:00:00: 0.36005025444931 + 2022-03-30 07:00:00: 0.35738828497725 + 2022-03-30 08:00:00: 0.35474308625844 + 2022-03-30 09:00:00: 0.35211460044051 + 2022-03-30 10:00:00: 0.34950276898288 + 2022-03-30 11:00:00: 0.34690753267759 + 2022-03-30 12:00:00: 0.34437402011926 + 2022-03-30 13:00:00: 0.3418498540277 + 2022-03-30 14:00:00: 0.33930350884252 + 2022-03-30 15:00:00: 0.33677351771557 + 2022-03-30 16:00:00: 0.33425981842192 + 2022-03-30 17:00:00: 0.33176234818705 + 2022-03-30 18:00:00: 0.32928104370552 + 2022-03-30 19:00:00: 0.32681584115929 + 2022-03-30 20:00:00: 0.3243666762357 + 2022-03-30 21:00:00: 0.32193348414529 + 2022-03-30 22:00:00: 0.31951619963913 + 2022-03-30 23:00:00: 0.31711475702604 + 2022-03-31 00:00:00: 0.31472909018938 + 2022-03-31 01:00:00: 0.31235913260365 + 2022-03-31 02:00:00: 0.31000481735072 + 2022-03-31 03:00:00: 0.30766607713589 + 2022-03-31 04:00:00: 0.30534284430352 + 2022-03-31 05:00:00: 0.30303505085258 + 2022-03-31 06:00:00: 0.30074262845172 + 2022-03-31 07:00:00: 0.29846550845424 + 2022-03-31 08:00:00: 0.29620362191272 + 2022-03-31 09:00:00: 0.29395689959338 + 2022-03-31 10:00:00: 0.29172527199022 + 2022-03-31 11:00:00: 0.28951608187522 + 2022-03-31 12:00:00: 0.28740672421011 + 2022-03-31 13:00:00: 0.28540636586509 + 2022-03-31 14:00:00: 0.28336315899106 + 2022-03-31 15:00:00: 0.28126478003385 + 2022-03-31 16:00:00: 0.2791335771344 + 2022-03-31 17:00:00: 0.27700234971435 + 2022-03-31 18:00:00: 0.27488566883776 + 2022-03-31 19:00:00: 0.27278346317784 + 2022-03-31 20:00:00: 0.27069566126071 + 2022-03-31 21:00:00: 0.26862219147684 + gate: + b_Hagen_Strand: + max_flow: + 2022-03-27 22:00:00: 0 + b_Sirefelt_Knute_Rullsvatn: + max_flow: + 2022-03-27 22:00:00: 0 + b_Danielsen_Lundvann: + max_flow: + 2022-03-27 22:00:00: 1000 + b_Dalbysvatn_Knute_Rullsvatn: + max_flow: + 2022-03-27 22:00:00: 0 + b_Nielsen_Blakstadana: + max_flow: + 2022-03-27 22:00:00: 10 + b_Lensvik_Dalbysvatn: + max_flow: + 2022-03-27 22:00:00: 1000 + b_Livincovs_Dalbysvatn: + max_flow: + 2022-03-27 22:00:00: 0 + f_Blakstadana_Knute_Rullsvatn: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Hagen_Strand: + max_flow: + 2022-03-27 22:00:00: 100 + f_Finnvasstol_Dalbysvatn: + max_flow: + 2022-03-27 22:00:00: 10 + f_Hovden_Hagen: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Fjerdingby_Dalbysvatn: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Frosta: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Varhaug: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Tangvall: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Sirefelt_Knute_Rullsvatn: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Lundvann_Lensvik: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Nupstj: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Golebiowski_Dalbysvatn: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Lont_Dalbysvatn: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Dalbysvatn_Knute_Rullsvatn: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Nielsen: + max_flow: + 2022-03-27 22:00:00: 10 + f_Narvhus_Rullsvatn: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Rullsvatn_Rullslaagen: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Ranemsletta_1183_Livincovs: + max_flow: + 2022-03-27 22:00:00: 1000 + f_Lensvik: + max_flow: + 2022-03-27 22:00:00: 0 + f_Livincovs: + max_flow: + 2022-03-27 22:00:00: 1000 + w_Finnvasstol_Strand_tunnel: + max_flow: + 2022-03-27 22:00:00: 6 + w_Hovden_Livincovs: + max_flow: + 2022-03-27 22:00:00: 10 + w_Frosta: + max_flow: + 2022-03-27 22:00:00: 1000 + w_Varhaug: + max_flow: + 2022-03-27 22:00:00: 30 + schedule_m3s: + 2022-03-27 22:00:00: 0.001 + schedule_flag: + 2022-03-27 22:00:00: 1 + w_Tangvall: + max_flow: + 2022-03-27 22:00:00: 1000 + w_Rullsvatn_Rullslaagen: + max_flow: + 2022-03-27 22:00:00: 0 + generator: + Holen_G1: + penstock: 1 + p_min: 27 + p_max: 42 + p_nom: 45 + gen_eff_curve: + ref: 0 + x: + - 15 + - 16.9 + - 21.8 + - 25.8 + - 28.2 + - 32.5 + - 38.5 + - 41.5 + - 43 + - 44 + y: + - 97 + - 97.5 + - 97.9 + - 98.2 + - 98.3 + - 98.43 + - 98.6 + - 98.64 + - 98.65 + - 98.63 + turb_eff_curves: + - ref: 300 + x: + - 5.9 + - 6.2367 + - 6.5733 + - 6.91 + - 7.2467 + - 7.5833 + - 7.92 + - 8.2567 + - 8.5933 + - 8.93 + - 9.2667 + - 9.6033 + - 9.94 + - 10.2767 + - 10.6133 + - 10.95 + - 11.2867 + - 11.6233 + - 11.96 + - 12.2967 + - 12.6333 + - 12.97 + - 13.3067 + - 13.6433 + - 13.98 + - 14.3167 + - 14.6533 + - 14.99 + - 15.3267 + - 15.6633 + - 16 + y: + - 85.4957 + - 86.1996 + - 86.8821 + - 87.5418 + - 88.1773 + - 88.7875 + - 89.371 + - 89.9265 + - 90.4526 + - 90.9482 + - 91.4118 + - 91.8421 + - 92.238 + - 92.598 + - 92.9209 + - 93.2053 + - 93.4499 + - 93.6535 + - 93.8147 + - 93.9322 + - 94.0048 + - 94.0311 + - 94.0097 + - 93.9395 + - 93.8191 + - 93.6472 + - 93.4224 + - 93.1436 + - 92.8093 + - 92.4183 + - 91.9692 + maintenance_flag: + 2022-03-27 22:00:00: 0 + startcost: + 2022-03-27 22:00:00: 200 + min_p_constr: + 2022-03-27 22:00:00: 28 + max_p_constr: + 2022-03-27 22:00:00: 38 + p_fcr_min: + 2022-03-27 22:00:00: 27 + p_fcr_max: + 2022-03-27 22:00:00: 45 + p_rr_min: + 2022-03-27 22:00:00: 0 + droop_min: + 2022-03-27 22:00:00: 6 + droop_max: + 2022-03-27 22:00:00: 6 + Lund_G1: + penstock: 1 + p_min: 0.6 + p_max: 1 + p_nom: 1 + gen_eff_curve: + ref: 0 + x: + - 0 + - 100 + y: + - 98.5 + - 98.5 + turb_eff_curves: + - ref: 56 + x: + - 1 + - 1.0467 + - 1.0933 + - 1.14 + - 1.1867 + - 1.2333 + - 1.28 + - 1.3267 + - 1.3733 + - 1.42 + - 1.4667 + - 1.5133 + - 1.56 + - 1.6067 + - 1.6533 + - 1.7 + - 1.7467 + - 1.7933 + - 1.84 + - 1.8867 + - 1.9333 + - 1.98 + - 2.0267 + - 2.0733 + - 2.12 + - 2.1667 + - 2.2133 + - 2.26 + - 2.3067 + - 2.3533 + - 2.4 + y: + - 74.9564 + - 76.048 + - 77.1212 + - 78.1731 + - 79.2009 + - 80.2018 + - 81.1729 + - 82.1114 + - 83.0145 + - 83.8793 + - 84.703 + - 85.4828 + - 86.2158 + - 86.8992 + - 87.5301 + - 88.1058 + - 88.6234 + - 89.0801 + - 89.473 + - 89.7993 + - 90.0561 + - 90.2407 + - 90.3502 + - 90.3818 + - 90.3326 + - 90.1998 + - 89.9805 + - 89.672 + - 89.2715 + - 88.7759 + - 88.1826 + - ref: 60 + x: + - 1 + - 1.0467 + - 1.0933 + - 1.14 + - 1.1867 + - 1.2333 + - 1.28 + - 1.3267 + - 1.3733 + - 1.42 + - 1.4667 + - 1.5133 + - 1.56 + - 1.6067 + - 1.6533 + - 1.7 + - 1.7467 + - 1.7933 + - 1.84 + - 1.8867 + - 1.9333 + - 1.98 + - 2.0267 + - 2.0733 + - 2.12 + - 2.1667 + - 2.2133 + - 2.26 + - 2.3067 + - 2.3533 + - 2.4 + y: + - 74.9667 + - 76.0042 + - 77.034 + - 78.053 + - 79.058 + - 80.0456 + - 81.0127 + - 81.9559 + - 82.872 + - 83.7579 + - 84.6102 + - 85.4257 + - 86.2011 + - 86.9332 + - 87.6187 + - 88.2545 + - 88.8372 + - 89.3636 + - 89.8305 + - 90.2345 + - 90.5725 + - 90.8413 + - 91.0374 + - 91.1578 + - 91.1992 + - 91.1583 + - 91.0319 + - 90.8166 + - 90.5094 + - 90.1069 + - 89.6058 + maintenance_flag: + 2022-03-27 22:00:00: 0 + 2022-03-31 05:00:00: 1 + 2022-03-31 09:00:00: 0 + startcost: + 2022-03-27 22:00:00: 100 + p_fcr_min: + 2022-03-27 22:00:00: 0.6 + 2022-03-28 00:00:00: 0.6 + 2022-03-28 01:00:00: 0.6 + 2022-03-28 06:00:00: 0.6 + 2022-03-28 07:00:00: 0.6 + 2022-03-28 11:00:00: 0.6 + 2022-03-28 12:00:00: 0.6 + 2022-03-28 16:00:00: 0.6 + 2022-03-28 18:00:00: 0.6 + 2022-03-29 03:00:00: 0.6 + 2022-03-29 05:00:00: 0.6 + 2022-03-29 08:00:00: 0.6 + 2022-03-29 09:00:00: 0.6 + 2022-03-29 10:00:00: 0.6 + 2022-03-29 11:00:00: 0.6 + 2022-03-29 15:00:00: 0.6 + 2022-03-29 16:00:00: 0.6 + 2022-03-29 19:00:00: 0.6 + 2022-03-29 20:00:00: 0.6 + 2022-03-29 21:00:00: 0.6 + 2022-03-29 22:00:00: 0.6 + 2022-03-30 00:00:00: 0.6 + 2022-03-30 01:00:00: 0.6 + 2022-03-30 08:00:00: 0.6 + 2022-03-30 09:00:00: 0.6 + 2022-03-30 11:00:00: 0.6 + 2022-03-30 12:00:00: 0.6 + 2022-03-30 16:00:00: 0.6 + 2022-03-30 17:00:00: 0.6 + 2022-03-30 19:00:00: 0.6 + 2022-03-30 20:00:00: 0.6 + 2022-03-31 03:00:00: 0.6 + 2022-03-31 04:00:00: 0.6 + 2022-03-31 06:00:00: 0.6 + 2022-03-31 07:00:00: 0.6 + 2022-03-31 08:00:00: 0.6 + 2022-03-31 09:00:00: 0.6 + 2022-03-31 12:00:00: 0.6 + 2022-03-31 13:00:00: 0.6 + 2022-03-31 17:00:00: 0.6 + 2022-03-31 18:00:00: 0.6 + 2022-03-31 19:00:00: 0.6 + 2022-03-31 20:00:00: 0.6 + p_fcr_max: + 2022-03-27 22:00:00: 1 + p_rr_min: + 2022-03-27 22:00:00: 0 + droop_min: + 2022-03-27 22:00:00: 4 + droop_max: + 2022-03-27 22:00:00: 12 + Lien_krv_G1: + penstock: 1 + p_min: 1.2 + p_max: 3.4 + p_nom: 3.4 + gen_eff_curve: + ref: 0 + x: + - 1 + - 2 + - 3 + - 3.4 + y: + - 93.3 + - 96.2 + - 97.2 + - 97.4 + turb_eff_curves: + - ref: 154 + x: + - 0.5 + - 1 + - 2 + - 2.4 + - 2.6 + y: + - 91 + - 92.7 + - 93.7 + - 94 + - 93.9 + maintenance_flag: + 2022-03-27 22:00:00: 0 + startcost: + 2022-03-27 22:00:00: 150 + min_p_constr: + 2022-03-27 22:00:00: 2.5 + max_p_constr: + 2022-03-27 22:00:00: 3.1 + 2022-03-28 00:00:00: 3.1 + 2022-03-28 01:00:00: 3.1 + 2022-03-28 06:00:00: 3.1 + 2022-03-28 07:00:00: 3.1 + 2022-03-28 11:00:00: 3.1 + 2022-03-28 12:00:00: 3.1 + 2022-03-28 16:00:00: 3.1 + 2022-03-28 18:00:00: 3.1 + 2022-03-29 03:00:00: 3.1 + 2022-03-29 05:00:00: 3.1 + 2022-03-29 08:00:00: 3.1 + 2022-03-29 09:00:00: 3.1 + 2022-03-29 10:00:00: 3.1 + 2022-03-29 11:00:00: 3.1 + 2022-03-29 15:00:00: 3.1 + 2022-03-29 16:00:00: 3.1 + 2022-03-29 19:00:00: 3.1 + 2022-03-29 20:00:00: 3.1 + 2022-03-29 21:00:00: 3.1 + 2022-03-29 22:00:00: 3.1 + 2022-03-30 00:00:00: 3.1 + 2022-03-30 01:00:00: 3.1 + 2022-03-30 08:00:00: 3.1 + 2022-03-30 09:00:00: 3.1 + 2022-03-30 11:00:00: 3.1 + 2022-03-30 12:00:00: 3.1 + 2022-03-30 16:00:00: 3.1 + 2022-03-30 17:00:00: 3.1 + 2022-03-30 19:00:00: 3.1 + 2022-03-30 20:00:00: 3.1 + 2022-03-31 03:00:00: 3.1 + 2022-03-31 04:00:00: 3.1 + 2022-03-31 06:00:00: 3.1 + 2022-03-31 07:00:00: 3.1 + 2022-03-31 08:00:00: 3.1 + 2022-03-31 09:00:00: 3.1 + 2022-03-31 12:00:00: 3.1 + 2022-03-31 13:00:00: 3.1 + 2022-03-31 17:00:00: 3.1 + 2022-03-31 18:00:00: 3.1 + 2022-03-31 19:00:00: 3.1 + 2022-03-31 20:00:00: 3.1 + p_fcr_min: + 2022-03-27 22:00:00: 0 + p_fcr_max: + 2022-03-27 22:00:00: 0 + p_rr_min: + 2022-03-27 22:00:00: 0 + droop_min: + 2022-03-27 22:00:00: 4 + droop_max: + 2022-03-27 22:00:00: 8 + Landet_G1: + penstock: 1 + p_min: 25 + p_max: 50 + p_nom: 50 + gen_eff_curve: + ref: 0 + x: + - 17 + - 20.5 + - 23.8 + - 27.3 + - 31 + - 34.3 + - 41.2 + - 44.8 + - 50 + y: + - 96.6 + - 97.4 + - 97.9 + - 98.23 + - 98.4 + - 98.5 + - 98.7 + - 98.72 + - 98.69 + turb_eff_curves: + - ref: 260 + x: + - 7.24 + - 8.16 + - 9.46 + - 10.78 + - 12.16 + - 13.56 + - 14.97 + - 16.63 + - 18.21 + - 19.9 + - 20.44 + y: + - 84.88 + - 86.75 + - 89.09 + - 90.82 + - 91.95 + - 92.84 + - 93.68 + - 93.7 + - 93.35 + - 92.9 + - 92.69 + - ref: 280 + x: + - 7.26 + - 8.59 + - 9.8 + - 11.03 + - 12.32 + - 13.62 + - 14.92 + - 16.29 + - 17.78 + - 19.36 + - 21.2 + y: + - 84.88 + - 86.97 + - 89.03 + - 90.7 + - 91.72 + - 92.59 + - 93.4 + - 93.83 + - 93.67 + - 93.26 + - 92.69 + - ref: 300 + x: + - 7.75 + - 8.63 + - 9.94 + - 11.25 + - 12.63 + - 14.03 + - 15.52 + - 16.88 + - 18.55 + - 20.18 + - 21.92 + y: + - 84.88 + - 86.55 + - 88.73 + - 90.55 + - 91.67 + - 92.53 + - 93.4 + - 93.83 + - 93.6 + - 93.25 + - 92.69 + maintenance_flag: + 2022-03-27 22:00:00: 0 + 2022-03-31 05:00:00: 1 + 2022-03-31 09:00:00: 0 + startcost: + 2022-03-27 22:00:00: 200 + max_p_constr: + 2022-03-27 22:00:00: 48 + p_fcr_min: + 2022-03-27 22:00:00: 25 + p_fcr_max: + 2022-03-27 22:00:00: 50 + p_rr_min: + 2022-03-27 22:00:00: 0 + droop_min: + 2022-03-27 22:00:00: 6 + droop_max: + 2022-03-27 22:00:00: 6 + Dalby_G1: + penstock: 1 + p_min: 40 + p_max: 85 + p_nom: 93 + gen_eff_curve: + ref: 0 + x: + - 20 + - 30 + - 50 + - 65 + - 85 + - 88 + y: + - 96.2 + - 97.45 + - 98.14 + - 98.29 + - 98.31 + - 98.3 + turb_eff_curves: + - ref: 340 + x: + - 10.77 + - 11.411 + - 12.052 + - 12.693 + - 13.334 + - 13.975 + - 14.616 + - 15.257 + - 15.898 + - 16.539 + - 17.18 + - 17.821 + - 18.462 + - 19.103 + - 19.744 + - 20.385 + - 21.026 + - 21.667 + - 22.308 + - 22.949 + - 23.59 + - 24.231 + - 24.872 + - 25.513 + - 26.154 + - 26.795 + - 27.436 + - 28.077 + - 28.718 + - 29.359 + - 30 + y: + - 86.4359 + - 87.1856 + - 87.8911 + - 88.5536 + - 89.1744 + - 89.7548 + - 90.2961 + - 90.7996 + - 91.2666 + - 91.6984 + - 92.0963 + - 92.4615 + - 92.7954 + - 93.0993 + - 93.3745 + - 93.6222 + - 93.8437 + - 94.0404 + - 94.2136 + - 94.3645 + - 94.4944 + - 94.6046 + - 94.6965 + - 94.7712 + - 94.8302 + - 94.8747 + - 94.906 + - 94.9253 + - 94.9341 + - 94.9335 + - 94.925 + maintenance_flag: + 2022-03-27 22:00:00: 0 + startcost: + 2022-03-27 22:00:00: 500 + p_fcr_min: + 2022-03-27 22:00:00: 38 + p_fcr_max: + 2022-03-27 22:00:00: 85 + p_rr_min: + 2022-03-27 22:00:00: 0 + droop_cost: + 2022-03-27 22:00:00: 50000 + droop_min: + 2022-03-27 22:00:00: 2 + droop_max: + 2022-03-27 22:00:00: 12 + Dalby_G2: + penstock: 1 + p_min: 40 + p_max: 85 + p_nom: 85 + gen_eff_curve: + ref: 0 + x: + - 20 + - 30 + - 50 + - 65 + - 80 + - 85 + y: + - 96.2 + - 97.45 + - 98.14 + - 98.29 + - 98.31 + - 98.31 + turb_eff_curves: + - ref: 300 + x: + - 6.23 + - 7.1557 + - 8.0813 + - 9.007 + - 9.9327 + - 10.8583 + - 11.784 + - 12.7097 + - 13.6353 + - 14.561 + - 15.4867 + - 16.4123 + - 17.338 + - 18.2637 + - 19.1893 + - 20.115 + - 21.0407 + - 21.9663 + - 22.892 + - 23.8177 + - 24.7433 + - 25.669 + - 26.5947 + - 27.5203 + - 28.446 + - 29.3717 + - 30.2973 + - 31.223 + - 32.1487 + - 33.0743 + - 34 + y: + - 82.1863 + - 84.0332 + - 85.7126 + - 87.2306 + - 88.5935 + - 89.8075 + - 90.8787 + - 91.8133 + - 92.6176 + - 93.2978 + - 93.8599 + - 94.3104 + - 94.6553 + - 94.9008 + - 95.0532 + - 95.1187 + - 95.1034 + - 95.0135 + - 94.8553 + - 94.635 + - 94.3587 + - 94.0326 + - 93.663 + - 93.2561 + - 92.818 + - 92.3549 + - 91.8731 + - 91.3788 + - 90.8781 + - 90.3772 + - 89.87 + - ref: 350 + x: + - 7.16 + - 10.7387 + - 11.6333 + - 13.4227 + - 15.212 + - 16.1067 + - 17.0013 + - 17.896 + - 18.7907 + - 19.6853 + - 20.58 + - 21.4747 + - 22.3693 + - 23.264 + - 24.1587 + - 25.0533 + - 25.948 + - 26.8427 + - 27.7373 + - 28.632 + - 29.5267 + - 30.4213 + - 31.316 + - 32.2107 + - 33.1053 + y: + - 83.9641 + - 89.1174 + - 90.1134 + - 91.7832 + - 93.0508 + - 93.544 + - 93.9489 + - 94.2695 + - 94.5101 + - 94.6746 + - 94.7672 + - 94.7919 + - 94.7529 + - 94.6542 + - 94.5 + - 94.2942 + - 94.0411 + - 93.7446 + - 93.4089 + - 93.0381 + - 92.6362 + - 92.2074 + - 91.7557 + - 91.2852 + - 90.8001 + maintenance_flag: + 2022-03-27 22:00:00: 0 + startcost: + 2022-03-27 22:00:00: 250 + p_fcr_min: + 2022-03-27 22:00:00: 38 + p_fcr_max: + 2022-03-27 22:00:00: 85 + p_rr_min: + 2022-03-27 22:00:00: 0 + droop_cost: + 2022-03-27 22:00:00: 50000 + droop_min: + 2022-03-27 22:00:00: 2 + droop_max: + 2022-03-27 22:00:00: 12 + Rull1_G1: + penstock: 1 + p_min: 40 + p_max: 100 + p_nom: 90 + gen_eff_curve: + ref: 0 + x: + - 37.9 + - 50 + - 65 + - 75 + - 85 + - 95 + - 100 + y: + - 97.6 + - 98.11 + - 98.44 + - 98.52 + - 98.51 + - 98.5 + - 98.49 + turb_eff_curves: + - ref: 305 + x: + - 13.5 + - 14 + - 14.5 + - 15 + - 15.5 + - 16 + - 16.5 + - 17 + - 17.5 + - 18 + - 18.5 + - 19 + - 19.5 + - 20 + - 20.5 + - 21 + - 21.5 + - 22 + - 22.5 + - 23 + - 23.5 + - 24 + - 24.5 + - 25 + - 25.5 + - 26 + - 26.5 + - 27 + - 27.5 + - 28 + - 28.5 + - 29 + - 29.5 + - 30 + - 30.5 + - 31 + - 31.5 + - 32 + - 32.5 + - 33 + - 33.5 + - 34 + - 34.5 + - 35 + - 36 + - 36.5 + - 37 + - 37.5 + - 38 + - 38.5 + - 39 + - 39.5 + y: + - 89.31992 + - 89.87796 + - 90.38326 + - 90.84213 + - 91.26008 + - 91.64192 + - 91.99189 + - 92.31372 + - 92.61071 + - 92.88581 + - 93.14165 + - 93.38055 + - 93.60464 + - 93.8158 + - 94.01574 + - 94.20598 + - 94.38659 + - 94.55616 + - 94.71333 + - 94.85686 + - 94.98562 + - 95.09856 + - 95.19473 + - 95.27325 + - 95.33336 + - 95.37557 + - 95.40147 + - 95.41256 + - 95.41025 + - 95.39583 + - 95.37052 + - 95.33537 + - 95.29119 + - 95.23873 + - 95.1787 + - 95.11174 + - 95.03846 + - 94.9594 + - 94.8747 + - 94.78425 + - 94.68796 + - 94.58572 + - 94.47746 + - 94.36308 + - 94.11566 + - 93.98248 + - 93.8429 + - 93.69684 + - 93.54426 + - 93.3851 + - 93.21929 + - 93.0468 + maintenance_flag: + 2022-03-27 22:00:00: 0 + startcost: + 2022-03-27 22:00:00: 250 + max_p_constr: + 2022-03-27 22:00:00: 90 + p_fcr_min: + 2022-03-27 22:00:00: 38 + p_fcr_max: + 2022-03-27 22:00:00: 95 + p_rr_min: + 2022-03-27 22:00:00: 0 + droop_cost: + 2022-03-27 22:00:00: 50000 + droop_min: + 2022-03-27 22:00:00: 2 + droop_max: + 2022-03-27 22:00:00: 12 + Rull1_G2: + penstock: 2 + p_min: 40 + p_max: 105 + p_nom: 95 + gen_eff_curve: + ref: 0 + x: + - 37.9 + - 50 + - 65 + - 75 + - 80 + - 95 + y: + - 97.6 + - 98.11 + - 98.45 + - 98.53 + - 98.525 + - 98.51 + turb_eff_curves: + - ref: 305 + x: + - 13 + - 13.5 + - 14 + - 14.5 + - 15 + - 15.5 + - 16 + - 16.5 + - 17 + - 17.5 + - 18 + - 18.5 + - 19 + - 19.5 + - 20 + - 20.5 + - 21 + - 21.5 + - 22 + - 22.5 + - 23 + - 23.5 + - 24 + - 24.5 + - 25 + - 25.5 + - 26 + - 26.5 + - 27 + - 27.5 + - 28 + - 28.5 + - 29 + - 29.5 + - 30 + - 30.5 + - 31 + - 31.5 + - 32 + - 32.5 + - 33 + - 33.5 + - 34 + - 34.5 + - 35 + - 35.5 + - 36 + - 36.5 + - 37 + - 37.5 + - 38 + - 38.5 + - 39 + - 39.5 + y: + - 87.70424 + - 88.36959 + - 88.97406 + - 89.52468 + - 90.02755 + - 90.48798 + - 90.91061 + - 91.29954 + - 91.65836 + - 91.99026 + - 92.29809 + - 92.58437 + - 92.85137 + - 93.10111 + - 93.33543 + - 93.55598 + - 93.76424 + - 93.96158 + - 94.14922 + - 94.32778 + - 94.49643 + - 94.65417 + - 94.80007 + - 94.93332 + - 95.05312 + - 95.15878 + - 95.24963 + - 95.32506 + - 95.38465 + - 95.42905 + - 95.45942 + - 95.47682 + - 95.48223 + - 95.4766 + - 95.46077 + - 95.43565 + - 95.40228 + - 95.3617 + - 95.31488 + - 95.26273 + - 95.20611 + - 95.1458 + - 95.08259 + - 95.01716 + - 94.9502 + - 94.88234 + - 94.81417 + - 94.74627 + - 94.67916 + - 94.61336 + - 94.54934 + - 94.48756 + - 94.42845 + - 94.37242 + maintenance_flag: + 2022-03-27 22:00:00: 0 + startcost: + 2022-03-27 22:00:00: 250 + min_p_constr: + 2022-03-27 22:00:00: 43 + max_p_constr: + 2022-03-27 22:00:00: 95 + p_fcr_min: + 2022-03-27 22:00:00: 38 + p_fcr_max: + 2022-03-27 22:00:00: 85 + p_rr_min: + 2022-03-27 22:00:00: 0 + droop_cost: + 2022-03-27 22:00:00: 50000 + droop_min: + 2022-03-27 22:00:00: 2 + droop_max: + 2022-03-27 22:00:00: 12 + Rull2_G1: + penstock: 1 + p_min: 32 + p_max: 72 + p_nom: 70 + gen_eff_curve: + ref: 0 + x: + - 30 + - 45 + - 55 + - 65 + - 80 + y: + - 97.68 + - 98.3 + - 98.46 + - 98.55 + - 98.6 + turb_eff_curves: + - ref: 545 + x: + - 6.53 + - 6.8623 + - 7.1947 + - 7.527 + - 7.8593 + - 8.1917 + - 8.524 + - 8.8563 + - 9.1887 + - 9.521 + - 9.8533 + - 10.1857 + - 10.518 + - 10.8503 + - 11.1827 + - 11.515 + - 11.8473 + - 12.1797 + - 12.512 + - 12.8443 + - 13.1767 + - 13.509 + - 13.8413 + - 14.1737 + - 14.506 + - 14.8383 + - 15.1707 + - 15.503 + - 15.8353 + - 16.1677 + - 16.5 + y: + - 88.975 + - 89.3936 + - 89.7979 + - 90.1868 + - 90.559 + - 90.9132 + - 91.2484 + - 91.5633 + - 91.8567 + - 92.1274 + - 92.3741 + - 92.5958 + - 92.791 + - 92.9588 + - 93.0978 + - 93.2068 + - 93.2847 + - 93.3301 + - 93.3421 + - 93.3192 + - 93.2603 + - 93.1642 + - 93.0298 + - 92.8557 + - 92.6407 + - 92.3838 + - 92.0836 + - 91.739 + - 91.3487 + - 90.9115 + - 90.4263 + maintenance_flag: + 2022-03-27 22:00:00: 0 + startcost: + 2022-03-27 22:00:00: 250 + p_fcr_min: + 2022-03-27 22:00:00: 32 + p_fcr_max: + 2022-03-27 22:00:00: 74 + p_rr_min: + 2022-03-27 22:00:00: 0 + droop_cost: + 2022-03-27 22:00:00: 50000 + droop_min: + 2022-03-27 22:00:00: 4 + droop_max: + 2022-03-27 22:00:00: 12 + Rull2_G2: + penstock: 2 + p_min: 32 + p_max: 76 + p_nom: 80 + gen_eff_curve: + ref: 0 + x: + - 20 + - 35 + - 50 + - 65 + - 80 + y: + - 96.91 + - 97.88 + - 98.33 + - 98.52 + - 98.6 + turb_eff_curves: + - ref: 545 + x: + - 6.53 + - 6.8623 + - 7.1947 + - 7.527 + - 7.8593 + - 8.1917 + - 8.524 + - 8.8563 + - 9.1887 + - 9.521 + - 9.8533 + - 10.1857 + - 10.518 + - 10.8503 + - 11.1827 + - 11.515 + - 11.8473 + - 12.1797 + - 12.512 + - 12.8443 + - 13.1767 + - 13.509 + - 13.8413 + - 14.1737 + - 14.506 + - 14.8383 + - 15.1707 + - 15.503 + - 15.8353 + - 16.1677 + - 16.5 + y: + - 88.9116 + - 89.3813 + - 89.8234 + - 90.2379 + - 90.6249 + - 90.9845 + - 91.3167 + - 91.6215 + - 91.899 + - 92.1492 + - 92.3723 + - 92.5682 + - 92.7371 + - 92.8788 + - 92.9936 + - 93.0815 + - 93.1425 + - 93.1766 + - 93.184 + - 93.1646 + - 93.1186 + - 93.0459 + - 92.9467 + - 92.8209 + - 92.6687 + - 92.49 + - 92.285 + - 92.0537 + - 91.7961 + - 91.5123 + - 91.2023 + maintenance_flag: + 2022-03-27 22:00:00: 0 + startcost: + 2022-03-27 22:00:00: 250 + max_p_constr: + 2022-03-27 22:00:00: 74 + p_fcr_min: + 2022-03-27 22:00:00: 32 + p_fcr_max: + 2022-03-27 22:00:00: 76 + p_rr_min: + 2022-03-27 22:00:00: 0 + droop_cost: + 2022-03-27 22:00:00: 50000 + droop_min: + 2022-03-27 22:00:00: 4 + droop_max: + 2022-03-27 22:00:00: 12 + Scott_G1: + penstock: 1 + p_min: 8 + p_max: 18 + p_nom: 20 + gen_eff_curve: + ref: 0 + x: + - 4 + - 11.6 + - 15.2 + - 19.2 + - 20 + y: + - 97 + - 98.2 + - 98.4 + - 98.5 + - 98.5 + turb_eff_curves: + - ref: 200 + x: + - 4 + - 4.2633 + - 4.5267 + - 4.79 + - 5.0533 + - 5.3167 + - 5.58 + - 5.8433 + - 6.1067 + - 6.37 + - 6.6333 + - 6.8967 + - 7.16 + - 7.4233 + - 7.6867 + - 7.95 + - 8.2133 + - 8.4767 + - 8.74 + - 9.0033 + - 9.2667 + - 9.53 + - 9.7933 + - 10.0567 + - 10.32 + - 10.5833 + - 10.8467 + - 11.11 + - 11.3733 + - 11.6367 + - 11.9 + y: + - 80.0459 + - 81.6326 + - 83.1038 + - 84.4628 + - 85.713 + - 86.8577 + - 87.9003 + - 88.8441 + - 89.6925 + - 90.4488 + - 91.1163 + - 91.6984 + - 92.1985 + - 92.6199 + - 92.9659 + - 93.2399 + - 93.4452 + - 93.5852 + - 93.6632 + - 93.6826 + - 93.6467 + - 93.5589 + - 93.4225 + - 93.2408 + - 93.0172 + - 92.7551 + - 92.4578 + - 92.1286 + - 91.7708 + - 91.388 + - 90.9833 + maintenance_flag: + 2022-03-27 22:00:00: 0 + 2022-03-31 05:00:00: 1 + 2022-03-31 09:00:00: 0 + startcost: + 2022-03-27 22:00:00: 150 + p_fcr_min: + 2022-03-27 22:00:00: 7 + p_fcr_max: + 2022-03-27 22:00:00: 19 + p_rr_min: + 2022-03-27 22:00:00: 0 + droop_min: + 2022-03-27 22:00:00: 6 + droop_max: + 2022-03-27 22:00:00: 6 + Strand_krv_G1: + penstock: 1 + p_min: 4.2 + p_max: 4.9 + p_nom: 5.1 + gen_eff_curve: + ref: 0 + x: + - 1 + - 4 + - 5.1 + y: + - 97.24 + - 97.41 + - 97.4 + turb_eff_curves: + - ref: 150 + x: + - 0.5 + - 2 + - 2.0667 + - 2.3333 + - 2.4 + - 2.4667 + - 2.5333 + - 2.6 + - 2.6667 + - 2.7333 + - 2.8 + - 2.8667 + - 2.9333 + - 3 + - 3.0667 + - 3.1333 + - 3.2 + - 3.2667 + - 3.3333 + - 3.4 + - 3.4667 + - 3.5333 + - 3.6 + - 3.6667 + - 3.7333 + - 3.8 + - 3.8667 + - 3.9333 + - 4 + - 4.5 + y: + - 91.4 + - 92.5 + - 92.5451 + - 92.7263 + - 92.7706 + - 92.8141 + - 92.8564 + - 92.8973 + - 92.9366 + - 92.974 + - 93.0093 + - 93.0422 + - 93.0726 + - 93.1 + - 93.1243 + - 93.1453 + - 93.1627 + - 93.1762 + - 93.1856 + - 93.1907 + - 93.1912 + - 93.1868 + - 93.1774 + - 93.1626 + - 93.1422 + - 93.116 + - 93.0838 + - 93.0452 + - 93 + - 92.5 + maintenance_flag: + 2022-03-27 22:00:00: 0 + startcost: + 2022-03-27 22:00:00: 150 + p_fcr_min: + 2022-03-27 22:00:00: 4.2 + p_fcr_max: + 2022-03-27 22:00:00: 4.9 + 2022-03-27 23:00:00: 4.9 + 2022-03-28 00:00:00: 4.9 + 2022-03-28 02:00:00: 4.9 + 2022-03-28 03:00:00: 4.9 + 2022-03-28 04:00:00: 4.9 + 2022-03-28 06:00:00: 4.9 + 2022-03-28 07:00:00: 4.9 + 2022-03-28 08:00:00: 4.9 + 2022-03-28 09:00:00: 4.9 + 2022-03-28 10:00:00: 4.9 + 2022-03-28 11:00:00: 4.9 + 2022-03-28 12:00:00: 4.9 + 2022-03-28 14:00:00: 4.9 + 2022-03-28 15:00:00: 4.9 + 2022-03-28 17:00:00: 4.9 + 2022-03-28 18:00:00: 4.9 + 2022-03-28 21:00:00: 4.9 + 2022-03-28 22:00:00: 4.9 + 2022-03-29 00:00:00: 4.9 + 2022-03-29 01:00:00: 4.9 + 2022-03-29 05:00:00: 4.9 + 2022-03-29 06:00:00: 4.9 + 2022-03-29 08:00:00: 4.9 + 2022-03-29 09:00:00: 4.9 + 2022-03-29 11:00:00: 4.9 + 2022-03-29 12:00:00: 4.9 + 2022-03-29 13:00:00: 4.9 + 2022-03-29 15:00:00: 4.9 + 2022-03-29 16:00:00: 4.9 + 2022-03-29 18:00:00: 4.9 + 2022-03-29 19:00:00: 4.9 + 2022-03-29 20:00:00: 4.9 + 2022-03-29 21:00:00: 4.9 + 2022-03-29 22:00:00: 4.9 + 2022-03-29 23:00:00: 4.9 + 2022-03-30 00:00:00: 4.9 + 2022-03-30 02:00:00: 4.9 + 2022-03-30 03:00:00: 4.9 + 2022-03-30 04:00:00: 4.9 + 2022-03-30 06:00:00: 4.9 + 2022-03-30 07:00:00: 4.9 + 2022-03-30 09:00:00: 4.9 + 2022-03-30 10:00:00: 4.9 + 2022-03-30 13:00:00: 4.9 + 2022-03-30 14:00:00: 4.9 + 2022-03-30 17:00:00: 4.9 + 2022-03-30 18:00:00: 4.9 + 2022-03-30 21:00:00: 4.9 + 2022-03-30 22:00:00: 4.9 + 2022-03-31 00:00:00: 4.9 + 2022-03-31 01:00:00: 4.9 + 2022-03-31 03:00:00: 4.9 + 2022-03-31 04:00:00: 4.9 + 2022-03-31 05:00:00: 4.9 + 2022-03-31 07:00:00: 4.9 + 2022-03-31 08:00:00: 4.9 + 2022-03-31 09:00:00: 4.9 + 2022-03-31 11:00:00: 4.9 + 2022-03-31 12:00:00: 4.9 + 2022-03-31 13:00:00: 4.9 + 2022-03-31 15:00:00: 4.9 + 2022-03-31 16:00:00: 4.9 + 2022-03-31 18:00:00: 4.9 + 2022-03-31 19:00:00: 4.9 + 2022-03-31 20:00:00: 4.9 + p_rr_min: + 2022-03-27 22:00:00: 0 + droop_min: + 2022-03-27 22:00:00: 4 + droop_max: + 2022-03-27 22:00:00: 12 + junction: + Blakstad: + loss_factor_1: 0.068 + loss_factor_2: 0.06817 + Fjerdingby_intake: + loss_factor_1: 0.05 + loss_factor_2: 0.05 + Vigrestad: + loss_factor_1: 0.017 + loss_factor_2: 0.001 + Holensfoss_junc: + junc_slack: 1 + loss_factor_1: 0.002 + loss_factor_2: 0.018 + Sandvika: + loss_factor_1: 0.00044 + loss_factor_2: 0.0001 + min_pressure: + 2022-03-27 22:00:00: 672 + Landet_intake: + junc_slack: 1 + loss_factor_1: 0.00208 + loss_factor_2: 0.0001 + Golebiowski_intake: + loss_factor_1: 0.05 + loss_factor_2: 0.05 + Lont_intake: + loss_factor_1: 0.00416 + loss_factor_2: 0.008 + Narvhus: + loss_factor_1: 0.00231 + loss_factor_2: 1e-05 + Gustad: + loss_factor_1: 0.0032 + loss_factor_2: 0.002 + w_k_Strand: + junc_slack: 1 + loss_factor_1: 0.00224 + loss_factor_2: 0.0022 + market: + Dayahead: + market_type: ENERGY + load: + 2022-03-27 22:00:00: 0 + max_buy: + 2022-03-27 22:00:00: 10000 + max_sale: + 2022-03-27 22:00:00: 10000 + buy_price: + 2022-03-27 22:00:00: 184.96 + 2022-03-27 23:00:00: 184.4 + 2022-03-28 00:00:00: 183.57 + 2022-03-28 01:00:00: 183.59 + 2022-03-28 02:00:00: 183.64 + 2022-03-28 03:00:00: 187.58 + 2022-03-28 04:00:00: 187.57 + 2022-03-28 05:00:00: 190.95 + 2022-03-28 06:00:00: 193.9 + 2022-03-28 07:00:00: 191.17 + 2022-03-28 08:00:00: 189.55 + 2022-03-28 09:00:00: 185.06 + 2022-03-28 10:00:00: 184.21 + 2022-03-28 11:00:00: 182.02 + 2022-03-28 12:00:00: 181.12 + 2022-03-28 13:00:00: 180.88 + 2022-03-28 14:00:00: 182.69 + 2022-03-28 15:00:00: 184.48 + 2022-03-28 16:00:00: 185.96 + 2022-03-28 17:00:00: 188.18 + 2022-03-28 18:00:00: 189.79 + 2022-03-28 19:00:00: 188.72 + 2022-03-28 20:00:00: 187.01 + 2022-03-28 21:00:00: 184.88 + 2022-03-28 22:00:00: 189.69 + 2022-03-28 23:00:00: 189.53 + 2022-03-29 00:00:00: 189.79 + 2022-03-29 01:00:00: 190.16 + 2022-03-29 02:00:00: 190.97 + 2022-03-29 03:00:00: 194.07 + 2022-03-29 04:00:00: 199.8 + 2022-03-29 05:00:00: 240.76 + 2022-03-29 06:00:00: 242.77 + 2022-03-29 07:00:00: 236.09 + 2022-03-29 08:00:00: 229.02 + 2022-03-29 09:00:00: 224.34 + 2022-03-29 10:00:00: 209.17 + 2022-03-29 11:00:00: 199.37 + 2022-03-29 12:00:00: 199.29 + 2022-03-29 13:00:00: 198.57 + 2022-03-29 14:00:00: 207.8 + 2022-03-29 15:00:00: 215.5 + 2022-03-29 16:00:00: 216.55 + 2022-03-29 17:00:00: 232.93 + 2022-03-29 18:00:00: 240.53 + 2022-03-29 19:00:00: 238.77 + 2022-03-29 20:00:00: 232.89 + 2022-03-29 21:00:00: 221.45 + 2022-03-29 22:00:00: 198.8 + 2022-03-29 23:00:00: 198.46 + 2022-03-30 00:00:00: 198.22 + 2022-03-30 01:00:00: 198.55 + 2022-03-30 02:00:00: 199.39 + 2022-03-30 03:00:00: 206.55 + 2022-03-30 04:00:00: 229.66 + 2022-03-30 05:00:00: 253.73 + 2022-03-30 06:00:00: 252.99 + 2022-03-30 07:00:00: 244.46 + 2022-03-30 08:00:00: 234.11 + 2022-03-30 09:00:00: 222.84 + 2022-03-30 10:00:00: 213.96 + 2022-03-30 11:00:00: 211.94 + 2022-03-30 12:00:00: 208.38 + 2022-03-30 13:00:00: 208.14 + 2022-03-30 14:00:00: 212.94 + 2022-03-30 15:00:00: 214.65 + 2022-03-30 16:00:00: 213.89 + 2022-03-30 17:00:00: 223.79 + 2022-03-30 18:00:00: 207.55 + 2022-03-30 19:00:00: 199.96 + 2022-03-30 20:00:00: 198.3 + 2022-03-30 21:00:00: 196.14 + 2022-03-30 22:00:00: 194.07 + 2022-03-30 23:00:00: 194.04 + 2022-03-31 00:00:00: 194.38 + 2022-03-31 01:00:00: 194.88 + 2022-03-31 02:00:00: 195.57 + 2022-03-31 03:00:00: 199.31 + 2022-03-31 04:00:00: 221.35 + 2022-03-31 05:00:00: 255.15 + 2022-03-31 06:00:00: 255 + 2022-03-31 07:00:00: 242.46 + 2022-03-31 08:00:00: 225.53 + 2022-03-31 09:00:00: 202.64 + 2022-03-31 10:00:00: 197.9 + 2022-03-31 11:00:00: 194.77 + 2022-03-31 12:00:00: 196.55 + 2022-03-31 13:00:00: 202.56 + 2022-03-31 14:00:00: 212.19 + 2022-03-31 15:00:00: 204.94 + 2022-03-31 16:00:00: 208.08 + 2022-03-31 17:00:00: 222.57 + 2022-03-31 18:00:00: 228.03 + 2022-03-31 19:00:00: 217.99 + 2022-03-31 20:00:00: 200.15 + 2022-03-31 21:00:00: 191.06 + sale_price: + 2022-03-27 22:00:00: 184.96 + 2022-03-27 23:00:00: 184.4 + 2022-03-28 00:00:00: 183.57 + 2022-03-28 01:00:00: 183.59 + 2022-03-28 02:00:00: 183.64 + 2022-03-28 03:00:00: 187.58 + 2022-03-28 04:00:00: 187.57 + 2022-03-28 05:00:00: 190.95 + 2022-03-28 06:00:00: 193.9 + 2022-03-28 07:00:00: 191.17 + 2022-03-28 08:00:00: 189.55 + 2022-03-28 09:00:00: 185.06 + 2022-03-28 10:00:00: 184.21 + 2022-03-28 11:00:00: 182.02 + 2022-03-28 12:00:00: 181.12 + 2022-03-28 13:00:00: 180.88 + 2022-03-28 14:00:00: 182.69 + 2022-03-28 15:00:00: 184.48 + 2022-03-28 16:00:00: 185.96 + 2022-03-28 17:00:00: 188.18 + 2022-03-28 18:00:00: 189.79 + 2022-03-28 19:00:00: 188.72 + 2022-03-28 20:00:00: 187.01 + 2022-03-28 21:00:00: 184.88 + 2022-03-28 22:00:00: 189.69 + 2022-03-28 23:00:00: 189.53 + 2022-03-29 00:00:00: 189.79 + 2022-03-29 01:00:00: 190.16 + 2022-03-29 02:00:00: 190.97 + 2022-03-29 03:00:00: 194.07 + 2022-03-29 04:00:00: 199.8 + 2022-03-29 05:00:00: 240.76 + 2022-03-29 06:00:00: 242.77 + 2022-03-29 07:00:00: 236.09 + 2022-03-29 08:00:00: 229.02 + 2022-03-29 09:00:00: 224.34 + 2022-03-29 10:00:00: 209.17 + 2022-03-29 11:00:00: 199.37 + 2022-03-29 12:00:00: 199.29 + 2022-03-29 13:00:00: 198.57 + 2022-03-29 14:00:00: 207.8 + 2022-03-29 15:00:00: 215.5 + 2022-03-29 16:00:00: 216.55 + 2022-03-29 17:00:00: 232.93 + 2022-03-29 18:00:00: 240.53 + 2022-03-29 19:00:00: 238.77 + 2022-03-29 20:00:00: 232.89 + 2022-03-29 21:00:00: 221.45 + 2022-03-29 22:00:00: 198.8 + 2022-03-29 23:00:00: 198.46 + 2022-03-30 00:00:00: 198.22 + 2022-03-30 01:00:00: 198.55 + 2022-03-30 02:00:00: 199.39 + 2022-03-30 03:00:00: 206.55 + 2022-03-30 04:00:00: 229.66 + 2022-03-30 05:00:00: 253.73 + 2022-03-30 06:00:00: 252.99 + 2022-03-30 07:00:00: 244.46 + 2022-03-30 08:00:00: 234.11 + 2022-03-30 09:00:00: 222.84 + 2022-03-30 10:00:00: 213.96 + 2022-03-30 11:00:00: 211.94 + 2022-03-30 12:00:00: 208.38 + 2022-03-30 13:00:00: 208.14 + 2022-03-30 14:00:00: 212.94 + 2022-03-30 15:00:00: 214.65 + 2022-03-30 16:00:00: 213.89 + 2022-03-30 17:00:00: 223.79 + 2022-03-30 18:00:00: 207.55 + 2022-03-30 19:00:00: 199.96 + 2022-03-30 20:00:00: 198.3 + 2022-03-30 21:00:00: 196.14 + 2022-03-30 22:00:00: 194.07 + 2022-03-30 23:00:00: 194.04 + 2022-03-31 00:00:00: 194.38 + 2022-03-31 01:00:00: 194.88 + 2022-03-31 02:00:00: 195.57 + 2022-03-31 03:00:00: 199.31 + 2022-03-31 04:00:00: 221.35 + 2022-03-31 05:00:00: 255.15 + 2022-03-31 06:00:00: 255 + 2022-03-31 07:00:00: 242.46 + 2022-03-31 08:00:00: 225.53 + 2022-03-31 09:00:00: 202.64 + 2022-03-31 10:00:00: 197.9 + 2022-03-31 11:00:00: 194.77 + 2022-03-31 12:00:00: 196.55 + 2022-03-31 13:00:00: 202.56 + 2022-03-31 14:00:00: 212.19 + 2022-03-31 15:00:00: 204.94 + 2022-03-31 16:00:00: 208.08 + 2022-03-31 17:00:00: 222.57 + 2022-03-31 18:00:00: 228.03 + 2022-03-31 19:00:00: 217.99 + 2022-03-31 20:00:00: 200.15 + 2022-03-31 21:00:00: 191.06 + plant: + Holen: + prod_area: + 2022-03-27 22:00:00: 1 + outlet_line: 628 + main_loss: + - 0.0339 + penstock_loss: + - 0.0113 + mip_flag: + 2022-03-27 22:00:00: 1 + max_p_constr: + 2022-03-27 22:00:00: 42 + max_q_constr: + 2022-03-27 22:00:00: 1000 + production_schedule: + 2022-03-27 22:00:00: 37 + production_schedule_flag: + 2022-03-27 22:00:00: 1 + 2022-03-28 22:00:00: 0 + Lund: + prod_area: + 2022-03-27 22:00:00: 1 + outlet_line: 1240 + main_loss: + - 0.002 + penstock_loss: + - 0.022 + mip_flag: + 2022-03-27 22:00:00: 0 + max_q_constr: + 2022-03-27 22:00:00: 1000 + production_schedule: + 2022-03-27 22:00:00: 0.7 + 2022-03-27 23:00:00: 0.7 + 2022-03-28 00:00:00: 0.7 + 2022-03-28 02:00:00: 0.7 + 2022-03-28 03:00:00: 0.7 + 2022-03-28 04:00:00: 0.7 + 2022-03-28 06:00:00: 0.7 + 2022-03-28 07:00:00: 0.7 + 2022-03-28 08:00:00: 0.7 + 2022-03-28 09:00:00: 0.7 + 2022-03-28 10:00:00: 0.7 + 2022-03-28 11:00:00: 0.7 + 2022-03-28 12:00:00: 0.7 + 2022-03-28 14:00:00: 0.7 + 2022-03-28 15:00:00: 0.7 + 2022-03-28 17:00:00: 0.7 + 2022-03-28 18:00:00: 0.7 + 2022-03-28 21:00:00: 0.7 + 2022-03-28 22:00:00: 0.7 + 2022-03-29 00:00:00: 0.7 + 2022-03-29 01:00:00: 0.7 + 2022-03-29 05:00:00: 0.7 + 2022-03-29 06:00:00: 0.7 + 2022-03-29 08:00:00: 0.7 + 2022-03-29 09:00:00: 0.7 + 2022-03-29 11:00:00: 0.7 + 2022-03-29 12:00:00: 0.7 + 2022-03-29 13:00:00: 0.7 + 2022-03-29 15:00:00: 0.7 + 2022-03-29 16:00:00: 0.7 + 2022-03-29 18:00:00: 0.7 + 2022-03-29 19:00:00: 0.7 + 2022-03-29 20:00:00: 0.7 + 2022-03-29 21:00:00: 0.7 + 2022-03-29 22:00:00: 0.7 + 2022-03-29 23:00:00: 0.7 + 2022-03-30 00:00:00: 0.7 + 2022-03-30 02:00:00: 0.7 + 2022-03-30 03:00:00: 0.7 + 2022-03-30 04:00:00: 0.7 + 2022-03-30 06:00:00: 0.7 + 2022-03-30 07:00:00: 0.7 + 2022-03-30 09:00:00: 0.7 + 2022-03-30 10:00:00: 0.7 + 2022-03-30 13:00:00: 0.7 + 2022-03-30 14:00:00: 0.7 + 2022-03-30 17:00:00: 0.7 + 2022-03-30 18:00:00: 0.7 + 2022-03-30 21:00:00: 0.7 + 2022-03-30 22:00:00: 0.7 + 2022-03-31 00:00:00: 0.7 + 2022-03-31 01:00:00: 0.7 + 2022-03-31 03:00:00: 0.7 + 2022-03-31 04:00:00: 0.7 + 2022-03-31 05:00:00: 0.7 + 2022-03-31 07:00:00: 0.7 + 2022-03-31 08:00:00: 0.7 + 2022-03-31 09:00:00: 0.7 + 2022-03-31 11:00:00: 0.7 + 2022-03-31 12:00:00: 0.7 + 2022-03-31 13:00:00: 0.7 + 2022-03-31 15:00:00: 0.7 + 2022-03-31 16:00:00: 0.7 + 2022-03-31 18:00:00: 0.7 + 2022-03-31 19:00:00: 0.7 + 2022-03-31 20:00:00: 0.7 + production_schedule_flag: + 2022-03-27 22:00:00: 1 + 2022-03-28 22:00:00: 0 + Lien_krv: + prod_area: + 2022-03-27 22:00:00: 1 + outlet_line: 1030 + main_loss: + - 0.8 + penstock_loss: + - 0 + mip_flag: + 2022-03-27 22:00:00: 1 + max_q_constr: + 2022-03-27 22:00:00: 2.7 + 2022-03-27 23:00:00: 2.7 + 2022-03-28 00:00:00: 2.7 + 2022-03-28 02:00:00: 2.7 + 2022-03-28 03:00:00: 2.7 + 2022-03-28 04:00:00: 2.7 + 2022-03-28 06:00:00: 2.7 + 2022-03-28 07:00:00: 2.7 + 2022-03-28 08:00:00: 2.7 + 2022-03-28 09:00:00: 2.7 + 2022-03-28 10:00:00: 2.7 + 2022-03-28 11:00:00: 2.7 + 2022-03-28 12:00:00: 2.7 + 2022-03-28 14:00:00: 2.7 + 2022-03-28 15:00:00: 2.7 + 2022-03-28 17:00:00: 2.7 + 2022-03-28 18:00:00: 2.7 + 2022-03-28 21:00:00: 2.7 + 2022-03-28 22:00:00: 2.7 + 2022-03-29 00:00:00: 2.7 + 2022-03-29 01:00:00: 2.7 + 2022-03-29 05:00:00: 2.7 + 2022-03-29 06:00:00: 2.7 + 2022-03-29 08:00:00: 2.7 + 2022-03-29 09:00:00: 2.7 + 2022-03-29 11:00:00: 2.7 + 2022-03-29 12:00:00: 2.7 + 2022-03-29 13:00:00: 2.7 + 2022-03-29 15:00:00: 2.7 + 2022-03-29 16:00:00: 2.7 + 2022-03-29 18:00:00: 2.7 + 2022-03-29 19:00:00: 2.7 + 2022-03-29 20:00:00: 2.7 + 2022-03-29 21:00:00: 2.7 + 2022-03-29 22:00:00: 2.7 + 2022-03-29 23:00:00: 2.7 + 2022-03-30 00:00:00: 2.7 + 2022-03-30 02:00:00: 2.7 + 2022-03-30 03:00:00: 2.7 + 2022-03-30 04:00:00: 2.7 + 2022-03-30 06:00:00: 2.7 + 2022-03-30 07:00:00: 2.7 + 2022-03-30 09:00:00: 2.7 + 2022-03-30 10:00:00: 2.7 + 2022-03-30 13:00:00: 2.7 + 2022-03-30 14:00:00: 2.7 + 2022-03-30 17:00:00: 2.7 + 2022-03-30 18:00:00: 2.7 + 2022-03-30 21:00:00: 2.7 + 2022-03-30 22:00:00: 2.7 + 2022-03-31 00:00:00: 2.7 + 2022-03-31 01:00:00: 2.7 + 2022-03-31 03:00:00: 2.7 + 2022-03-31 04:00:00: 2.7 + 2022-03-31 05:00:00: 2.7 + 2022-03-31 07:00:00: 2.7 + 2022-03-31 08:00:00: 2.7 + 2022-03-31 09:00:00: 2.7 + 2022-03-31 11:00:00: 2.7 + 2022-03-31 12:00:00: 2.7 + 2022-03-31 13:00:00: 2.7 + 2022-03-31 15:00:00: 2.7 + 2022-03-31 16:00:00: 2.7 + 2022-03-31 18:00:00: 2.7 + 2022-03-31 19:00:00: 2.7 + 2022-03-31 20:00:00: 2.7 + production_schedule: + 2022-03-27 22:00:00: 0 + production_schedule_flag: + 2022-03-27 22:00:00: 1 + 2022-03-28 22:00:00: 0 + Landet: + prod_area: + 2022-03-27 22:00:00: 1 + outlet_line: 670 + main_loss: + - 0.02007 + penstock_loss: + - 0 + mip_flag: + 2022-03-27 22:00:00: 1 + max_p_constr: + 2022-03-27 22:00:00: 48 + max_q_constr: + 2022-03-27 22:00:00: 1000 + production_schedule: + 2022-03-27 22:00:00: 0 + production_schedule_flag: + 2022-03-27 22:00:00: 1 + 2022-03-28 22:00:00: 0 + Dalby: + prod_area: + 2022-03-27 22:00:00: 1 + outlet_line: 365 + main_loss: + - 0.002105 + penstock_loss: + - 0.0006 + mip_flag: + 2022-03-27 22:00:00: 1 + max_q_constr: + 2022-03-27 22:00:00: 1000 + production_schedule: + 2022-03-27 22:00:00: 0 + production_schedule_flag: + 2022-03-27 22:00:00: 1 + 2022-03-28 22:00:00: 0 + Rull1: + prod_area: + 2022-03-27 22:00:00: 1 + outlet_line: 68 + main_loss: + - 0.00107 + penstock_loss: + - 0.0007 + - 0.0005 + mip_flag: + 2022-03-27 22:00:00: 1 + max_p_constr: + 2022-03-27 22:00:00: 184.999 + 2022-03-27 23:00:00: 184.999 + 2022-03-28 00:00:00: 184.999 + 2022-03-28 01:00:00: 184.999 + 2022-03-28 02:00:00: 184.999 + 2022-03-28 03:00:00: 184.999 + 2022-03-28 06:00:00: 184.999 + 2022-03-28 07:00:00: 184.999 + 2022-03-28 08:00:00: 184.999 + 2022-03-28 20:00:00: 184.999 + 2022-03-28 21:00:00: 184.999 + 2022-03-28 22:00:00: 184.999 + 2022-03-29 01:00:00: 184.999 + 2022-03-29 02:00:00: 184.999 + 2022-03-29 03:00:00: 184.999 + 2022-03-29 04:00:00: 184.999 + 2022-03-29 05:00:00: 184.999 + 2022-03-29 07:00:00: 184.999 + 2022-03-29 08:00:00: 184.999 + 2022-03-29 09:00:00: 184.999 + 2022-03-29 10:00:00: 184.999 + 2022-03-29 11:00:00: 184.999 + 2022-03-29 14:00:00: 184.999 + 2022-03-29 15:00:00: 184.999 + 2022-03-29 16:00:00: 184.999 + 2022-03-30 04:00:00: 184.999 + 2022-03-30 05:00:00: 184.999 + 2022-03-30 06:00:00: 184.999 + 2022-03-30 09:00:00: 184.999 + 2022-03-30 10:00:00: 184.999 + 2022-03-30 11:00:00: 184.999 + 2022-03-30 12:00:00: 184.999 + 2022-03-30 13:00:00: 184.999 + 2022-03-30 15:00:00: 184.999 + 2022-03-30 16:00:00: 184.999 + 2022-03-30 17:00:00: 184.999 + 2022-03-30 18:00:00: 184.999 + 2022-03-30 19:00:00: 184.999 + 2022-03-30 22:00:00: 184.999 + 2022-03-30 23:00:00: 184.999 + 2022-03-31 00:00:00: 184.999 + 2022-03-31 12:00:00: 184.999 + 2022-03-31 13:00:00: 184.999 + 2022-03-31 14:00:00: 184.999 + 2022-03-31 17:00:00: 184.999 + 2022-03-31 18:00:00: 184.999 + 2022-03-31 19:00:00: 184.999 + 2022-03-31 20:00:00: 184.999 + 2022-03-31 21:00:00: 184.999 + max_q_constr: + 2022-03-27 22:00:00: 1000 + production_schedule: + 2022-03-27 22:00:00: 45 + 2022-03-28 03:00:00: 45.6 + 2022-03-28 04:00:00: 45 + 2022-03-28 05:00:00: 50 + 2022-03-28 06:00:00: 51.7 + 2022-03-28 07:00:00: 90 + 2022-03-28 08:00:00: 45 + production_schedule_flag: + 2022-03-27 22:00:00: 1 + 2022-03-28 22:00:00: 0 + Rull2: + prod_area: + 2022-03-27 22:00:00: 1 + outlet_line: 68 + main_loss: + - 0.0225 + penstock_loss: + - 0.0018 + - 0.0041 + mip_flag: + 2022-03-27 22:00:00: 1 + max_q_constr: + 2022-03-27 22:00:00: 1000 + production_schedule: + 2022-03-27 22:00:00: 0 + 2022-03-28 04:00:00: 63.9 + 2022-03-28 05:00:00: 65 + 2022-03-28 07:00:00: 70 + 2022-03-28 08:00:00: 65 + 2022-03-28 09:00:00: 60.9 + 2022-03-28 10:00:00: 60 + 2022-03-28 11:00:00: 65 + 2022-03-28 12:00:00: 60 + 2022-03-28 16:00:00: 64.9 + 2022-03-28 17:00:00: 62.7 + 2022-03-28 18:00:00: 60.1 + 2022-03-28 19:00:00: 61.5 + 2022-03-28 20:00:00: 60.6 + 2022-03-28 21:00:00: 47 + production_schedule_flag: + 2022-03-27 22:00:00: 1 + 2022-03-28 22:00:00: 0 + Scott: + prod_area: + 2022-03-27 22:00:00: 1 + outlet_line: 1013 + main_loss: + - 0.003399 + penstock_loss: + - 0.022 + mip_flag: + 2022-03-27 22:00:00: 1 + max_q_constr: + 2022-03-27 22:00:00: 1000 + production_schedule: + 2022-03-27 22:00:00: 0 + production_schedule_flag: + 2022-03-27 22:00:00: 1 + 2022-03-28 22:00:00: 0 + Strand_krv: + prod_area: + 2022-03-27 22:00:00: 1 + outlet_line: 753.06 + main_loss: + - 0 + penstock_loss: + - 0.3125 + mip_flag: + 2022-03-27 22:00:00: 0 + max_q_constr: + 2022-03-27 22:00:00: 1000 + production_schedule: + 2022-03-27 22:00:00: 0 + production_schedule_flag: + 2022-03-27 22:00:00: 1 + 2022-03-28 22:00:00: 0 + reservoir: + Hagen: + max_vol: 25.7 + lrl: 893 + hrl: 908 + vol_head: + ref: 0 + x: + - 0 + - 0.7 + - 1.6 + - 2.5 + - 3.7 + - 5 + - 6.6 + - 8.3 + - 10 + - 12 + - 14 + - 16.2 + - 18.5 + - 20.8 + - 25.7 + - 31 + y: + - 893 + - 894 + - 895 + - 896 + - 897 + - 898 + - 899 + - 900 + - 901 + - 902 + - 903 + - 904 + - 905 + - 906 + - 908 + - 910 + start_head: 894.19006347656 + inflow: + 2022-03-27 22:00:00: 0.67332370473701 + 2022-03-27 23:00:00: 0.47606569679415 + 2022-03-28 00:00:00: 0.48009839123925 + 2022-03-28 01:00:00: 0.54655039779455 + 2022-03-28 02:00:00: 0.55413335400588 + 2022-03-28 03:00:00: 0.56228931915567 + 2022-03-28 04:00:00: 0.56986526002992 + 2022-03-28 05:00:00: 0.5779471269263 + 2022-03-28 06:00:00: 0.58704549742201 + 2022-03-28 07:00:00: 0.5586649720587 + 2022-03-28 08:00:00: 0.56078901444729 + 2022-03-28 09:00:00: 0.56031862158249 + 2022-03-28 10:00:00: 0.55814379845258 + 2022-03-28 11:00:00: 0.55505639788557 + 2022-03-28 12:00:00: 0.55169855304206 + 2022-03-28 13:00:00: 0.53988567852215 + 2022-03-28 14:00:00: 0.53648002635795 + 2022-03-28 15:00:00: 0.53308568795002 + 2022-03-28 16:00:00: 0.52970270267423 + 2022-03-28 17:00:00: 0.52647062560354 + 2022-03-28 18:00:00: 0.52326732406785 + 2022-03-28 19:00:00: 0.51792386168112 + 2022-03-28 20:00:00: 0.51478640286295 + 2022-03-28 21:00:00: 0.51165909469801 + 2022-03-28 22:00:00: 0.50854197794876 + 2022-03-28 23:00:00: 0.50543509218503 + 2022-03-29 00:00:00: 0.50233249604799 + 2022-03-29 01:00:00: 0.49949556831671 + 2022-03-29 02:00:00: 0.49638855985636 + 2022-03-29 03:00:00: 0.49329169788741 + 2022-03-29 04:00:00: 0.49020502145043 + 2022-03-29 05:00:00: 0.48701082915185 + 2022-03-29 06:00:00: 0.48379207518627 + 2022-03-29 07:00:00: 0.47641775056538 + 2022-03-29 08:00:00: 0.47333397491318 + 2022-03-29 09:00:00: 0.47026062886684 + 2022-03-29 10:00:00: 0.46722834881036 + 2022-03-29 11:00:00: 0.46421105995558 + 2022-03-29 12:00:00: 0.46120448659607 + 2022-03-29 13:00:00: 0.46106178053027 + 2022-03-29 14:00:00: 0.45799350880324 + 2022-03-29 15:00:00: 0.45493625380649 + 2022-03-29 16:00:00: 0.45189003934826 + 2022-03-29 17:00:00: 0.44885488821822 + 2022-03-29 18:00:00: 0.44583082219992 + 2022-03-29 19:00:00: 0.44227281263331 + 2022-03-29 20:00:00: 0.43923720542601 + 2022-03-29 21:00:00: 0.43621328043289 + 2022-03-29 22:00:00: 0.43320104935926 + 2022-03-29 23:00:00: 0.43020052301743 + 2022-03-30 00:00:00: 0.42721171133847 + 2022-03-30 01:00:00: 0.42461300276664 + 2022-03-30 02:00:00: 0.42170161971117 + 2022-03-30 03:00:00: 0.41880201448073 + 2022-03-30 04:00:00: 0.41591418964991 + 2022-03-30 05:00:00: 0.41303814702283 + 2022-03-30 06:00:00: 0.41017388764398 + 2022-03-30 07:00:00: 0.40511686095407 + 2022-03-30 08:00:00: 0.40221528341552 + 2022-03-30 09:00:00: 0.39932569392481 + 2022-03-30 10:00:00: 0.39644809116856 + 2022-03-30 11:00:00: 0.39358247310581 + 2022-03-30 12:00:00: 0.39072883697867 + 2022-03-30 13:00:00: 0.38788717932265 + 2022-03-30 14:00:00: 0.38507949923867 + 2022-03-30 15:00:00: 0.38229211635844 + 2022-03-30 16:00:00: 0.37951616236354 + 2022-03-30 17:00:00: 0.37675163761838 + 2022-03-30 18:00:00: 0.37399854177029 + 2022-03-30 19:00:00: 0.371088500839 + 2022-03-30 20:00:00: 0.36833053828023 + 2022-03-30 21:00:00: 0.36558450226622 + 2022-03-30 22:00:00: 0.36285038342927 + 2022-03-30 23:00:00: 0.36012817179476 + 2022-03-31 00:00:00: 0.35741785679063 + 2022-03-31 01:00:00: 0.35473088623867 + 2022-03-31 02:00:00: 0.35204441436955 + 2022-03-31 03:00:00: 0.34936980367122 + 2022-03-31 04:00:00: 0.34670704127355 + 2022-03-31 05:00:00: 0.34405611375507 + 2022-03-31 06:00:00: 0.34141700715193 + 2022-03-31 07:00:00: 0.33879965658789 + 2022-03-31 08:00:00: 0.33622587889437 + 2022-03-31 09:00:00: 0.33366312427823 + 2022-03-31 10:00:00: 0.33111138613739 + 2022-03-31 11:00:00: 0.32857065727828 + 2022-03-31 12:00:00: 0.32604092992488 + 2022-03-31 13:00:00: 0.32369249528368 + 2022-03-31 14:00:00: 0.32118600119732 + 2022-03-31 15:00:00: 0.31869047818953 + 2022-03-31 16:00:00: 0.31620591622145 + 2022-03-31 17:00:00: 0.31373230471624 + 2022-03-31 18:00:00: 0.31227971856275 + 2022-03-31 19:00:00: 0.31077467208523 + 2022-03-31 20:00:00: 0.31051332056606 + 2022-03-31 21:00:00: 0.31033794986364 + flow_descr: + ref: 0 + x: + - 908 + - 908.304 + - 908.76 + - 909.52 + y: + - 0 + - 8.833 + - 33.319 + - 100 + energy_value_input: 160 + Hovden: + max_vol: 16.4 + lrl: 1045 + hrl: 1100.8 + vol_head: + ref: 0 + x: + - 0 + - 0.333 + - 0.666 + - 1.333 + - 1.8 + - 2.3 + - 10.19 + - 10.99 + - 11.49 + - 12.69 + - 13.29 + - 16.4 + - 16.84 + - 17.54 + y: + - 1045 + - 1047 + - 1049 + - 1053 + - 1055 + - 1057 + - 1085.1 + - 1087.6 + - 1089.1 + - 1092.1 + - 1093.6 + - 1100.8 + - 1101.5 + - 1102.1 + start_vol: 7.6689882244365 + inflow: + 2022-03-27 22:00:00: 0.073706337973454 + 2022-03-27 23:00:00: 0.07525119338433 + 2022-03-28 00:00:00: 0.0699703180866 + 2022-03-28 01:00:00: 0.076029464297907 + 2022-03-28 02:00:00: 0.096354266928488 + 2022-03-28 03:00:00: 0.12726217411854 + 2022-03-28 04:00:00: 0.13354297435792 + 2022-03-28 05:00:00: 0.10641940147939 + 2022-03-28 06:00:00: 0.076702832119507 + 2022-03-28 07:00:00: 0.070355337020372 + 2022-03-28 08:00:00: 0.070227484645963 + 2022-03-28 09:00:00: 0.070099843274689 + 2022-03-28 10:00:00: 0.069972412642649 + 2022-03-28 11:00:00: 0.069845192485921 + 2022-03-28 12:00:00: 0.069718182540558 + 2022-03-28 13:00:00: 0.069591382542593 + 2022-03-28 14:00:00: 0.069464792228042 + 2022-03-28 15:00:00: 0.069338411332902 + 2022-03-28 16:00:00: 0.069212239593157 + 2022-03-28 17:00:00: 0.069086276744778 + 2022-03-28 18:00:00: 0.068960522523724 + 2022-03-28 19:00:00: 0.068834976665945 + 2022-03-28 20:00:00: 0.068709638907384 + 2022-03-28 21:00:00: 0.068584508983978 + 2022-03-28 22:00:00: 0.06845958663166 + 2022-03-28 23:00:00: 0.06833487158636 + 2022-03-29 00:00:00: 0.068210363584009 + 2022-03-29 01:00:00: 0.06808606236054 + 2022-03-29 02:00:00: 0.067961967651887 + 2022-03-29 03:00:00: 0.06783807919399 + 2022-03-29 04:00:00: 0.067714396722796 + 2022-03-29 05:00:00: 0.067590919974261 + 2022-03-29 06:00:00: 0.067467648684349 + 2022-03-29 07:00:00: 0.067344582589038 + 2022-03-29 08:00:00: 0.067221721424318 + 2022-03-29 09:00:00: 0.067099064926196 + 2022-03-29 10:00:00: 0.066976612830693 + 2022-03-29 11:00:00: 0.066854364873852 + 2022-03-29 12:00:00: 0.066732320791735 + 2022-03-29 13:00:00: 0.066610480320424 + 2022-03-29 14:00:00: 0.066488843196028 + 2022-03-29 15:00:00: 0.066367409154678 + 2022-03-29 16:00:00: 0.066246177932535 + 2022-03-29 17:00:00: 0.066125149265785 + 2022-03-29 18:00:00: 0.066004322890648 + 2022-03-29 19:00:00: 0.065883698543372 + 2022-03-29 20:00:00: 0.065763275960242 + 2022-03-29 21:00:00: 0.065643054877574 + 2022-03-29 22:00:00: 0.065523035031724 + 2022-03-29 23:00:00: 0.065403216159085 + 2022-03-30 00:00:00: 0.065283597996088 + 2022-03-30 01:00:00: 0.065164180279208 + 2022-03-30 02:00:00: 0.06504496274496 + 2022-03-30 03:00:00: 0.064925945129906 + 2022-03-30 04:00:00: 0.064807127170652 + 2022-03-30 05:00:00: 0.064688508603852 + 2022-03-30 06:00:00: 0.064570089166209 + 2022-03-30 07:00:00: 0.064451868594476 + 2022-03-30 08:00:00: 0.06433384662546 + 2022-03-30 09:00:00: 0.064216022996018 + 2022-03-30 10:00:00: 0.064098397443065 + 2022-03-30 11:00:00: 0.06398096970357 + 2022-03-30 12:00:00: 0.063863739514562 + 2022-03-30 13:00:00: 0.063746706613127 + 2022-03-30 14:00:00: 0.063629870736416 + 2022-03-30 15:00:00: 0.063513231621637 + 2022-03-30 16:00:00: 0.063396789006065 + 2022-03-30 17:00:00: 0.063280542627039 + 2022-03-30 18:00:00: 0.063164492221966 + 2022-03-30 19:00:00: 0.063048637528319 + 2022-03-30 20:00:00: 0.062932978283642 + 2022-03-30 21:00:00: 0.062817514225548 + 2022-03-30 22:00:00: 0.062702245091725 + 2022-03-30 23:00:00: 0.062587170619932 + 2022-03-31 00:00:00: 0.062472290548004 + 2022-03-31 01:00:00: 0.062357604613852 + 2022-03-31 02:00:00: 0.062243112555466 + 2022-03-31 03:00:00: 0.062128814110914 + 2022-03-31 04:00:00: 0.062014709018344 + 2022-03-31 05:00:00: 0.061900797015986 + 2022-03-31 06:00:00: 0.061787077842154 + 2022-03-31 07:00:00: 0.061673551235246 + 2022-03-31 08:00:00: 0.061560216933746 + 2022-03-31 09:00:00: 0.061447074676224 + 2022-03-31 10:00:00: 0.061334124201339 + 2022-03-31 11:00:00: 0.061221365247841 + 2022-03-31 12:00:00: 0.061108797554569 + 2022-03-31 13:00:00: 0.060996420860454 + 2022-03-31 14:00:00: 0.060884234904524 + 2022-03-31 15:00:00: 0.060772239425899 + 2022-03-31 16:00:00: 0.060660434163794 + 2022-03-31 17:00:00: 0.060548818857524 + 2022-03-31 18:00:00: 0.060437393246501 + 2022-03-31 19:00:00: 0.060326157070238 + 2022-03-31 20:00:00: 0.060215110068349 + 2022-03-31 21:00:00: 0.060104251980548 + flow_descr: + ref: 0 + x: + - 1100.8 + - 1101.5 + - 1102.1 + y: + - 0 + - 7 + - 23 + energy_value_input: 160 + Frosta: + max_vol: 96 + lrl: 1048 + hrl: 1058 + vol_head: + ref: 0 + x: + - 0 + - 4.1 + - 8.4 + - 12.8 + - 17.3 + - 21.8 + - 26.3 + - 30.8 + - 35.4 + - 44.9 + - 54.4 + - 64.5 + - 74.7 + - 85 + - 96 + - 119.9 + y: + - 1048 + - 1048.5 + - 1049 + - 1049.5 + - 1050 + - 1050.5 + - 1051 + - 1051.5 + - 1052 + - 1053 + - 1054 + - 1055 + - 1056 + - 1057 + - 1058 + - 1059.98999 + start_head: 1048.7287109375 + inflow: + 2022-03-27 22:00:00: 0.44436747043865 + 2022-03-27 23:00:00: 0.46211391164619 + 2022-03-28 00:00:00: 0.45554459332386 + 2022-03-28 01:00:00: 0.46033368161024 + 2022-03-28 02:00:00: 0.68921019358173 + 2022-03-28 03:00:00: 0.96933946896525 + 2022-03-28 04:00:00: 1.1832916957245 + 2022-03-28 05:00:00: 0.86666024319657 + 2022-03-28 06:00:00: 0.39783075563804 + 2022-03-28 07:00:00: 0.396802767799 + 2022-03-28 08:00:00: 0.39336699101543 + 2022-03-28 09:00:00: 0.38970442602635 + 2022-03-28 10:00:00: 0.38606369095592 + 2022-03-28 11:00:00: 0.38244467542526 + 2022-03-28 12:00:00: 0.37884726942515 + 2022-03-28 13:00:00: 0.3752713633175 + 2022-03-28 14:00:00: 0.37171684783661 + 2022-03-28 15:00:00: 0.36818361409046 + 2022-03-28 16:00:00: 0.36467155356199 + 2022-03-28 17:00:00: 0.36118055811021 + 2022-03-28 18:00:00: 0.35771051997141 + 2022-03-28 19:00:00: 0.35736910544587 + 2022-03-28 20:00:00: 0.35707915853959 + 2022-03-28 21:00:00: 0.35678944033275 + 2022-03-28 22:00:00: 0.35649995065585 + 2022-03-28 23:00:00: 0.35621068933953 + 2022-03-29 00:00:00: 0.35592165621452 + 2022-03-29 01:00:00: 0.35563285111167 + 2022-03-29 02:00:00: 0.35534427386191 + 2022-03-29 03:00:00: 0.3550559242963 + 2022-03-29 04:00:00: 0.354767802246 + 2022-03-29 05:00:00: 0.35447990754229 + 2022-03-29 06:00:00: 0.35419224001653 + 2022-03-29 07:00:00: 0.35390479950021 + 2022-03-29 08:00:00: 0.35361758582491 + 2022-03-29 09:00:00: 0.35333059882234 + 2022-03-29 10:00:00: 0.35304383832429 + 2022-03-29 11:00:00: 0.35275730416268 + 2022-03-29 12:00:00: 0.35247099616951 + 2022-03-29 13:00:00: 0.35218491417692 + 2022-03-29 14:00:00: 0.35189905801713 + 2022-03-29 15:00:00: 0.35161342752247 + 2022-03-29 16:00:00: 0.35132802252538 + 2022-03-29 17:00:00: 0.35104284285843 + 2022-03-29 18:00:00: 0.35075788835425 + 2022-03-29 19:00:00: 0.35047315884562 + 2022-03-29 20:00:00: 0.35018865416539 + 2022-03-29 21:00:00: 0.34990437414655 + 2022-03-29 22:00:00: 0.34962031862217 + 2022-03-29 23:00:00: 0.34933648742545 + 2022-03-30 00:00:00: 0.34905288038966 + 2022-03-30 01:00:00: 0.34876949734822 + 2022-03-30 02:00:00: 0.34848633813463 + 2022-03-30 03:00:00: 0.3482034025825 + 2022-03-30 04:00:00: 0.34792069052554 + 2022-03-30 05:00:00: 0.34763820179758 + 2022-03-30 06:00:00: 0.34735593623256 + 2022-03-30 07:00:00: 0.34707389366449 + 2022-03-30 08:00:00: 0.34679207392754 + 2022-03-30 09:00:00: 0.34651047685594 + 2022-03-30 10:00:00: 0.34622910228404 + 2022-03-30 11:00:00: 0.34594795004632 + 2022-03-30 12:00:00: 0.34566701997732 + 2022-03-30 13:00:00: 0.34538631191173 + 2022-03-30 14:00:00: 0.34510582568432 + 2022-03-30 15:00:00: 0.34482556112996 + 2022-03-30 16:00:00: 0.34454551808366 + 2022-03-30 17:00:00: 0.34426569638049 + 2022-03-30 18:00:00: 0.34398609585567 + 2022-03-30 19:00:00: 0.3437067163445 + 2022-03-30 20:00:00: 0.34342755768238 + 2022-03-30 21:00:00: 0.34314861970483 + 2022-03-30 22:00:00: 0.34286990224747 + 2022-03-30 23:00:00: 0.34259140514603 + 2022-03-31 00:00:00: 0.34231312823634 + 2022-03-31 01:00:00: 0.34203507135434 + 2022-03-31 02:00:00: 0.34175723433606 + 2022-03-31 03:00:00: 0.34147961701766 + 2022-03-31 04:00:00: 0.3412022192354 + 2022-03-31 05:00:00: 0.34092504082562 + 2022-03-31 06:00:00: 0.34064808162478 + 2022-03-31 07:00:00: 0.34037134146947 + 2022-03-31 08:00:00: 0.34009482019635 + 2022-03-31 09:00:00: 0.3398185176422 + 2022-03-31 10:00:00: 0.3395424336439 + 2022-03-31 11:00:00: 0.33926656803844 + 2022-03-31 12:00:00: 0.33899092066292 + 2022-03-31 13:00:00: 0.33871549135453 + 2022-03-31 14:00:00: 0.33844027995057 + 2022-03-31 15:00:00: 0.33816528628845 + 2022-03-31 16:00:00: 0.33789051020569 + 2022-03-31 17:00:00: 0.3376159515399 + 2022-03-31 18:00:00: 0.3373416101288 + 2022-03-31 19:00:00: 0.33706748581022 + 2022-03-31 20:00:00: 0.33679357842209 + 2022-03-31 21:00:00: 0.33651988780244 + flow_descr: + ref: 0 + x: + - 1058 + - 1058.0802 + - 1058.2005 + - 1058.401 + y: + - 0.001 + - 5.416 + - 21.748 + - 58.5 + energy_value_input: 160 + Varhaug: + max_vol: 16 + lrl: 1285 + hrl: 1295 + vol_head: + ref: 0 + x: + - 0 + - 0.7 + - 1.4 + - 2.1 + - 2.9 + - 3.7 + - 4.5 + - 5.3 + - 6.1 + - 7.7 + - 9.3 + - 10.9 + - 12.5 + - 14.1 + - 16 + - 17.9 + y: + - 1285 + - 1285.5 + - 1286 + - 1286.5 + - 1287 + - 1287.5 + - 1288 + - 1288.5 + - 1289 + - 1290 + - 1291 + - 1292 + - 1293 + - 1294 + - 1295 + - 1296 + start_head: 1288.0076237227 + inflow: + 2022-03-27 22:00:00: 0.044936036336493 + 2022-03-27 23:00:00: 0.046730620278828 + 2022-03-28 00:00:00: 0.046066307190054 + 2022-03-28 01:00:00: 0.046550597016766 + 2022-03-28 02:00:00: 0.069695412834107 + 2022-03-28 03:00:00: 0.098023092367272 + 2022-03-28 04:00:00: 0.1196587108036 + 2022-03-28 05:00:00: 0.087639799873811 + 2022-03-28 06:00:00: 0.040230076412836 + 2022-03-28 07:00:00: 0.040126122586416 + 2022-03-28 08:00:00: 0.039778684484707 + 2022-03-28 09:00:00: 0.039408312744237 + 2022-03-28 10:00:00: 0.039040148523632 + 2022-03-28 11:00:00: 0.038674180660981 + 2022-03-28 12:00:00: 0.038310398031757 + 2022-03-28 13:00:00: 0.037948789548961 + 2022-03-28 14:00:00: 0.037589344163252 + 2022-03-28 15:00:00: 0.037232050863081 + 2022-03-28 16:00:00: 0.036876898674808 + 2022-03-28 17:00:00: 0.03652387666283 + 2022-03-28 18:00:00: 0.036172973929693 + 2022-03-28 19:00:00: 0.036138448865313 + 2022-03-28 20:00:00: 0.036109128391644 + 2022-03-28 21:00:00: 0.036079831044884 + 2022-03-28 22:00:00: 0.036050556807895 + 2022-03-28 23:00:00: 0.036021305663548 + 2022-03-29 00:00:00: 0.035992077594727 + 2022-03-29 01:00:00: 0.035962872584326 + 2022-03-29 02:00:00: 0.035933690615249 + 2022-03-29 03:00:00: 0.035904531670412 + 2022-03-29 04:00:00: 0.035875395732742 + 2022-03-29 05:00:00: 0.035846282785175 + 2022-03-29 06:00:00: 0.03581719281066 + 2022-03-29 07:00:00: 0.035788125792156 + 2022-03-29 08:00:00: 0.035759081712632 + 2022-03-29 09:00:00: 0.035730060555068 + 2022-03-29 10:00:00: 0.035701062302457 + 2022-03-29 11:00:00: 0.035672086937799 + 2022-03-29 12:00:00: 0.035643134444108 + 2022-03-29 13:00:00: 0.035614204804408 + 2022-03-29 14:00:00: 0.035585298001732 + 2022-03-29 15:00:00: 0.035556414019126 + 2022-03-29 16:00:00: 0.035527552839646 + 2022-03-29 17:00:00: 0.035498714446358 + 2022-03-29 18:00:00: 0.03546989882234 + 2022-03-29 19:00:00: 0.03544110595068 + 2022-03-29 20:00:00: 0.035412335814478 + 2022-03-29 21:00:00: 0.035383588396842 + 2022-03-29 22:00:00: 0.035354863680894 + 2022-03-29 23:00:00: 0.035326161649764 + 2022-03-30 00:00:00: 0.035297482286595 + 2022-03-30 01:00:00: 0.035268825574539 + 2022-03-30 02:00:00: 0.03524019149676 + 2022-03-30 03:00:00: 0.035211580036432 + 2022-03-30 04:00:00: 0.03518299117674 + 2022-03-30 05:00:00: 0.035154424900879 + 2022-03-30 06:00:00: 0.035125881192056 + 2022-03-30 07:00:00: 0.035097360033488 + 2022-03-30 08:00:00: 0.035068861408403 + 2022-03-30 09:00:00: 0.035040385300039 + 2022-03-30 10:00:00: 0.035011931691645 + 2022-03-30 11:00:00: 0.034983500566482 + 2022-03-30 12:00:00: 0.034955091907819 + 2022-03-30 13:00:00: 0.034926705698939 + 2022-03-30 14:00:00: 0.034898341923133 + 2022-03-30 15:00:00: 0.034870000563704 + 2022-03-30 16:00:00: 0.034841681603965 + 2022-03-30 17:00:00: 0.034813385027241 + 2022-03-30 18:00:00: 0.034785110816866 + 2022-03-30 19:00:00: 0.034756858956185 + 2022-03-30 20:00:00: 0.034728629428555 + 2022-03-30 21:00:00: 0.034700422217342 + 2022-03-30 22:00:00: 0.034672237305924 + 2022-03-30 23:00:00: 0.034644074677688 + 2022-03-31 00:00:00: 0.034615934316034 + 2022-03-31 01:00:00: 0.034587816204371 + 2022-03-31 02:00:00: 0.034559720326119 + 2022-03-31 03:00:00: 0.034531646664708 + 2022-03-31 04:00:00: 0.034503595203579 + 2022-03-31 05:00:00: 0.034475565926186 + 2022-03-31 06:00:00: 0.034447558815989 + 2022-03-31 07:00:00: 0.034419573856463 + 2022-03-31 08:00:00: 0.034391611031092 + 2022-03-31 09:00:00: 0.034363670323368 + 2022-03-31 10:00:00: 0.034335751716799 + 2022-03-31 11:00:00: 0.034307855194899 + 2022-03-31 12:00:00: 0.034279980741194 + 2022-03-31 13:00:00: 0.034252128339222 + 2022-03-31 14:00:00: 0.034224297972529 + 2022-03-31 15:00:00: 0.034196489624675 + 2022-03-31 16:00:00: 0.034168703279227 + 2022-03-31 17:00:00: 0.034140938919765 + 2022-03-31 18:00:00: 0.034113196529878 + 2022-03-31 19:00:00: 0.034085476093168 + 2022-03-31 20:00:00: 0.034057777593245 + 2022-03-31 21:00:00: 0.03403010101373 + flow_descr: + ref: 0 + x: + - 1295 + - 1295.2 + - 1295.5 + - 1296 + y: + - 0.001 + - 0.567 + - 1.85 + - 4.85 + energy_value_input: 160 + Tangvall: + max_vol: 36.5 + lrl: 1183 + hrl: 1205 + vol_head: + ref: 0 + x: + - 0 + - 0.5 + - 1.5 + - 1.9 + - 3.3 + - 4.8 + - 6.7 + - 10.2 + - 12.3 + - 15.2 + - 18.65 + - 22.1 + - 26.7 + - 31.5 + - 36.3 + - 41.8 + y: + - 1183 + - 1184 + - 1185.5 + - 1186 + - 1187.5 + - 1189 + - 1190.5 + - 1193 + - 1194.5 + - 1196 + - 1197.5 + - 1199 + - 1201 + - 1203 + - 1205 + - 1206.99 + start_head: 1184.7624511719 + inflow: + 2022-03-27 22:00:00: 0.080272132448101 + 2022-03-27 23:00:00: 0.081954604289256 + 2022-03-28 00:00:00: 0.076203306192016 + 2022-03-28 01:00:00: 0.08280220393364 + 2022-03-28 02:00:00: 0.10493754932729 + 2022-03-28 03:00:00: 0.13859874710036 + 2022-03-28 04:00:00: 0.14543904391279 + 2022-03-28 05:00:00: 0.11589929069163 + 2022-03-28 06:00:00: 0.083535555670382 + 2022-03-28 07:00:00: 0.076622622789428 + 2022-03-28 08:00:00: 0.076483381266724 + 2022-03-28 09:00:00: 0.076344369543411 + 2022-03-28 10:00:00: 0.076205587332081 + 2022-03-28 11:00:00: 0.076067034345299 + 2022-03-28 12:00:00: 0.075928710295608 + 2022-03-28 13:00:00: 0.075790614895525 + 2022-03-28 14:00:00: 0.075652747857551 + 2022-03-28 15:00:00: 0.075515108894166 + 2022-03-28 16:00:00: 0.075377697717835 + 2022-03-28 17:00:00: 0.075240514041008 + 2022-03-28 18:00:00: 0.075103557576125 + 2022-03-28 19:00:00: 0.074966828035613 + 2022-03-28 20:00:00: 0.074830325131893 + 2022-03-28 21:00:00: 0.074694048577378 + 2022-03-28 22:00:00: 0.07455799808448 + 2022-03-28 23:00:00: 0.074422173365605 + 2022-03-29 00:00:00: 0.07428657413316 + 2022-03-29 01:00:00: 0.074151200099553 + 2022-03-29 02:00:00: 0.074016050977198 + 2022-03-29 03:00:00: 0.073881126478512 + 2022-03-29 04:00:00: 0.073746426315919 + 2022-03-29 05:00:00: 0.073611950201853 + 2022-03-29 06:00:00: 0.073477697848759 + 2022-03-29 07:00:00: 0.073343668969096 + 2022-03-29 08:00:00: 0.073209863275335 + 2022-03-29 09:00:00: 0.073076280479966 + 2022-03-29 10:00:00: 0.072942920295496 + 2022-03-29 11:00:00: 0.072809782434454 + 2022-03-29 12:00:00: 0.072676866609389 + 2022-03-29 13:00:00: 0.072544172532876 + 2022-03-29 14:00:00: 0.072411699917513 + 2022-03-29 15:00:00: 0.072279448475928 + 2022-03-29 16:00:00: 0.072147417920778 + 2022-03-29 17:00:00: 0.072015607964749 + 2022-03-29 18:00:00: 0.071884018320562 + 2022-03-29 19:00:00: 0.071752648700972 + 2022-03-29 20:00:00: 0.071621498818769 + 2022-03-29 21:00:00: 0.071490568386783 + 2022-03-29 22:00:00: 0.071359857117884 + 2022-03-29 23:00:00: 0.07122936472498 + 2022-03-30 00:00:00: 0.071099090921027 + 2022-03-30 01:00:00: 0.070969035419022 + 2022-03-30 02:00:00: 0.070839197932011 + 2022-03-30 03:00:00: 0.070709578173087 + 2022-03-30 04:00:00: 0.070580175855393 + 2022-03-30 05:00:00: 0.070450990692126 + 2022-03-30 06:00:00: 0.070322022396532 + 2022-03-30 07:00:00: 0.070193270681915 + 2022-03-30 08:00:00: 0.070064735261636 + 2022-03-30 09:00:00: 0.069936415849112 + 2022-03-30 10:00:00: 0.06980831215782 + 2022-03-30 11:00:00: 0.069680423901301 + 2022-03-30 12:00:00: 0.069552750793158 + 2022-03-30 13:00:00: 0.069425292547056 + 2022-03-30 14:00:00: 0.069298048876729 + 2022-03-30 15:00:00: 0.069171019495978 + 2022-03-30 16:00:00: 0.069044204118674 + 2022-03-30 17:00:00: 0.068917602458758 + 2022-03-30 18:00:00: 0.068791214230245 + 2022-03-30 19:00:00: 0.068665039147221 + 2022-03-30 20:00:00: 0.068539076923851 + 2022-03-30 21:00:00: 0.068413327274376 + 2022-03-30 22:00:00: 0.068287789913114 + 2022-03-30 23:00:00: 0.068162464554466 + 2022-03-31 00:00:00: 0.068037350912912 + 2022-03-31 01:00:00: 0.067912448703017 + 2022-03-31 02:00:00: 0.06778775763943 + 2022-03-31 03:00:00: 0.067663277436886 + 2022-03-31 04:00:00: 0.067539007810208 + 2022-03-31 05:00:00: 0.067414948474307 + 2022-03-31 06:00:00: 0.067291099144185 + 2022-03-31 07:00:00: 0.067167459534938 + 2022-03-31 08:00:00: 0.067044029361752 + 2022-03-31 09:00:00: 0.06692080833991 + 2022-03-31 10:00:00: 0.066797796184792 + 2022-03-31 11:00:00: 0.066674992611873 + 2022-03-31 12:00:00: 0.066552397336728 + 2022-03-31 13:00:00: 0.066430010075035 + 2022-03-31 14:00:00: 0.066307830542571 + 2022-03-31 15:00:00: 0.066185858455217 + 2022-03-31 16:00:00: 0.066064093528959 + 2022-03-31 17:00:00: 0.065942535479889 + 2022-03-31 18:00:00: 0.065821184024207 + 2022-03-31 19:00:00: 0.065700038878219 + 2022-03-31 20:00:00: 0.065579099758345 + 2022-03-31 21:00:00: 0.065458366381114 + flow_descr: + ref: 0 + x: + - 1205 + - 1205.198 + - 1205.495 + - 1205.98999 + y: + - 0 + - 4.435 + - 16.443 + - 50 + energy_value_input: 160 + Sirefelt: + max_vol: 1.6 + lrl: 620 + hrl: 630 + vol_head: + ref: 0 + x: + - 0 + - 0.01 + - 0.0338 + - 0.0838 + - 0.2138 + - 0.3038 + - 0.7038 + - 0.9538 + - 1.284 + - 1.6 + - 1.984 + - 2.368 + y: + - 620 + - 620.59998 + - 622 + - 623.09998 + - 624.40002 + - 625 + - 627 + - 628 + - 629.1 + - 630 + - 631 + - 632 + start_head: 625.2109375 + inflow: + 2022-03-27 22:00:00: 0.6486007526592 + 2022-03-27 23:00:00: 4.1710844342761 + 2022-03-28 00:00:00: 8.9878028847197 + 2022-03-28 01:00:00: 5.1218349700756 + 2022-03-28 02:00:00: 4.3815361064888 + 2022-03-28 03:00:00: 4.147641217319 + 2022-03-28 04:00:00: 3.5908340315278 + 2022-03-28 05:00:00: 2.8611549155724 + 2022-03-28 06:00:00: 3.2155122238619 + 2022-03-28 07:00:00: 3.2556252875194 + 2022-03-28 08:00:00: 3.2798008424076 + 2022-03-28 09:00:00: 3.3017522461428 + 2022-03-28 10:00:00: 3.3108412144659 + 2022-03-28 11:00:00: 3.3143686710432 + 2022-03-28 12:00:00: 3.3284862175843 + 2022-03-28 13:00:00: 3.3459448793137 + 2022-03-28 14:00:00: 3.3613575486199 + 2022-03-28 15:00:00: 3.3676179862115 + 2022-03-28 16:00:00: 3.3612723566714 + 2022-03-28 17:00:00: 3.347101596698 + 2022-03-28 18:00:00: 3.3250110936035 + 2022-03-28 19:00:00: 3.3015418424682 + 2022-03-28 20:00:00: 3.278202453125 + 2022-03-28 21:00:00: 3.2549928031406 + 2022-03-28 22:00:00: 3.2319127581898 + 2022-03-28 23:00:00: 3.2089621723017 + 2022-03-29 00:00:00: 3.1861408881034 + 2022-03-29 01:00:00: 3.1634487370601 + 2022-03-29 02:00:00: 3.1408855397128 + 2022-03-29 03:00:00: 3.1184511059124 + 2022-03-29 04:00:00: 3.0961452350507 + 2022-03-29 05:00:00: 3.0739677162892 + 2022-03-29 06:00:00: 3.0519183287844 + 2022-03-29 07:00:00: 3.0299968419097 + 2022-03-29 08:00:00: 3.0082030154752 + 2022-03-29 09:00:00: 2.9865365999441 + 2022-03-29 10:00:00: 2.9650498154221 + 2022-03-29 11:00:00: 2.94453701368 + 2022-03-29 12:00:00: 2.9254004199292 + 2022-03-29 13:00:00: 2.9056508167093 + 2022-03-29 14:00:00: 2.888139330445 + 2022-03-29 15:00:00: 2.8706860201038 + 2022-03-29 16:00:00: 2.8507809106564 + 2022-03-29 17:00:00: 2.8300495068869 + 2022-03-29 18:00:00: 2.8094430739986 + 2022-03-29 19:00:00: 2.7889612846087 + 2022-03-29 20:00:00: 2.7686038040717 + 2022-03-29 21:00:00: 2.7483702906633 + 2022-03-29 22:00:00: 2.7282603957622 + 2022-03-29 23:00:00: 2.7082737640295 + 2022-03-30 00:00:00: 2.6884100335852 + 2022-03-30 01:00:00: 2.6686688361819 + 2022-03-30 02:00:00: 2.6490497973762 + 2022-03-30 03:00:00: 2.6295525366974 + 2022-03-30 04:00:00: 2.610176667814 + 2022-03-30 05:00:00: 2.5909217986968 + 2022-03-30 06:00:00: 2.5717875317808 + 2022-03-30 07:00:00: 2.5527734641232 + 2022-03-30 08:00:00: 2.5338791875603 + 2022-03-30 09:00:00: 2.5151042888608 + 2022-03-30 10:00:00: 2.4964483498777 + 2022-03-30 11:00:00: 2.4779109476971 + 2022-03-30 12:00:00: 2.4598144294233 + 2022-03-30 13:00:00: 2.4417846716264 + 2022-03-30 14:00:00: 2.4235964917323 + 2022-03-30 15:00:00: 2.4055251265398 + 2022-03-30 16:00:00: 2.3875701315851 + 2022-03-30 17:00:00: 2.3697310584789 + 2022-03-30 18:00:00: 2.3520074550395 + 2022-03-30 19:00:00: 2.3343988654235 + 2022-03-30 20:00:00: 2.316904830255 + 2022-03-30 21:00:00: 2.299524886752 + 2022-03-30 22:00:00: 2.2822585688509 + 2022-03-30 23:00:00: 2.2651054073288 + 2022-03-31 00:00:00: 2.2480649299242 + 2022-03-31 01:00:00: 2.2311366614546 + 2022-03-31 02:00:00: 2.2143201239337 + 2022-03-31 03:00:00: 2.1976148366849 + 2022-03-31 04:00:00: 2.1810203164537 + 2022-03-31 05:00:00: 2.1645360775184 + 2022-03-31 06:00:00: 2.148161631798 + 2022-03-31 07:00:00: 2.1318964889588 + 2022-03-31 08:00:00: 2.1157401565194 + 2022-03-31 09:00:00: 2.0996921399527 + 2022-03-31 10:00:00: 2.0837519427873 + 2022-03-31 11:00:00: 2.0679720133944 + 2022-03-31 12:00:00: 2.0529051729293 + 2022-03-31 13:00:00: 2.0386168990363 + 2022-03-31 14:00:00: 2.0240225642219 + 2022-03-31 15:00:00: 2.0090341430989 + 2022-03-31 16:00:00: 1.9938112652457 + 2022-03-31 17:00:00: 1.9785882122454 + 2022-03-31 18:00:00: 1.9634690631268 + 2022-03-31 19:00:00: 1.9484533084132 + 2022-03-31 20:00:00: 1.9335404375765 + 2022-03-31 21:00:00: 1.9187299391203 + flow_descr: + ref: 0 + x: + - 630 + - 630.5 + - 631 + - 632 + y: + - 0 + - 50 + - 110 + - 246 + tactical_limit_min: + 2022-03-27 22:00:00: 0.3 + 2022-03-28 00:00:00: 0.3 + 2022-03-28 01:00:00: 0.3 + 2022-03-28 06:00:00: 0.3 + 2022-03-28 07:00:00: 0.3 + 2022-03-28 11:00:00: 0.3 + 2022-03-28 12:00:00: 0.3 + 2022-03-28 16:00:00: 0.3 + 2022-03-28 18:00:00: 0.3 + 2022-03-29 03:00:00: 0.3 + 2022-03-29 05:00:00: 0.3 + 2022-03-29 08:00:00: 0.3 + 2022-03-29 09:00:00: 0.3 + 2022-03-29 10:00:00: 0.3 + 2022-03-29 11:00:00: 0.3 + 2022-03-29 15:00:00: 0.3 + 2022-03-29 16:00:00: 0.3 + 2022-03-29 19:00:00: 0.3 + 2022-03-29 20:00:00: 0.3 + 2022-03-29 21:00:00: 0.3 + 2022-03-29 22:00:00: 0.3 + 2022-03-30 00:00:00: 0.3 + 2022-03-30 01:00:00: 0.3 + 2022-03-30 08:00:00: 0.3 + 2022-03-30 09:00:00: 0.3 + 2022-03-30 11:00:00: 0.3 + 2022-03-30 12:00:00: 0.3 + 2022-03-30 16:00:00: 0.3 + 2022-03-30 17:00:00: 0.3 + 2022-03-30 19:00:00: 0.3 + 2022-03-30 20:00:00: 0.3 + 2022-03-31 03:00:00: 0.3 + 2022-03-31 04:00:00: 0.3 + 2022-03-31 06:00:00: 0.3 + 2022-03-31 07:00:00: 0.3 + 2022-03-31 08:00:00: 0.3 + 2022-03-31 09:00:00: 0.3 + 2022-03-31 12:00:00: 0.3 + 2022-03-31 13:00:00: 0.3 + 2022-03-31 17:00:00: 0.3 + 2022-03-31 18:00:00: 0.3 + 2022-03-31 19:00:00: 0.3 + 2022-03-31 20:00:00: 0.3 + tactical_cost_min: + 2022-03-27 22:00:00: 10000 + tactical_limit_max: + 2022-03-27 22:00:00: 1.42 + 2022-03-27 23:00:00: 1.42 + 2022-03-28 00:00:00: 1.42 + 2022-03-28 01:00:00: 1.42 + 2022-03-28 02:00:00: 1.42 + 2022-03-28 03:00:00: 1.42 + 2022-03-28 04:00:00: 1.42 + 2022-03-28 05:00:00: 1.42 + 2022-03-28 06:00:00: 1.42 + 2022-03-28 07:00:00: 1.42 + 2022-03-28 08:00:00: 1.42 + 2022-03-28 09:00:00: 1.42 + 2022-03-28 10:00:00: 1.42 + 2022-03-28 11:00:00: 1.42 + 2022-03-28 12:00:00: 1.42 + 2022-03-28 13:00:00: 1.42 + 2022-03-28 14:00:00: 1.42 + 2022-03-28 15:00:00: 1.42 + 2022-03-28 16:00:00: 1.42 + 2022-03-28 17:00:00: 1.42 + 2022-03-28 18:00:00: 1.42 + 2022-03-28 19:00:00: 1.42 + 2022-03-28 20:00:00: 1.42 + 2022-03-28 21:00:00: 1.42 + 2022-03-28 22:00:00: 1.42 + 2022-03-28 23:00:00: 1.42 + 2022-03-29 00:00:00: 1.42 + 2022-03-29 01:00:00: 1.42 + 2022-03-29 02:00:00: 1.42 + 2022-03-29 03:00:00: 1.42 + 2022-03-29 04:00:00: 1.42 + 2022-03-29 05:00:00: 1.42 + 2022-03-29 06:00:00: 1.42 + 2022-03-29 07:00:00: 1.42 + 2022-03-29 08:00:00: 1.42 + 2022-03-29 09:00:00: 1.42 + 2022-03-29 10:00:00: 1.42 + 2022-03-29 11:00:00: 1.42 + 2022-03-29 12:00:00: 1.42 + 2022-03-29 13:00:00: 1.42 + 2022-03-29 14:00:00: 1.42 + 2022-03-29 15:00:00: 1.42 + 2022-03-29 16:00:00: 1.42 + 2022-03-29 17:00:00: 1.42 + 2022-03-29 18:00:00: 1.42 + 2022-03-29 19:00:00: 1.42 + 2022-03-29 20:00:00: 1.42 + 2022-03-29 21:00:00: 1.42 + 2022-03-29 22:00:00: 1.42 + 2022-03-29 23:00:00: 1.42 + 2022-03-30 00:00:00: 1.42 + 2022-03-30 01:00:00: 1.42 + 2022-03-30 02:00:00: 1.42 + 2022-03-30 03:00:00: 1.42 + 2022-03-30 04:00:00: 1.42 + 2022-03-30 05:00:00: 1.42 + 2022-03-30 06:00:00: 1.42 + 2022-03-30 07:00:00: 1.42 + 2022-03-30 08:00:00: 1.42 + 2022-03-30 09:00:00: 1.42 + 2022-03-30 10:00:00: 1.42 + 2022-03-30 11:00:00: 1.42 + 2022-03-30 12:00:00: 1.42 + 2022-03-30 13:00:00: 1.42 + 2022-03-30 14:00:00: 1.42 + 2022-03-30 15:00:00: 1.42 + 2022-03-30 16:00:00: 1.42 + 2022-03-30 17:00:00: 1.42 + 2022-03-30 18:00:00: 1.42 + 2022-03-30 19:00:00: 1.42 + 2022-03-30 20:00:00: 1.42 + 2022-03-30 21:00:00: 1.42 + 2022-03-30 22:00:00: 1.42 + 2022-03-30 23:00:00: 1.42 + 2022-03-31 00:00:00: 1.42 + 2022-03-31 01:00:00: 1.42 + 2022-03-31 02:00:00: 1.42 + 2022-03-31 03:00:00: 1.42 + 2022-03-31 04:00:00: 1.42 + 2022-03-31 05:00:00: 1.42 + 2022-03-31 06:00:00: 1.42 + 2022-03-31 07:00:00: 1.42 + 2022-03-31 08:00:00: 1.42 + 2022-03-31 09:00:00: 1.42 + 2022-03-31 10:00:00: 1.42 + 2022-03-31 11:00:00: 1.42 + 2022-03-31 12:00:00: 1.42 + 2022-03-31 13:00:00: 1.42 + 2022-03-31 14:00:00: 1.42 + 2022-03-31 15:00:00: 1.42 + 2022-03-31 16:00:00: 1.42 + 2022-03-31 17:00:00: 1.42 + 2022-03-31 18:00:00: 1.42 + 2022-03-31 19:00:00: 1.42 + 2022-03-31 20:00:00: 1.42 + 2022-03-31 21:00:00: 1.42 + tactical_cost_max: + 2022-03-27 22:00:00: 100 + energy_value_input: 160 + Lundvann: + max_vol: 30 + lrl: 1190 + hrl: 1230.5 + vol_head: + ref: 0 + x: + - 0 + - 0.8 + - 1.7 + - 3.3 + - 5.1 + - 7.1 + - 9.3 + - 26.9 + - 29.5 + - 30 + - 32.7 + y: + - 1190 + - 1192 + - 1194 + - 1197 + - 1200 + - 1203 + - 1206 + - 1227 + - 1230 + - 1230.5 + - 1233 + start_vol: 3.6930152058154 + inflow: + 2022-03-27 22:00:00: 0.069893941181723 + 2022-03-27 23:00:00: 0.071358890278244 + 2022-03-28 00:00:00: 0.066351163702811 + 2022-03-28 01:00:00: 0.072096905799739 + 2022-03-28 02:00:00: 0.091370425535636 + 2022-03-28 03:00:00: 0.12067964787103 + 2022-03-28 04:00:00: 0.12663557913251 + 2022-03-28 05:00:00: 0.10091494967873 + 2022-03-28 06:00:00: 0.072735444251257 + 2022-03-28 07:00:00: 0.066716267864146 + 2022-03-28 08:00:00: 0.066595028543586 + 2022-03-28 09:00:00: 0.066473989312205 + 2022-03-28 10:00:00: 0.066353149919754 + 2022-03-28 11:00:00: 0.06623251011596 + 2022-03-28 12:00:00: 0.066112069650529 + 2022-03-28 13:00:00: 0.065991828273149 + 2022-03-28 14:00:00: 0.065871785733488 + 2022-03-28 15:00:00: 0.0657519417812 + 2022-03-28 16:00:00: 0.065632296165925 + 2022-03-28 17:00:00: 0.065512848637289 + 2022-03-28 18:00:00: 0.065393598944911 + 2022-03-28 19:00:00: 0.065274546838396 + 2022-03-28 20:00:00: 0.065155692067347 + 2022-03-28 21:00:00: 0.065037034381359 + 2022-03-28 22:00:00: 0.064918573530022 + 2022-03-28 23:00:00: 0.064800309262928 + 2022-03-29 00:00:00: 0.064682241329664 + 2022-03-29 01:00:00: 0.064564369479822 + 2022-03-29 02:00:00: 0.064446693462996 + 2022-03-29 03:00:00: 0.064329213028783 + 2022-03-29 04:00:00: 0.06421192792679 + 2022-03-29 05:00:00: 0.064094837906627 + 2022-03-29 06:00:00: 0.063977942717917 + 2022-03-29 07:00:00: 0.063861242110295 + 2022-03-29 08:00:00: 0.063744735833405 + 2022-03-29 09:00:00: 0.06362842363691 + 2022-03-29 10:00:00: 0.063512305270485 + 2022-03-29 11:00:00: 0.063396380483825 + 2022-03-29 12:00:00: 0.063280649026645 + 2022-03-29 13:00:00: 0.063165110648678 + 2022-03-29 14:00:00: 0.063049765099681 + 2022-03-29 15:00:00: 0.062934612129436 + 2022-03-29 16:00:00: 0.062819651487748 + 2022-03-29 17:00:00: 0.062704882924451 + 2022-03-29 18:00:00: 0.062590306189407 + 2022-03-29 19:00:00: 0.062475921032508 + 2022-03-29 20:00:00: 0.062361727203677 + 2022-03-29 21:00:00: 0.062247724452872 + 2022-03-29 22:00:00: 0.062133912530083 + 2022-03-29 23:00:00: 0.062020291185339 + 2022-03-30 00:00:00: 0.061906860168704 + 2022-03-30 01:00:00: 0.061793619230283 + 2022-03-30 02:00:00: 0.061680568120221 + 2022-03-30 03:00:00: 0.061567706588704 + 2022-03-30 04:00:00: 0.061455034385963 + 2022-03-30 05:00:00: 0.061342551262273 + 2022-03-30 06:00:00: 0.061230256967957 + 2022-03-30 07:00:00: 0.061118151253383 + 2022-03-30 08:00:00: 0.061006233868971 + 2022-03-30 09:00:00: 0.060894504565189 + 2022-03-30 10:00:00: 0.060782963092561 + 2022-03-30 11:00:00: 0.060671609201661 + 2022-03-30 12:00:00: 0.060560442643119 + 2022-03-30 13:00:00: 0.060449463167621 + 2022-03-30 14:00:00: 0.060338670525911 + 2022-03-30 15:00:00: 0.060228064468793 + 2022-03-30 16:00:00: 0.06011764474713 + 2022-03-30 17:00:00: 0.060007411111848 + 2022-03-30 18:00:00: 0.059897363313933 + 2022-03-30 19:00:00: 0.05978750110444 + 2022-03-30 20:00:00: 0.059677824234488 + 2022-03-30 21:00:00: 0.059568332455261 + 2022-03-30 22:00:00: 0.059459025518015 + 2022-03-30 23:00:00: 0.059349903174073 + 2022-03-31 00:00:00: 0.059240965174831 + 2022-03-31 01:00:00: 0.059132211271757 + 2022-03-31 02:00:00: 0.059023641216391 + 2022-03-31 03:00:00: 0.058915254760349 + 2022-03-31 04:00:00: 0.058807051655326 + 2022-03-31 05:00:00: 0.05869903165309 + 2022-03-31 06:00:00: 0.058591194505491 + 2022-03-31 07:00:00: 0.058483539964458 + 2022-03-31 08:00:00: 0.058376067782 + 2022-03-31 09:00:00: 0.058268777710212 + 2022-03-31 10:00:00: 0.05816166950127 + 2022-03-31 11:00:00: 0.058054742907435 + 2022-03-31 12:00:00: 0.057947997681056 + 2022-03-31 13:00:00: 0.057841433574569 + 2022-03-31 14:00:00: 0.057735050340497 + 2022-03-31 15:00:00: 0.057628847731456 + 2022-03-31 16:00:00: 0.057522825500149 + 2022-03-31 17:00:00: 0.057416983399376 + 2022-03-31 18:00:00: 0.057311321182027 + 2022-03-31 19:00:00: 0.057205838601088 + 2022-03-31 20:00:00: 0.057100535409641 + 2022-03-31 21:00:00: 0.056995411360865 + flow_descr: + ref: 0 + x: + - 1230.5 + - 1230.7 + - 1231.4 + - 1231.5 + y: + - 0 + - 2.8 + - 26.8 + - 31 + energy_value_input: 160 + Danielsen: + max_vol: 9.65 + lrl: 1282 + hrl: 1302 + vol_head: + ref: 0 + x: + - 0 + - 0.5 + - 1 + - 1.5 + - 2.1 + - 2.7 + - 3.4 + - 4.1 + - 4.8 + - 5.6 + - 6.4 + - 7.2 + - 8.1 + - 9.2 + - 9.65 + - 10.55 + - 11.45 + y: + - 1282 + - 1283.5 + - 1285 + - 1286.5 + - 1288 + - 1289.5 + - 1291 + - 1292.5 + - 1294 + - 1295.5 + - 1297 + - 1298.5 + - 1300 + - 1301.5 + - 1302 + - 1303 + - 1304 + start_head: 1286.6818880208 + inflow: + 2022-03-27 22:00:00: 0.072011939399351 + 2022-03-27 23:00:00: 0.073521280892737 + 2022-03-28 00:00:00: 0.068361805027138 + 2022-03-28 01:00:00: 0.074281660520943 + 2022-03-28 02:00:00: 0.094139226309443 + 2022-03-28 03:00:00: 0.12433660689742 + 2022-03-28 04:00:00: 0.1304730209244 + 2022-03-28 05:00:00: 0.10397297845688 + 2022-03-28 06:00:00: 0.074939548622507 + 2022-03-28 07:00:00: 0.068737972950938 + 2022-03-28 08:00:00: 0.068613059711573 + 2022-03-28 09:00:00: 0.068488352624696 + 2022-03-28 10:00:00: 0.068363851432474 + 2022-03-28 11:00:00: 0.06823955587705 + 2022-03-28 12:00:00: 0.068115465700545 + 2022-03-28 13:00:00: 0.067991580645062 + 2022-03-28 14:00:00: 0.067867900452684 + 2022-03-28 15:00:00: 0.067744424865479 + 2022-03-28 16:00:00: 0.067621153625498 + 2022-03-28 17:00:00: 0.067498086474783 + 2022-03-28 18:00:00: 0.067375223155362 + 2022-03-28 19:00:00: 0.067252563409257 + 2022-03-28 20:00:00: 0.067130106978479 + 2022-03-28 21:00:00: 0.067007853605036 + 2022-03-28 22:00:00: 0.066885803030932 + 2022-03-28 23:00:00: 0.066763954998168 + 2022-03-29 00:00:00: 0.066642309248745 + 2022-03-29 01:00:00: 0.066520865524665 + 2022-03-29 02:00:00: 0.066399623567935 + 2022-03-29 03:00:00: 0.066278583120565 + 2022-03-29 04:00:00: 0.066157743924571 + 2022-03-29 05:00:00: 0.066037105721979 + 2022-03-29 06:00:00: 0.065916668254824 + 2022-03-29 07:00:00: 0.065796431265152 + 2022-03-29 08:00:00: 0.065676394495023 + 2022-03-29 09:00:00: 0.065556557686513 + 2022-03-29 10:00:00: 0.065436920581712 + 2022-03-29 11:00:00: 0.065317482922729 + 2022-03-29 12:00:00: 0.065198244451695 + 2022-03-29 13:00:00: 0.065079204910759 + 2022-03-29 14:00:00: 0.064960364042096 + 2022-03-29 15:00:00: 0.064841721587904 + 2022-03-29 16:00:00: 0.064723277290407 + 2022-03-29 17:00:00: 0.064605030891859 + 2022-03-29 18:00:00: 0.064486982134541 + 2022-03-29 19:00:00: 0.064369130760766 + 2022-03-29 20:00:00: 0.06425147651288 + 2022-03-29 21:00:00: 0.064134019133262 + 2022-03-29 22:00:00: 0.064016758364328 + 2022-03-29 23:00:00: 0.063899693948531 + 2022-03-30 00:00:00: 0.063782825628362 + 2022-03-30 01:00:00: 0.063666153146352 + 2022-03-30 02:00:00: 0.063549676245076 + 2022-03-30 03:00:00: 0.063433394667149 + 2022-03-30 04:00:00: 0.063317308155234 + 2022-03-30 05:00:00: 0.063201416452039 + 2022-03-30 06:00:00: 0.063085719300319 + 2022-03-30 07:00:00: 0.062970216442879 + 2022-03-30 08:00:00: 0.062854907622576 + 2022-03-30 09:00:00: 0.062739792582316 + 2022-03-30 10:00:00: 0.062624871065063 + 2022-03-30 11:00:00: 0.062510142813832 + 2022-03-30 12:00:00: 0.062395607571698 + 2022-03-30 13:00:00: 0.062281265081791 + 2022-03-30 14:00:00: 0.062167115087303 + 2022-03-30 15:00:00: 0.062053157331484 + 2022-03-30 16:00:00: 0.061939391557649 + 2022-03-30 17:00:00: 0.061825817509176 + 2022-03-30 18:00:00: 0.061712434929507 + 2022-03-30 19:00:00: 0.061599243562151 + 2022-03-30 20:00:00: 0.061486243150684 + 2022-03-30 21:00:00: 0.061373433438754 + 2022-03-30 22:00:00: 0.061260814170076 + 2022-03-30 23:00:00: 0.061148385088439 + 2022-03-31 00:00:00: 0.061036145937705 + 2022-03-31 01:00:00: 0.06092409646181 + 2022-03-31 02:00:00: 0.060812236404766 + 2022-03-31 03:00:00: 0.060700565510663 + 2022-03-31 04:00:00: 0.060589083523669 + 2022-03-31 05:00:00: 0.060477790188032 + 2022-03-31 06:00:00: 0.060366685248082 + 2022-03-31 07:00:00: 0.060255768448229 + 2022-03-31 08:00:00: 0.06014503953297 + 2022-03-31 09:00:00: 0.060034498246885 + 2022-03-31 10:00:00: 0.059924144334642 + 2022-03-31 11:00:00: 0.059813977540994 + 2022-03-31 12:00:00: 0.059703997610785 + 2022-03-31 13:00:00: 0.05959420428895 + 2022-03-31 14:00:00: 0.059484597320512 + 2022-03-31 15:00:00: 0.059375176450591 + 2022-03-31 16:00:00: 0.059265941424396 + 2022-03-31 17:00:00: 0.059156891987236 + 2022-03-31 18:00:00: 0.059048027884513 + 2022-03-31 19:00:00: 0.058939348861727 + 2022-03-31 20:00:00: 0.058830854664479 + 2022-03-31 21:00:00: 0.058722545038467 + flow_descr: + ref: 0 + x: + - 1302 + - 1302.5 + - 1303 + y: + - 0 + - 5 + - 20 + tactical_limit_max: + 2022-03-27 22:00:00: 9.2 + 2022-03-27 23:00:00: 9.2 + 2022-03-28 00:00:00: 9.2 + 2022-03-28 02:00:00: 9.2 + 2022-03-28 03:00:00: 9.2 + 2022-03-28 04:00:00: 9.2 + 2022-03-28 06:00:00: 9.2 + 2022-03-28 07:00:00: 9.2 + 2022-03-28 08:00:00: 9.2 + 2022-03-28 09:00:00: 9.2 + 2022-03-28 10:00:00: 9.2 + 2022-03-28 11:00:00: 9.2 + 2022-03-28 12:00:00: 9.2 + 2022-03-28 14:00:00: 9.2 + 2022-03-28 15:00:00: 9.2 + 2022-03-28 17:00:00: 9.2 + 2022-03-28 18:00:00: 9.2 + 2022-03-28 21:00:00: 9.2 + 2022-03-28 22:00:00: 9.2 + 2022-03-29 00:00:00: 9.2 + 2022-03-29 01:00:00: 9.2 + 2022-03-29 05:00:00: 9.2 + 2022-03-29 06:00:00: 9.2 + 2022-03-29 08:00:00: 9.2 + 2022-03-29 09:00:00: 9.2 + 2022-03-29 11:00:00: 9.2 + 2022-03-29 12:00:00: 9.2 + 2022-03-29 13:00:00: 9.2 + 2022-03-29 15:00:00: 9.2 + 2022-03-29 16:00:00: 9.2 + 2022-03-29 18:00:00: 9.2 + 2022-03-29 19:00:00: 9.2 + 2022-03-29 20:00:00: 9.2 + 2022-03-29 21:00:00: 9.2 + 2022-03-29 22:00:00: 9.2 + 2022-03-29 23:00:00: 9.2 + 2022-03-30 00:00:00: 9.2 + 2022-03-30 02:00:00: 9.2 + 2022-03-30 03:00:00: 9.2 + 2022-03-30 04:00:00: 9.2 + 2022-03-30 06:00:00: 9.2 + 2022-03-30 07:00:00: 9.2 + 2022-03-30 09:00:00: 9.2 + 2022-03-30 10:00:00: 9.2 + 2022-03-30 13:00:00: 9.2 + 2022-03-30 14:00:00: 9.2 + 2022-03-30 17:00:00: 9.2 + 2022-03-30 18:00:00: 9.2 + 2022-03-30 21:00:00: 9.2 + 2022-03-30 22:00:00: 9.2 + 2022-03-31 00:00:00: 9.2 + 2022-03-31 01:00:00: 9.2 + 2022-03-31 03:00:00: 9.2 + 2022-03-31 04:00:00: 9.2 + 2022-03-31 05:00:00: 9.2 + 2022-03-31 07:00:00: 9.2 + 2022-03-31 08:00:00: 9.2 + 2022-03-31 09:00:00: 9.2 + 2022-03-31 11:00:00: 9.2 + 2022-03-31 12:00:00: 9.2 + 2022-03-31 13:00:00: 9.2 + 2022-03-31 15:00:00: 9.2 + 2022-03-31 16:00:00: 9.2 + 2022-03-31 18:00:00: 9.2 + 2022-03-31 19:00:00: 9.2 + 2022-03-31 20:00:00: 9.2 + tactical_cost_max: + 2022-03-27 22:00:00: 500 + energy_value_input: 160 + Dalbysvatn: + max_vol: 115 + lrl: 363 + hrl: 380 + vol_head: + ref: 0 + x: + - 0 + - 6.23 + - 12.46 + - 18.7 + - 24.95 + - 31.21 + - 37.69 + - 44.21 + - 50.86 + - 57.71 + - 64.72 + - 78.76 + - 92.82 + - 107.57 + - 115 + - 123.02 + - 139.32 + y: + - 363 + - 364 + - 365 + - 366 + - 367 + - 368 + - 369 + - 370 + - 371 + - 372 + - 373 + - 375 + - 377 + - 379 + - 380 + - 381 + - 383 + start_head: 367.69541422526 + inflow: + 2022-03-27 22:00:00: 7.2176969673232 + 2022-03-27 23:00:00: 7.2176969673232 + 2022-03-28 00:00:00: 7.2176969673232 + 2022-03-28 01:00:00: 7.2176969673232 + 2022-03-28 02:00:00: 7.2176969673232 + 2022-03-28 03:00:00: 7.2176969673232 + 2022-03-28 06:00:00: 7.2176969673232 + 2022-03-28 07:00:00: 7.2176969673232 + 2022-03-28 08:00:00: 7.2176969673232 + 2022-03-28 20:00:00: 7.2176969673232 + 2022-03-28 21:00:00: 4.4307366209361 + 2022-03-29 00:00:00: 4.4307366209361 + 2022-03-29 01:00:00: 4.4307366209361 + 2022-03-29 02:00:00: 4.4307366209361 + 2022-03-29 03:00:00: 4.4307366209361 + 2022-03-29 05:00:00: 4.4307366209361 + 2022-03-29 06:00:00: 4.4307366209361 + 2022-03-29 07:00:00: 4.4307366209361 + 2022-03-29 08:00:00: 4.4307366209361 + 2022-03-29 10:00:00: 4.4307366209361 + 2022-03-29 11:00:00: 4.4307366209361 + 2022-03-29 13:00:00: 4.4307366209361 + 2022-03-29 14:00:00: 4.4307366209361 + 2022-03-29 16:00:00: 4.4307366209361 + 2022-03-29 17:00:00: 4.4307366209361 + 2022-03-29 19:00:00: 4.4307366209361 + 2022-03-29 20:00:00: 4.4307366209361 + 2022-03-29 21:00:00: 3.8072361668233 + 2022-03-29 22:00:00: 3.8072361668233 + 2022-03-30 00:00:00: 3.8072361668233 + 2022-03-30 02:00:00: 3.8072361668233 + 2022-03-30 03:00:00: 3.8072361668233 + 2022-03-30 05:00:00: 3.8072361668233 + 2022-03-30 07:00:00: 3.8072361668233 + 2022-03-30 08:00:00: 3.8072361668233 + 2022-03-30 10:00:00: 3.8072361668233 + 2022-03-30 11:00:00: 3.8072361668233 + 2022-03-30 12:00:00: 3.8072361668233 + 2022-03-30 13:00:00: 3.8072361668233 + 2022-03-30 15:00:00: 3.8072361668233 + 2022-03-30 16:00:00: 3.8072361668233 + 2022-03-30 17:00:00: 3.8072361668233 + 2022-03-30 18:00:00: 3.8072361668233 + 2022-03-30 20:00:00: 3.8072361668233 + 2022-03-30 21:00:00: 3.3631731388582 + 2022-03-30 22:00:00: 3.3631731388582 + 2022-03-30 23:00:00: 3.3631731388582 + 2022-03-31 01:00:00: 3.3631731388582 + 2022-03-31 02:00:00: 3.3631731388582 + 2022-03-31 04:00:00: 3.3631731388582 + 2022-03-31 05:00:00: 3.3631731388582 + 2022-03-31 09:00:00: 3.3631731388582 + 2022-03-31 10:00:00: 3.3631731388582 + 2022-03-31 12:00:00: 3.3631731388582 + 2022-03-31 13:00:00: 3.3631731388582 + 2022-03-31 15:00:00: 3.3631731388582 + 2022-03-31 16:00:00: 3.3631731388582 + 2022-03-31 17:00:00: 3.3631731388582 + 2022-03-31 18:00:00: 3.3631731388582 + 2022-03-31 21:00:00: 2.9641961949568 + flow_descr: + ref: 0 + x: + - 380 + - 380.582 + - 381.455 + - 382.91 + y: + - 0.001 + - 20.1 + - 84 + - 250 + min_vol_constr: + 2022-03-27 22:00:00: 0 + tactical_limit_max: + 2022-03-27 22:00:00: 109 + tactical_cost_max: + 2022-03-27 22:00:00: 500 + energy_value_input: 160 + Nielsen: + max_vol: 66 + lrl: 924 + hrl: 950 + vol_head: + ref: 0 + x: + - 0 + - 0.8 + - 1.6 + - 3.4 + - 7.1 + - 11.2 + - 15.5 + - 20.3 + - 25.3 + - 30.5 + - 36.2 + - 41.9 + - 47.8 + - 53.8 + - 59.9 + - 66 + - 68.8 + y: + - 924 + - 924.5 + - 925 + - 926 + - 928 + - 930 + - 932 + - 934 + - 936 + - 938 + - 940 + - 942 + - 944 + - 946 + - 948 + - 950 + - 950.90002 + start_head: 941.33984375 + inflow: + 2022-03-27 22:00:00: 0.33119523077637 + 2022-03-27 23:00:00: 0.3444219790921 + 2022-03-28 00:00:00: 0.33952574558595 + 2022-03-28 01:00:00: 0.34309514097542 + 2022-03-28 02:00:00: 0.51368100570324 + 2022-03-28 03:00:00: 0.72246649559582 + 2022-03-28 04:00:00: 0.88192901666355 + 2022-03-28 05:00:00: 0.64593778425512 + 2022-03-28 06:00:00: 0.2965105631909 + 2022-03-28 07:00:00: 0.29574438498877 + 2022-03-28 08:00:00: 0.29318363749839 + 2022-03-28 09:00:00: 0.29045386059642 + 2022-03-28 10:00:00: 0.28774035393344 + 2022-03-28 11:00:00: 0.28504303524204 + 2022-03-28 12:00:00: 0.28236182253036 + 2022-03-28 13:00:00: 0.27969663408308 + 2022-03-28 14:00:00: 0.27704738846249 + 2022-03-28 15:00:00: 0.27441400450937 + 2022-03-28 16:00:00: 0.27179640134395 + 2022-03-28 17:00:00: 0.26919449836679 + 2022-03-28 18:00:00: 0.26660821525959 + 2022-03-28 19:00:00: 0.26635375274805 + 2022-03-28 20:00:00: 0.26613764999767 + 2022-03-28 21:00:00: 0.26592171770119 + 2022-03-28 22:00:00: 0.26570595573226 + 2022-03-28 23:00:00: 0.26549036396467 + 2022-03-29 00:00:00: 0.26527494227225 + 2022-03-29 01:00:00: 0.26505969052892 + 2022-03-29 02:00:00: 0.26484460860869 + 2022-03-29 03:00:00: 0.26462969638563 + 2022-03-29 04:00:00: 0.26441495373391 + 2022-03-29 05:00:00: 0.26420038052777 + 2022-03-29 06:00:00: 0.26398597664153 + 2022-03-29 07:00:00: 0.26377174194959 + 2022-03-29 08:00:00: 0.26355767632643 + 2022-03-29 09:00:00: 0.26334377964661 + 2022-03-29 10:00:00: 0.26313005178477 + 2022-03-29 11:00:00: 0.26291649261563 + 2022-03-29 12:00:00: 0.26270310201398 + 2022-03-29 13:00:00: 0.26248987985471 + 2022-03-29 14:00:00: 0.26227682601276 + 2022-03-29 15:00:00: 0.26206394036319 + 2022-03-29 16:00:00: 0.26185122278109 + 2022-03-29 17:00:00: 0.26163867314167 + 2022-03-29 18:00:00: 0.26142629132021 + 2022-03-29 19:00:00: 0.26121407719205 + 2022-03-29 20:00:00: 0.26100203063263 + 2022-03-29 21:00:00: 0.26079015151747 + 2022-03-29 22:00:00: 0.26057843972215 + 2022-03-29 23:00:00: 0.26036689512234 + 2022-03-30 00:00:00: 0.26015551759379 + 2022-03-30 01:00:00: 0.25994430701235 + 2022-03-30 02:00:00: 0.2597332632539 + 2022-03-30 03:00:00: 0.25952238619445 + 2022-03-30 04:00:00: 0.25931167571005 + 2022-03-30 05:00:00: 0.25910113167685 + 2022-03-30 06:00:00: 0.25889075397108 + 2022-03-30 07:00:00: 0.25868054246904 + 2022-03-30 08:00:00: 0.25847049704712 + 2022-03-30 09:00:00: 0.25826061758177 + 2022-03-30 10:00:00: 0.25805090394953 + 2022-03-30 11:00:00: 0.25784135602703 + 2022-03-30 12:00:00: 0.25763197369096 + 2022-03-30 13:00:00: 0.25742275681811 + 2022-03-30 14:00:00: 0.25721370528531 + 2022-03-30 15:00:00: 0.25700481896952 + 2022-03-30 16:00:00: 0.25679609774774 + 2022-03-30 17:00:00: 0.25658754149707 + 2022-03-30 18:00:00: 0.25637915009468 + 2022-03-30 19:00:00: 0.25617092341781 + 2022-03-30 20:00:00: 0.25596286134379 + 2022-03-30 21:00:00: 0.25575496375004 + 2022-03-30 22:00:00: 0.25554723051403 + 2022-03-30 23:00:00: 0.25533966151333 + 2022-03-31 00:00:00: 0.25513225662559 + 2022-03-31 01:00:00: 0.25492501572851 + 2022-03-31 02:00:00: 0.25471793869991 + 2022-03-31 03:00:00: 0.25451102541766 + 2022-03-31 04:00:00: 0.25430427575971 + 2022-03-31 05:00:00: 0.25409768960411 + 2022-03-31 06:00:00: 0.25389126682896 + 2022-03-31 07:00:00: 0.25368500731245 + 2022-03-31 08:00:00: 0.25347891093286 + 2022-03-31 09:00:00: 0.25327297756853 + 2022-03-31 10:00:00: 0.25306720709789 + 2022-03-31 11:00:00: 0.25286159939944 + 2022-03-31 12:00:00: 0.25265615435176 + 2022-03-31 13:00:00: 0.25245087183352 + 2022-03-31 14:00:00: 0.25224575172346 + 2022-03-31 15:00:00: 0.25204079390038 + 2022-03-31 16:00:00: 0.25183599824319 + 2022-03-31 17:00:00: 0.25163136463086 + 2022-03-31 18:00:00: 0.25142689294244 + 2022-03-31 19:00:00: 0.25122258305705 + 2022-03-31 20:00:00: 0.25101843485392 + 2022-03-31 21:00:00: 0.25081444821231 + flow_descr: + ref: 0 + x: + - 950 + - 950.1202 + - 950.3005 + - 950.601 + y: + - 0.001 + - 9.628 + - 36.105 + - 106 + max_vol_constr: + 2022-03-27 22:00:00: 66 + energy_value_input: 160 + Rullsvatn: + max_vol: 1000 + lrl: 67 + hrl: 68.5 + vol_head: + ref: 0 + x: + - 0 + - 1000 + - 2000 + y: + - 67 + - 68.5 + - 70 + inflow: + 2022-03-27 22:00:00: 0 + flow_descr: + ref: 0 + x: + - 68.5 + - 70 + y: + - 0 + - 100 + min_vol_constr: + 2022-03-27 22:00:00: 0 + energy_value_input: 160 + Ranemsletta_1183: + max_vol: 0.047 + lrl: 1182.5 + hrl: 1183 + vol_head: + ref: 0 + x: + - 0 + - 0.127 + y: + - 1182.5 + - 1184.35 + start_head: 1182.697582688 + inflow: + 2022-03-27 22:00:00: 0.0038123967917304 + 2022-03-27 23:00:00: 0.0038923031060861 + 2022-03-28 00:00:00: 0.0036191543837897 + 2022-03-28 01:00:00: 0.0039325584981676 + 2022-03-28 02:00:00: 0.0049838413928529 + 2022-03-28 03:00:00: 0.0065825262475106 + 2022-03-28 04:00:00: 0.0069073952254095 + 2022-03-28 05:00:00: 0.0055044518006581 + 2022-03-28 06:00:00: 0.0039673878682504 + 2022-03-28 07:00:00: 0.0036390691562261 + 2022-03-28 08:00:00: 0.0036324561023774 + 2022-03-28 09:00:00: 0.0036258539624839 + 2022-03-28 10:00:00: 0.0036192627228957 + 2022-03-28 11:00:00: 0.0036126823699614 + 2022-03-28 12:00:00: 0.0036061128900289 + 2022-03-28 13:00:00: 0.0035995542694445 + 2022-03-28 14:00:00: 0.0035930064945539 + 2022-03-28 15:00:00: 0.0035864695517018 + 2022-03-28 16:00:00: 0.0035799434272323 + 2022-03-28 17:00:00: 0.0035734281074885 + 2022-03-28 18:00:00: 0.0035669235788133 + 2022-03-28 19:00:00: 0.0035604298275489 + 2022-03-28 20:00:00: 0.0035539468400371 + 2022-03-28 21:00:00: 0.0035474746026196 + 2022-03-28 22:00:00: 0.0035410131016376 + 2022-03-28 23:00:00: 0.0035345623234324 + 2022-03-29 00:00:00: 0.0035281222543453 + 2022-03-29 01:00:00: 0.0035216928807176 + 2022-03-29 02:00:00: 0.0035152741888907 + 2022-03-29 03:00:00: 0.0035088661652064 + 2022-03-29 04:00:00: 0.0035024687960067 + 2022-03-29 05:00:00: 0.0034960820676342 + 2022-03-29 06:00:00: 0.0034897059664318 + 2022-03-29 07:00:00: 0.0034833404787433 + 2022-03-29 08:00:00: 0.003476985590913 + 2022-03-29 09:00:00: 0.003470641289286 + 2022-03-29 10:00:00: 0.0034643075602083 + 2022-03-29 11:00:00: 0.0034579843900268 + 2022-03-29 12:00:00: 0.0034516717650897 + 2022-03-29 13:00:00: 0.0034453696717461 + 2022-03-29 14:00:00: 0.0034390780963463 + 2022-03-29 15:00:00: 0.003432797025242 + 2022-03-29 16:00:00: 0.0034265264447863 + 2022-03-29 17:00:00: 0.0034202663413337 + 2022-03-29 18:00:00: 0.0034140167012404 + 2022-03-29 19:00:00: 0.0034077775108641 + 2022-03-29 20:00:00: 0.0034015487565642 + 2022-03-29 21:00:00: 0.0033953304247021 + 2022-03-29 22:00:00: 0.0033891225016409 + 2022-03-29 23:00:00: 0.0033829249737458 + 2022-03-30 00:00:00: 0.0033767378273839 + 2022-03-30 01:00:00: 0.0033705610489245 + 2022-03-30 02:00:00: 0.0033643946247393 + 2022-03-30 03:00:00: 0.003358238541202 + 2022-03-30 04:00:00: 0.0033520927846889 + 2022-03-30 05:00:00: 0.0033459573415785 + 2022-03-30 06:00:00: 0.0033398321982522 + 2022-03-30 07:00:00: 0.0033337173410936 + 2022-03-30 08:00:00: 0.0033276127564893 + 2022-03-30 09:00:00: 0.0033215184308285 + 2022-03-30 10:00:00: 0.0033154343505033 + 2022-03-30 11:00:00: 0.0033093605019088 + 2022-03-30 12:00:00: 0.0033032968714428 + 2022-03-30 13:00:00: 0.0032972434455066 + 2022-03-30 14:00:00: 0.0032912002105043 + 2022-03-30 15:00:00: 0.0032851671528433 + 2022-03-30 16:00:00: 0.0032791442589344 + 2022-03-30 17:00:00: 0.0032731315151917 + 2022-03-30 18:00:00: 0.0032671289080327 + 2022-03-30 19:00:00: 0.0032611364238786 + 2022-03-30 20:00:00: 0.0032551540491539 + 2022-03-30 21:00:00: 0.003249181770287 + 2022-03-30 22:00:00: 0.0032432195737099 + 2022-03-30 23:00:00: 0.0032372674458585 + 2022-03-31 00:00:00: 0.0032313253731726 + 2022-03-31 01:00:00: 0.0032253933420958 + 2022-03-31 02:00:00: 0.0032194713390758 + 2022-03-31 03:00:00: 0.0032135593505645 + 2022-03-31 04:00:00: 0.0032076573630178 + 2022-03-31 05:00:00: 0.0032017653628958 + 2022-03-31 06:00:00: 0.0031958833366631 + 2022-03-31 07:00:00: 0.0031900112707886 + 2022-03-31 08:00:00: 0.0031841491517455 + 2022-03-31 09:00:00: 0.0031782969660116 + 2022-03-31 10:00:00: 0.0031724547000693 + 2022-03-31 11:00:00: 0.0031666223404056 + 2022-03-31 12:00:00: 0.0031607998735122 + 2022-03-31 13:00:00: 0.0031549872858856 + 2022-03-31 14:00:00: 0.0031491845640271 + 2022-03-31 15:00:00: 0.003143391694443 + 2022-03-31 16:00:00: 0.0031376086636445 + 2022-03-31 17:00:00: 0.0031318354581478 + 2022-03-31 18:00:00: 0.0031260720644742 + 2022-03-31 19:00:00: 0.0031203184691503 + 2022-03-31 20:00:00: 0.0031145746587077 + 2022-03-31 21:00:00: 0.0031088406196835 + flow_descr: + ref: 0 + x: + - 1183 + - 1183.2 + - 1183.5 + - 1184 + y: + - 0 + - 2.76 + - 10.9 + - 30.84 + energy_value_input: 160 + Lensvik: + max_vol: 290 + lrl: 675 + hrl: 745 + vol_head: + ref: 0 + x: + - 0 + - 1.1 + - 3.2 + - 7.1 + - 13.7 + - 23.1 + - 36.2 + - 54 + - 75.8 + - 99.4 + - 124.7 + - 151.8 + - 181 + - 212.39999 + - 254.10001 + - 290 + - 303.70001 + y: + - 675 + - 677 + - 680 + - 684 + - 689 + - 694 + - 699 + - 704 + - 709 + - 714 + - 719 + - 724 + - 729 + - 734 + - 740 + - 745 + - 746.66252 + start_head: 692.92805175781 + inflow: + 2022-03-27 22:00:00: 2.8303157819673 + 2022-03-27 23:00:00: 2.0011418659559 + 2022-03-28 00:00:00: 2.0180932945949 + 2022-03-28 01:00:00: 2.2974242635979 + 2022-03-28 02:00:00: 2.3292992154048 + 2022-03-28 03:00:00: 2.3635828099347 + 2022-03-28 04:00:00: 2.3954282727764 + 2022-03-28 05:00:00: 2.4294003953434 + 2022-03-28 06:00:00: 2.4676453901699 + 2022-03-28 07:00:00: 2.3483478691244 + 2022-03-28 08:00:00: 2.3572762800086 + 2022-03-28 09:00:00: 2.3552989838885 + 2022-03-28 10:00:00: 2.3461571161891 + 2022-03-28 11:00:00: 2.3331792297897 + 2022-03-28 12:00:00: 2.3190645310391 + 2022-03-28 13:00:00: 2.2694091202035 + 2022-03-28 14:00:00: 2.2550934634096 + 2022-03-28 15:00:00: 2.2408253639832 + 2022-03-28 16:00:00: 2.2266049874409 + 2022-03-28 17:00:00: 2.2130189534466 + 2022-03-28 18:00:00: 2.1995538773962 + 2022-03-28 19:00:00: 2.1770926365144 + 2022-03-28 20:00:00: 2.1639043302868 + 2022-03-28 21:00:00: 2.150758692324 + 2022-03-28 22:00:00: 2.1376558939707 + 2022-03-28 23:00:00: 2.1245961015588 + 2022-03-29 00:00:00: 2.1115543405901 + 2022-03-29 01:00:00: 2.0996293166029 + 2022-03-29 02:00:00: 2.0865690084359 + 2022-03-29 03:00:00: 2.0735513510393 + 2022-03-29 04:00:00: 2.0605765085201 + 2022-03-29 05:00:00: 2.0471497231422 + 2022-03-29 06:00:00: 2.0336196928122 + 2022-03-29 07:00:00: 2.0026217237684 + 2022-03-29 08:00:00: 1.9896590746963 + 2022-03-29 09:00:00: 1.976740266466 + 2022-03-29 10:00:00: 1.963994079099 + 2022-03-29 11:00:00: 1.9513109072392 + 2022-03-29 12:00:00: 1.9386727779573 + 2022-03-29 13:00:00: 1.9380729130968 + 2022-03-29 14:00:00: 1.9251754347646 + 2022-03-29 15:00:00: 1.9123242652515 + 2022-03-29 16:00:00: 1.8995195046353 + 2022-03-29 17:00:00: 1.8867612487123 + 2022-03-29 18:00:00: 1.8740495890498 + 2022-03-29 19:00:00: 1.8590934980079 + 2022-03-29 20:00:00: 1.8463333249644 + 2022-03-29 21:00:00: 1.8336222581012 + 2022-03-29 22:00:00: 1.8209603466214 + 2022-03-29 23:00:00: 1.8083476359746 + 2022-03-30 00:00:00: 1.795784167906 + 2022-03-30 01:00:00: 1.7848604980102 + 2022-03-30 02:00:00: 1.7726225011132 + 2022-03-30 03:00:00: 1.7604340122965 + 2022-03-30 04:00:00: 1.7482950423824 + 2022-03-30 05:00:00: 1.7362055989546 + 2022-03-30 06:00:00: 1.7241656864035 + 2022-03-30 07:00:00: 1.7029084777985 + 2022-03-30 08:00:00: 1.6907116983859 + 2022-03-30 09:00:00: 1.6785653107251 + 2022-03-30 10:00:00: 1.6664693092952 + 2022-03-30 11:00:00: 1.6544236855172 + 2022-03-30 12:00:00: 1.6424284277982 + 2022-03-30 13:00:00: 1.6304835215753 + 2022-03-30 14:00:00: 1.6186814400556 + 2022-03-30 15:00:00: 1.6069646778196 + 2022-03-30 16:00:00: 1.595295956896 + 2022-03-30 17:00:00: 1.5836752788168 + 2022-03-30 18:00:00: 1.5721026420994 + 2022-03-30 19:00:00: 1.5598702868206 + 2022-03-30 20:00:00: 1.5482771928879 + 2022-03-30 21:00:00: 1.5367342321787 + 2022-03-30 22:00:00: 1.5252413653161 + 2022-03-30 23:00:00: 1.5137985503716 + 2022-03-31 00:00:00: 1.5024057429058 + 2022-03-31 01:00:00: 1.4911110638303 + 2022-03-31 02:00:00: 1.4798184809679 + 2022-03-31 03:00:00: 1.4685757565296 + 2022-03-31 04:00:00: 1.457382836416 + 2022-03-31 05:00:00: 1.4462396642097 + 2022-03-31 06:00:00: 1.4351461812139 + 2022-03-31 07:00:00: 1.4241441497153 + 2022-03-31 08:00:00: 1.4133252767512 + 2022-03-31 09:00:00: 1.4025527392862 + 2022-03-31 10:00:00: 1.3918265095683 + 2022-03-31 11:00:00: 1.3811465573595 + 2022-03-31 12:00:00: 1.3705128499733 + 2022-03-31 13:00:00: 1.3606412063921 + 2022-03-31 14:00:00: 1.3501051600297 + 2022-03-31 15:00:00: 1.3396152305893 + 2022-03-31 16:00:00: 1.3291713758727 + 2022-03-31 17:00:00: 1.3187735514201 + 2022-03-31 18:00:00: 1.3126676064103 + 2022-03-31 19:00:00: 1.3063411444605 + 2022-03-31 20:00:00: 1.3052425535092 + 2022-03-31 21:00:00: 1.3045053828686 + flow_descr: + ref: 0 + x: + - 745 + - 745.2275 + - 745.56874 + - 746.13749 + y: + - 0 + - 24.469 + - 101.116 + - 297.554 + energy_value_input: 160 + Strand: + max_vol: 11 + lrl: 732.5 + hrl: 753 + vol_head: + ref: 0 + x: + - 0 + - 0.12 + - 0.4 + - 0.73 + - 1.1 + - 1.51 + - 1.95 + - 2.91 + - 3.42 + - 3.96 + - 4.50535 + - 5.07 + - 5.65 + - 6.55 + - 7.18 + - 8.13 + - 9.55 + - 11 + - 13.5 + y: + - 732.5 + - 733 + - 734 + - 735 + - 736 + - 737 + - 738 + - 740 + - 741 + - 742 + - 743 + - 744 + - 745 + - 746.5 + - 747.5 + - 749 + - 751 + - 753 + - 756 + start_head: 734.91708984375 + inflow: + 2022-03-27 22:00:00: 0.25423949826501 + 2022-03-27 23:00:00: 0.17975708124133 + 2022-03-28 00:00:00: 0.18127978154902 + 2022-03-28 01:00:00: 0.20637131580879 + 2022-03-28 02:00:00: 0.20923455524173 + 2022-03-28 03:00:00: 0.21231415643943 + 2022-03-28 04:00:00: 0.21517474695957 + 2022-03-28 05:00:00: 0.21822636948574 + 2022-03-28 06:00:00: 0.22166181239914 + 2022-03-28 07:00:00: 0.21094564352211 + 2022-03-28 08:00:00: 0.21174765816584 + 2022-03-28 09:00:00: 0.2115700430825 + 2022-03-28 10:00:00: 0.21074885419894 + 2022-03-28 11:00:00: 0.20958308628437 + 2022-03-28 12:00:00: 0.20831520163653 + 2022-03-28 13:00:00: 0.20385479237145 + 2022-03-28 14:00:00: 0.20256885621414 + 2022-03-28 15:00:00: 0.20128719200464 + 2022-03-28 16:00:00: 0.20000981461081 + 2022-03-28 17:00:00: 0.19878941846699 + 2022-03-28 18:00:00: 0.19757988764327 + 2022-03-28 19:00:00: 0.19556225602471 + 2022-03-28 20:00:00: 0.19437758667452 + 2022-03-28 21:00:00: 0.19319675009743 + 2022-03-28 22:00:00: 0.19201976168489 + 2022-03-28 23:00:00: 0.19084663637803 + 2022-03-29 00:00:00: 0.18967513078622 + 2022-03-29 01:00:00: 0.18860393861232 + 2022-03-29 02:00:00: 0.18743076697658 + 2022-03-29 03:00:00: 0.18626142654249 + 2022-03-29 04:00:00: 0.18509593205132 + 2022-03-29 05:00:00: 0.18388984077362 + 2022-03-29 06:00:00: 0.18267447528524 + 2022-03-29 07:00:00: 0.17989001280683 + 2022-03-29 08:00:00: 0.17872561361955 + 2022-03-29 09:00:00: 0.17756515253475 + 2022-03-29 10:00:00: 0.17642019750832 + 2022-03-29 11:00:00: 0.17528090299193 + 2022-03-29 12:00:00: 0.17414565452668 + 2022-03-29 13:00:00: 0.17409177031273 + 2022-03-29 14:00:00: 0.17293322523413 + 2022-03-29 15:00:00: 0.17177883994965 + 2022-03-29 16:00:00: 0.170628623449 + 2022-03-29 17:00:00: 0.16948258433731 + 2022-03-29 18:00:00: 0.16834073083979 + 2022-03-29 19:00:00: 0.1669972662318 + 2022-03-29 20:00:00: 0.16585105491043 + 2022-03-29 21:00:00: 0.16470925466245 + 2022-03-29 22:00:00: 0.16357186990764 + 2022-03-29 23:00:00: 0.16243890472862 + 2022-03-30 00:00:00: 0.16131036287524 + 2022-03-30 01:00:00: 0.16032911959093 + 2022-03-30 02:00:00: 0.15922981391957 + 2022-03-30 03:00:00: 0.15813495542318 + 2022-03-30 04:00:00: 0.15704454507389 + 2022-03-30 05:00:00: 0.15595858355293 + 2022-03-30 06:00:00: 0.15487707125467 + 2022-03-30 07:00:00: 0.15296759455081 + 2022-03-30 08:00:00: 0.15187199133294 + 2022-03-30 09:00:00: 0.15078091466782 + 2022-03-30 10:00:00: 0.14969436405953 + 2022-03-30 11:00:00: 0.14861233873744 + 2022-03-30 12:00:00: 0.14753483766018 + 2022-03-30 13:00:00: 0.14646185951962 + 2022-03-30 14:00:00: 0.14540171093014 + 2022-03-30 15:00:00: 0.14434922633773 + 2022-03-30 16:00:00: 0.14330105716456 + 2022-03-30 17:00:00: 0.14225720354823 + 2022-03-30 18:00:00: 0.14121766535557 + 2022-03-30 19:00:00: 0.14011886645529 + 2022-03-30 20:00:00: 0.13907749064712 + 2022-03-30 21:00:00: 0.13804061816884 + 2022-03-30 22:00:00: 0.13700824548329 + 2022-03-30 23:00:00: 0.13598036882417 + 2022-03-31 00:00:00: 0.1349569841996 + 2022-03-31 01:00:00: 0.133942414179 + 2022-03-31 02:00:00: 0.13292803245546 + 2022-03-31 03:00:00: 0.13191812937733 + 2022-03-31 04:00:00: 0.13091270008497 + 2022-03-31 05:00:00: 0.12991173951059 + 2022-03-31 06:00:00: 0.1289152423816 + 2022-03-31 07:00:00: 0.12792696008959 + 2022-03-31 08:00:00: 0.12695513042602 + 2022-03-31 09:00:00: 0.12598746295315 + 2022-03-31 10:00:00: 0.12502395517811 + 2022-03-31 11:00:00: 0.1240646043847 + 2022-03-31 12:00:00: 0.12310940763676 + 2022-03-31 13:00:00: 0.12222266498877 + 2022-03-31 14:00:00: 0.12127624086255 + 2022-03-31 15:00:00: 0.12033395929286 + 2022-03-31 16:00:00: 0.11939581648914 + 2022-03-31 17:00:00: 0.1184618084577 + 2022-03-31 18:00:00: 0.11791332817659 + 2022-03-31 19:00:00: 0.11734503946402 + 2022-03-31 20:00:00: 0.11724635605418 + 2022-03-31 21:00:00: 0.11718013803887 + flow_descr: + ref: 0 + x: + - 753 + - 753.132 + - 753.33 + - 753.66 + y: + - 0 + - 10.386 + - 41.167 + - 120 + energy_value_input: 160 + Strand_tunnel: + max_vol: 0.5 + lrl: 675 + hrl: 745 + vol_head: + ref: 0 + x: + - 0 + - 0.5 + y: + - 675 + - 745 + start_head: 692.92805175781 + inflow: + 2022-03-27 22:00:00: 0 + energy_value_input: 160 + Livincovs: + max_vol: 119 + lrl: 975 + hrl: 1020 + vol_head: + ref: 0 + x: + - 0 + - 1.5 + - 3.5 + - 6.3 + - 11.3 + - 16.9 + - 22.8 + - 29.3 + - 36.3 + - 44 + - 52.4 + - 64.5 + - 78.2 + - 93.5 + - 110.3 + - 119 + - 132 + y: + - 975 + - 977 + - 979 + - 981 + - 984 + - 987 + - 990 + - 993 + - 996 + - 999 + - 1002 + - 1006 + - 1010 + - 1014 + - 1018 + - 1020 + - 1022.90002 + start_head: 977.72619628906 + inflow: + 2022-03-27 22:00:00: 0.072215267228244 + 2022-03-27 23:00:00: 0.073728870391728 + 2022-03-28 00:00:00: 0.068554826594274 + 2022-03-28 01:00:00: 0.074491396974179 + 2022-03-28 02:00:00: 0.094405031183728 + 2022-03-28 03:00:00: 0.12468767496396 + 2022-03-28 04:00:00: 0.13084141533642 + 2022-03-28 05:00:00: 0.10426654921958 + 2022-03-28 06:00:00: 0.075151142642147 + 2022-03-28 07:00:00: 0.06893205663927 + 2022-03-28 08:00:00: 0.0688067907037 + 2022-03-28 09:00:00: 0.068681731502695 + 2022-03-28 10:00:00: 0.068556878777695 + 2022-03-28 11:00:00: 0.068432232270114 + 2022-03-28 12:00:00: 0.068307791721347 + 2022-03-28 13:00:00: 0.068183556872766 + 2022-03-28 14:00:00: 0.068059527465727 + 2022-03-28 15:00:00: 0.067935703241569 + 2022-03-28 16:00:00: 0.067812083941617 + 2022-03-28 17:00:00: 0.067688669307182 + 2022-03-28 18:00:00: 0.067565459079566 + 2022-03-28 19:00:00: 0.067442453000059 + 2022-03-28 20:00:00: 0.067319650809948 + 2022-03-28 21:00:00: 0.067197052250509 + 2022-03-28 22:00:00: 0.067074657063019 + 2022-03-28 23:00:00: 0.066952464988751 + 2022-03-29 00:00:00: 0.066830475768976 + 2022-03-29 01:00:00: 0.06670868914497 + 2022-03-29 02:00:00: 0.066587104858009 + 2022-03-29 03:00:00: 0.066465722649376 + 2022-03-29 04:00:00: 0.066344542260358 + 2022-03-29 05:00:00: 0.066223563432253 + 2022-03-29 06:00:00: 0.066102785906367 + 2022-03-29 07:00:00: 0.065982209424018 + 2022-03-29 08:00:00: 0.065861833726539 + 2022-03-29 09:00:00: 0.065741658555275 + 2022-03-29 10:00:00: 0.065621683651589 + 2022-03-29 11:00:00: 0.065501908756864 + 2022-03-29 12:00:00: 0.0653823336125 + 2022-03-29 13:00:00: 0.065262957959919 + 2022-03-29 14:00:00: 0.065143781540568 + 2022-03-29 15:00:00: 0.065024804095917 + 2022-03-29 16:00:00: 0.064906025367463 + 2022-03-29 17:00:00: 0.06478744509673 + 2022-03-29 18:00:00: 0.064669063025274 + 2022-03-29 19:00:00: 0.064550878894679 + 2022-03-29 20:00:00: 0.064432892446563 + 2022-03-29 21:00:00: 0.06431510342258 + 2022-03-29 22:00:00: 0.064197511564416 + 2022-03-29 23:00:00: 0.064080116613798 + 2022-03-30 00:00:00: 0.063962918312489 + 2022-03-30 01:00:00: 0.063845916402295 + 2022-03-30 02:00:00: 0.063729110625062 + 2022-03-30 03:00:00: 0.06361250072268 + 2022-03-30 04:00:00: 0.063496086437084 + 2022-03-30 05:00:00: 0.063379867510256 + 2022-03-30 06:00:00: 0.063263843684226 + 2022-03-30 07:00:00: 0.063148014701071 + 2022-03-30 08:00:00: 0.063032380302922 + 2022-03-30 09:00:00: 0.062916940231961 + 2022-03-30 10:00:00: 0.062801694230423 + 2022-03-30 11:00:00: 0.062686642040601 + 2022-03-30 12:00:00: 0.062571783404842 + 2022-03-30 13:00:00: 0.062457118065552 + 2022-03-30 14:00:00: 0.062342645765196 + 2022-03-30 15:00:00: 0.062228366246302 + 2022-03-30 16:00:00: 0.062114279251459 + 2022-03-30 17:00:00: 0.06200038452332 + 2022-03-30 18:00:00: 0.061886681804602 + 2022-03-30 19:00:00: 0.061773170838091 + 2022-03-30 20:00:00: 0.061659851366639 + 2022-03-30 21:00:00: 0.061546723133169 + 2022-03-30 22:00:00: 0.061433785880674 + 2022-03-30 23:00:00: 0.061321039352218 + 2022-03-31 00:00:00: 0.061208483290941 + 2022-03-31 01:00:00: 0.061096117440055 + 2022-03-31 02:00:00: 0.06098394154285 + 2022-03-31 03:00:00: 0.060871955342693 + 2022-03-31 04:00:00: 0.06076015858303 + 2022-03-31 05:00:00: 0.060648551007387 + 2022-03-31 06:00:00: 0.06053713235937 + 2022-03-31 07:00:00: 0.060425902382671 + 2022-03-31 08:00:00: 0.060314860821063 + 2022-03-31 09:00:00: 0.060204007418406 + 2022-03-31 10:00:00: 0.060093341918645 + 2022-03-31 11:00:00: 0.059982864065815 + 2022-03-31 12:00:00: 0.059872573604039 + 2022-03-31 13:00:00: 0.05976247027753 + 2022-03-31 14:00:00: 0.059652553830594 + 2022-03-31 15:00:00: 0.059542824007627 + 2022-03-31 16:00:00: 0.059433280553124 + 2022-03-31 17:00:00: 0.05932392321167 + 2022-03-31 18:00:00: 0.059214751727951 + 2022-03-31 19:00:00: 0.059105765846748 + 2022-03-31 20:00:00: 0.058996965312943 + 2022-03-31 21:00:00: 0.058888349871516 + flow_descr: + ref: 0 + x: + - 1020 + - 1020.19 + - 1020.47501 + - 1020.95001 + y: + - 0 + - 6.668 + - 27.344 + - 82 + energy_value_input: 160 + production_group: + T2Landet: + max_p_limit: + 2022-03-27 22:00:00: 48.6 + # RKOM start + reserve_group: + rkom_up: + rr_up_obligation: + 2022-03-27 22:00:00: 0 + # RKOM end +connections: + - connection_type: connection_bypass + from: Hagen + #from_type: reservoir + to: b_Hagen_Strand + #to_type: gate + - connection_type: connection_bypass + from: Sirefelt + from_type: reservoir + to: b_Sirefelt_Knute_Rullsvatn + to_type: gate + - connection_type: connection_bypass + from: Danielsen + from_type: reservoir + to: b_Danielsen_Lundvann + to_type: gate + - connection_type: connection_bypass + from: Dalbysvatn + from_type: reservoir + to: b_Dalbysvatn_Knute_Rullsvatn + to_type: gate + - connection_type: connection_bypass + from: Nielsen + from_type: reservoir + to: b_Nielsen_Blakstadana + to_type: gate + - connection_type: connection_bypass + from: Lensvik + from_type: reservoir + to: b_Lensvik_Dalbysvatn + to_type: gate + - connection_type: connection_bypass + from: Livincovs + from_type: reservoir + to: b_Livincovs_Dalbysvatn + to_type: gate + - connection_type: connection_spill + from: Blakstad + from_type: creek_intake + to: f_Blakstadana_Knute_Rullsvatn + to_type: gate + - connection_type: connection_spill + from: Hagen + from_type: reservoir + to: f_Hagen_Strand + to_type: gate + - connection_type: connection_spill + from: Strand + from_type: reservoir + to: f_Finnvasstol_Dalbysvatn + to_type: gate + - connection_type: connection_spill + from: Hovden + from_type: reservoir + to: f_Hovden_Hagen + to_type: gate + - connection_type: connection_spill + from: Fjerdingby_intake + from_type: creek_intake + to: f_Fjerdingby_Dalbysvatn + to_type: gate + - connection_type: connection_spill + from: Frosta + from_type: reservoir + to: f_Frosta + to_type: gate + - connection_type: connection_spill + from: Varhaug + from_type: reservoir + to: f_Varhaug + to_type: gate + - connection_type: connection_spill + from: Tangvall + from_type: reservoir + to: f_Tangvall + to_type: gate + - connection_type: connection_spill + from: Sirefelt + from_type: reservoir + to: f_Sirefelt_Knute_Rullsvatn + to_type: gate + - connection_type: connection_spill + from: Lundvann + from_type: reservoir + to: f_Lundvann_Lensvik + to_type: gate + - connection_type: connection_spill + from: Danielsen + from_type: reservoir + to: f_Nupstj + to_type: gate + - connection_type: connection_spill + from: Golebiowski_intake + from_type: creek_intake + to: f_Golebiowski_Dalbysvatn + to_type: gate + - connection_type: connection_spill + from: Lont_intake + from_type: creek_intake + to: f_Lont_Dalbysvatn + to_type: gate + - connection_type: connection_spill + from: Dalbysvatn + from_type: reservoir + to: f_Dalbysvatn_Knute_Rullsvatn + to_type: gate + - connection_type: connection_spill + from: Nielsen + from_type: reservoir + to: f_Nielsen + to_type: gate + - connection_type: connection_spill + from: Narvhus + from_type: creek_intake + to: f_Narvhus_Rullsvatn + to_type: gate + - connection_type: connection_spill + from: Rullsvatn + from_type: reservoir + to: f_Rullsvatn_Rullslaagen + to_type: gate + - connection_type: connection_spill + from: Ranemsletta_1183 + from_type: reservoir + to: f_Ranemsletta_1183_Livincovs + to_type: gate + - connection_type: connection_spill + from: Lensvik + from_type: reservoir + to: f_Lensvik + to_type: gate + - connection_type: connection_spill + from: Livincovs + from_type: reservoir + to: f_Livincovs + to_type: gate + - connection_type: connection_standard + from: Strand + from_type: reservoir + to: w_Finnvasstol_Strand_tunnel + to_type: gate + - connection_type: connection_standard + from: Hovden + from_type: reservoir + to: w_Hovden_Livincovs + to_type: gate + - connection_type: connection_standard + from: Frosta + from_type: reservoir + to: w_Frosta + to_type: gate + - connection_type: connection_standard + from: Varhaug + from_type: reservoir + to: w_Varhaug + to_type: gate + - connection_type: connection_standard + from: Tangvall + from_type: reservoir + to: w_Tangvall + to_type: gate + - connection_type: connection_standard + from: Rullsvatn + from_type: reservoir + to: w_Rullsvatn_Rullslaagen + to_type: gate + - connection_type: generator_of_plant + from: Holen + from_type: plant + to: Holen_G1 + to_type: generator + - connection_type: generator_of_plant + from: Lund + from_type: plant + to: Lund_G1 + to_type: generator + - connection_type: generator_of_plant + from: Lien_krv + from_type: plant + to: Lien_krv_G1 + to_type: generator + - connection_type: generator_of_plant + from: Landet + from_type: plant + to: Landet_G1 + to_type: generator + - connection_type: generator_of_plant + from: Dalby + from_type: plant + to: Dalby_G1 + to_type: generator + - connection_type: generator_of_plant + from: Dalby + from_type: plant + to: Dalby_G2 + to_type: generator + - connection_type: generator_of_plant + from: Rull1 + from_type: plant + to: Rull1_G1 + to_type: generator + - connection_type: generator_of_plant + from: Rull1 + from_type: plant + to: Rull1_G2 + to_type: generator + - connection_type: generator_of_plant + from: Rull2 + from_type: plant + to: Rull2_G1 + to_type: generator + - connection_type: generator_of_plant + from: Rull2 + from_type: plant + to: Rull2_G2 + to_type: generator + - connection_type: generator_of_plant + from: Scott + from_type: plant + to: Scott_G1 + to_type: generator + - connection_type: generator_of_plant + from: Strand_krv + from_type: plant + to: Strand_krv_G1 + to_type: generator + - connection_type: connection_standard + from: Holen + from_type: plant + order: 0 + to: Blakstad + to_type: junction + - connection_type: connection_standard + from: Blakstad + from_type: creek_intake + order: 1 + to: Blakstad + to_type: junction + - connection_type: connection_standard + from: Golebiowski_intake + from_type: junction + order: 0 + to: Fjerdingby_intake + to_type: junction + - connection_type: connection_standard + from: Fjerdingby_intake + from_type: creek_intake + order: 1 + to: Fjerdingby_intake + to_type: junction + - connection_type: connection_standard + from: Blakstad + from_type: junction + order: 0 + to: Vigrestad + to_type: junction + - connection_type: connection_standard + from: Vigrestad + from_type: creek_intake + order: 1 + to: Vigrestad + to_type: junction + - connection_type: connection_standard + from: Sirefelt + from_type: reservoir + order: 0 + to: Holensfoss_junc + to_type: junction + - connection_type: connection_standard + from: Vigrestad + from_type: junction + order: 1 + to: Holensfoss_junc + to_type: junction + - connection_type: connection_standard + from: w_k_Strand + from_type: junction + order: 0 + to: Sandvika + to_type: junction + - connection_type: connection_standard + from: Sandvika + from_type: creek_intake + order: 1 + to: Sandvika + to_type: junction + - connection_type: connection_standard + from: Lont_intake + from_type: junction + order: 0 + to: Landet_intake + to_type: junction + - connection_type: connection_standard + from: Landet + from_type: plant + order: 1 + to: Landet_intake + to_type: junction + - connection_type: connection_standard + from: Strand_tunnel + from_type: reservoir + order: 0 + to: Golebiowski_intake + to_type: junction + - connection_type: connection_standard + from: Golebiowski_intake + from_type: creek_intake + order: 1 + to: Golebiowski_intake + to_type: junction + - connection_type: connection_standard + from: Lensvik + from_type: reservoir + order: 0 + to: Lont_intake + to_type: junction + - connection_type: connection_standard + from: Lont_intake + from_type: creek_intake + order: 1 + to: Lont_intake + to_type: junction + - connection_type: connection_standard + from: Dalbysvatn + from_type: reservoir + order: 0 + to: Narvhus + to_type: junction + - connection_type: connection_standard + from: Narvhus + from_type: creek_intake + order: 1 + to: Narvhus + to_type: junction + - connection_type: connection_standard + from: Holensfoss_junc + from_type: junction + order: 0 + to: Gustad + to_type: junction + - connection_type: connection_standard + from: Gustad + from_type: creek_intake + order: 1 + to: Gustad + to_type: junction + - connection_type: connection_standard + from: Landet_intake + from_type: junction + order: 0 + to: w_k_Strand + to_type: junction + - connection_type: connection_standard + from: Fjerdingby_intake + from_type: junction + order: 1 + to: w_k_Strand + to_type: junction + - connection_type: connection_standard + from: Nielsen + from_type: reservoir + to: Holen + to_type: plant + - connection_type: connection_standard + from: Danielsen + from_type: reservoir + to: Lund + to_type: plant + - connection_type: connection_standard + from: Ranemsletta_1183 + from_type: reservoir + to: Lien_krv + to_type: plant + - connection_type: connection_standard + from: Livincovs + from_type: reservoir + to: Landet + to_type: plant + - connection_type: connection_standard + from: Sandvika + from_type: junction + to: Dalby + to_type: plant + - connection_type: connection_standard + from: Narvhus + from_type: junction + to: Rull1 + to_type: plant + - connection_type: connection_standard + from: Gustad + from_type: junction + to: Rull2 + to_type: plant + - connection_type: connection_standard + from: Lundvann + from_type: reservoir + to: Scott + to_type: plant + - connection_type: connection_standard + from: Hagen + from_type: reservoir + to: Strand_krv + to_type: plant + - connection_type: connection_standard + from: f_Hovden_Hagen + from_type: gate + to: Hagen + to_type: reservoir + - connection_type: connection_standard + from: b_Nielsen_Blakstadana + from_type: gate + to: Sirefelt + to_type: reservoir + - connection_type: connection_standard + from: f_Nielsen + from_type: gate + to: Sirefelt + to_type: reservoir + - connection_type: connection_standard + from: Lund + from_type: plant + to: Lundvann + to_type: reservoir + - connection_type: connection_standard + from: b_Danielsen_Lundvann + from_type: gate + to: Lundvann + to_type: reservoir + - connection_type: connection_standard + from: Dalby + from_type: plant + to: Dalbysvatn + to_type: reservoir + - connection_type: connection_standard + from: f_Livincovs + from_type: gate + to: Dalbysvatn + to_type: reservoir + - connection_type: connection_standard + from: f_Lensvik + from_type: gate + to: Dalbysvatn + to_type: reservoir + - connection_type: connection_standard + from: b_Lensvik_Dalbysvatn + from_type: gate + to: Dalbysvatn + to_type: reservoir + - connection_type: connection_standard + from: b_Livincovs_Dalbysvatn + from_type: gate + to: Dalbysvatn + to_type: reservoir + - connection_type: connection_standard + from: f_Finnvasstol_Dalbysvatn + from_type: gate + to: Dalbysvatn + to_type: reservoir + - connection_type: connection_standard + from: f_Lont_Dalbysvatn + from_type: gate + to: Dalbysvatn + to_type: reservoir + - connection_type: connection_standard + from: f_Golebiowski_Dalbysvatn + from_type: gate + to: Dalbysvatn + to_type: reservoir + - connection_type: connection_standard + from: f_Fjerdingby_Dalbysvatn + from_type: gate + to: Dalbysvatn + to_type: reservoir + - connection_type: connection_standard + from: f_Frosta + from_type: gate + to: Nielsen + to_type: reservoir + - connection_type: connection_standard + from: w_Varhaug + from_type: gate + to: Nielsen + to_type: reservoir + - connection_type: connection_standard + from: w_Frosta + from_type: gate + to: Nielsen + to_type: reservoir + - connection_type: connection_standard + from: f_Varhaug + from_type: gate + to: Nielsen + to_type: reservoir + - connection_type: connection_standard + from: Rull1 + from_type: plant + to: Rullsvatn + to_type: reservoir + - connection_type: connection_standard + from: Rull2 + from_type: plant + to: Rullsvatn + to_type: reservoir + - connection_type: connection_standard + from: f_Dalbysvatn_Knute_Rullsvatn + from_type: gate + to: Rullsvatn + to_type: reservoir + - connection_type: connection_standard + from: b_Dalbysvatn_Knute_Rullsvatn + from_type: gate + to: Rullsvatn + to_type: reservoir + - connection_type: connection_standard + from: f_Sirefelt_Knute_Rullsvatn + from_type: gate + to: Rullsvatn + to_type: reservoir + - connection_type: connection_standard + from: b_Sirefelt_Knute_Rullsvatn + from_type: gate + to: Rullsvatn + to_type: reservoir + - connection_type: connection_standard + from: f_Blakstadana_Knute_Rullsvatn + from_type: gate + to: Rullsvatn + to_type: reservoir + - connection_type: connection_standard + from: f_Narvhus_Rullsvatn + from_type: gate + to: Rullsvatn + to_type: reservoir + - connection_type: connection_standard + from: w_Tangvall + from_type: gate + to: Ranemsletta_1183 + to_type: reservoir + - connection_type: connection_standard + from: f_Tangvall + from_type: gate + to: Ranemsletta_1183 + to_type: reservoir + - connection_type: connection_standard + from: f_Nupstj + from_type: gate + to: Lensvik + to_type: reservoir + - connection_type: connection_standard + from: f_Lundvann_Lensvik + from_type: gate + to: Lensvik + to_type: reservoir + - connection_type: connection_standard + from: Strand_krv + from_type: plant + to: Strand + to_type: reservoir + - connection_type: connection_standard + from: f_Hagen_Strand + from_type: gate + to: Strand + to_type: reservoir + - connection_type: connection_standard + from: b_Hagen_Strand + from_type: gate + to: Strand + to_type: reservoir + - connection_type: connection_standard + from: w_Finnvasstol_Strand_tunnel + from_type: gate + to: Strand_tunnel + to_type: reservoir + - connection_type: connection_standard + from: Scott + from_type: plant + to: Livincovs + to_type: reservoir + - connection_type: connection_standard + from: Lien_krv + from_type: plant + to: Livincovs + to_type: reservoir + - connection_type: connection_standard + from: w_Hovden_Livincovs + from_type: gate + to: Livincovs + to_type: reservoir + - connection_type: connection_standard + from: f_Ranemsletta_1183_Livincovs + from_type: gate + to: Livincovs + to_type: reservoir + # RKOM start + # Rull1 + - connection_type: connection_standard + from: rkom_up + from_type: reserve_group + to: Rull1_G1 + to_type: generator + - connection_type: connection_standard + from: rkom_up + from_type: reserve_group + to: Rull1_G2 + to_type: generator + # Rull2 + - connection_type: connection_standard + from: rkom_up + from_type: reserve_group + to: Rull2_G1 + to_type: generator + - connection_type: connection_standard + from: rkom_up + from_type: reserve_group + to: Rull2_G2 + to_type: generator + # Dalby + - connection_type: connection_standard + from: rkom_up + from_type: reserve_group + to: Dalby_G1 + to_type: generator + - connection_type: connection_standard + from: rkom_up + from_type: reserve_group + to: Dalby_G2 + to_type: generator + # Landet + - connection_type: connection_standard + from: rkom_up + from_type: reserve_group + to: Landet_G1 + to_type: generator + # Holen + - connection_type: connection_standard + from: rkom_up + from_type: reserve_group + to: Holen_G1 + to_type: generator + # Scott + - connection_type: connection_standard + from: rkom_up + from_type: reserve_group + to: Scott_G1 + to_type: generator +# RKOM end diff --git a/toolkit/modules/power_ops_template/files/shop_models.FileMetadata.yaml b/toolkit/modules/power_ops_template/files/shop_models.FileMetadata.yaml index 4de187ed..4d828255 100644 --- a/toolkit/modules/power_ops_template/files/shop_models.FileMetadata.yaml +++ b/toolkit/modules/power_ops_template/files/shop_models.FileMetadata.yaml @@ -1,5 +1,5 @@ -- externalId: "SHOP_model_WATERCOURSE_NAME" - name: "SHOP_model_WATERCOURSE_NAME.yaml" +- externalId: "SHOP_model_fornebu" + name: "SHOP_model_fornebu.yaml" source: "Customer" dataSetExternalId: "powerops:config" directory: "/toolkit/modules/power_ops/files/" From 372acfa71b90a63347823018ef626bd97e6698f2 Mon Sep 17 00:00:00 2001 From: Nina Odegard Date: Fri, 25 Oct 2024 09:28:31 +0200 Subject: [PATCH 8/9] fix: typo --- .../bid_process_triggers.WorkflowTrigger.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/toolkit/modules/power_ops_template/workflows/bid_process_triggers.WorkflowTrigger.yaml b/toolkit/modules/power_ops_template/workflows/bid_process_triggers.WorkflowTrigger.yaml index 48ff20f2..86a62f9d 100644 --- a/toolkit/modules/power_ops_template/workflows/bid_process_triggers.WorkflowTrigger.yaml +++ b/toolkit/modules/power_ops_template/workflows/bid_process_triggers.WorkflowTrigger.yaml @@ -3,7 +3,7 @@ triggerType: schedule cronExpression: "{{wf_day_ahead_bid_process_cron}}" input: - bigConfiguration: + bidConfiguration: externalId: "bid_configuration_day_ahead_water_value_no2_full" metadata: config: "bid_configuration_day_ahead_water_value_no2_full" @@ -20,7 +20,7 @@ triggerType: schedule cronExpression: "{{wf_day_ahead_bid_process_cron}}" input: - bigConfiguration: + bidConfiguration: externalId: "bid_configuration_day_ahead_multi_scenario_20_no2" metadata: config: "bid_configuration_day_ahead_multi_scenario_20_no2" @@ -37,7 +37,7 @@ triggerType: schedule cronExpression: "{{wf_day_ahead_bid_process_cron}}" input: - bigConfiguration: + bidConfiguration: externalId: "bid_configuration_day_ahead_multi_scenario_3_no2" metadata: config: "bid_configuration_day_ahead_multi_scenario_3_no2" @@ -54,7 +54,7 @@ triggerType: schedule cronExpression: "{{wf_day_ahead_bid_process_cron}}" input: - bigConfiguration: + bidConfiguration: externalId: "bid_configuration_day_ahead_multi_scenario_2_no2" metadata: config: "bid_configuration_day_ahead_multi_scenario_2_no2" @@ -71,7 +71,7 @@ triggerType: schedule cronExpression: "{{wf_day_ahead_bid_process_cron}}" input: - bigConfiguration: + bidConfiguration: externalId: "bid_configuration_day_ahead_no2_combination" metadata: config: "bid_configuration_day_ahead_no2_combination" @@ -88,7 +88,7 @@ triggerType: schedule cronExpression: "{{wf_day_ahead_bid_process_cron}}" input: - bigConfiguration: + bidConfiguration: externalId: "bid_configuration_day_ahead_price_independent_no2" metadata: config: "bid_configuration_day_ahead_price_independent_no2" From 81c59ff1781caa0b2841cf4e815dfae2d0fcb144 Mon Sep 17 00:00:00 2001 From: Nina Odegard Date: Fri, 25 Oct 2024 14:13:21 +0200 Subject: [PATCH 9/9] revert: model file --- toolkit/config.staging.yaml | 4 +- .../files/SHOP_model_fornebu.yaml | 5874 ----------------- .../files/shop_models.FileMetadata.yaml | 4 +- 3 files changed, 4 insertions(+), 5878 deletions(-) delete mode 100644 toolkit/modules/power_ops_template/files/SHOP_model_fornebu.yaml diff --git a/toolkit/config.staging.yaml b/toolkit/config.staging.yaml index 9906e7b6..85ec7f93 100644 --- a/toolkit/config.staging.yaml +++ b/toolkit/config.staging.yaml @@ -4,8 +4,8 @@ environment: # doesn't match the environment variables (valid options are dev, staging, prod) type: staging selected: - # - modules/power_model - - modules/power_ops_template + - modules/power_model + # - modules/power_ops_template variables: modules: diff --git a/toolkit/modules/power_ops_template/files/SHOP_model_fornebu.yaml b/toolkit/modules/power_ops_template/files/SHOP_model_fornebu.yaml deleted file mode 100644 index 61dfe5ec..00000000 --- a/toolkit/modules/power_ops_template/files/SHOP_model_fornebu.yaml +++ /dev/null @@ -1,5874 +0,0 @@ -model: - creek_intake: - Blakstad: - net_head: 641 - max_inflow: 12 - inflow: - 2022-03-27 22:00:00: 0.34375839890938 - 2022-03-27 23:00:00: 2.2106747501663 - 2022-03-28 00:00:00: 4.7635355289014 - 2022-03-28 01:00:00: 2.7145725341401 - 2022-03-28 02:00:00: 2.3222141364391 - 2022-03-28 03:00:00: 2.198249845179 - 2022-03-28 04:00:00: 1.9031420367097 - 2022-03-28 05:00:00: 1.5164121052534 - 2022-03-28 06:00:00: 1.7042214786468 - 2022-03-28 07:00:00: 1.7254814023853 - 2022-03-28 08:00:00: 1.738294446476 - 2022-03-28 09:00:00: 1.7499286904557 - 2022-03-28 10:00:00: 1.7547458436669 - 2022-03-28 11:00:00: 1.7566153956529 - 2022-03-28 12:00:00: 1.7640976953197 - 2022-03-28 13:00:00: 1.7733507860363 - 2022-03-28 14:00:00: 1.7815195007685 - 2022-03-28 15:00:00: 1.7848375326921 - 2022-03-28 16:00:00: 1.7814743490358 - 2022-03-28 17:00:00: 1.77396384625 - 2022-03-28 18:00:00: 1.7622558796098 - 2022-03-28 19:00:00: 1.7498171765082 - 2022-03-28 20:00:00: 1.7374473001563 - 2022-03-28 21:00:00: 1.7251461856645 - 2022-03-28 22:00:00: 1.7129137618406 - 2022-03-28 23:00:00: 1.7007499513199 - 2022-03-29 00:00:00: 1.6886546706948 - 2022-03-29 01:00:00: 1.6766278306419 - 2022-03-29 02:00:00: 1.6646693360478 - 2022-03-29 03:00:00: 1.6527790861335 - 2022-03-29 04:00:00: 1.6409569745768 - 2022-03-29 05:00:00: 1.6292028896333 - 2022-03-29 06:00:00: 1.6175167142558 - 2022-03-29 07:00:00: 1.6058983262122 - 2022-03-29 08:00:00: 1.5943475982019 - 2022-03-29 09:00:00: 1.5828643979704 - 2022-03-29 10:00:00: 1.5714764021737 - 2022-03-29 11:00:00: 1.5606046172504 - 2022-03-29 12:00:00: 1.5504622225625 - 2022-03-29 13:00:00: 1.5399949328559 - 2022-03-29 14:00:00: 1.5307138451358 - 2022-03-29 15:00:00: 1.521463590655 - 2022-03-29 16:00:00: 1.5109138826479 - 2022-03-29 17:00:00: 1.4999262386501 - 2022-03-29 18:00:00: 1.4890048292192 - 2022-03-29 19:00:00: 1.4781494808426 - 2022-03-29 20:00:00: 1.467360016158 - 2022-03-29 21:00:00: 1.4566362540515 - 2022-03-29 22:00:00: 1.4459780097539 - 2022-03-29 23:00:00: 1.4353850949356 - 2022-03-30 00:00:00: 1.4248573178002 - 2022-03-30 01:00:00: 1.4143944831764 - 2022-03-30 02:00:00: 1.4039963926094 - 2022-03-30 03:00:00: 1.3936628444496 - 2022-03-30 04:00:00: 1.3833936339414 - 2022-03-30 05:00:00: 1.3731885533093 - 2022-03-30 06:00:00: 1.3630473918438 - 2022-03-30 07:00:00: 1.3529699359853 - 2022-03-30 08:00:00: 1.3429559694069 - 2022-03-30 09:00:00: 1.3330052730962 - 2022-03-30 10:00:00: 1.3231176254352 - 2022-03-30 11:00:00: 1.3132928022795 - 2022-03-30 12:00:00: 1.3037016475943 - 2022-03-30 13:00:00: 1.294145875962 - 2022-03-30 14:00:00: 1.2845061406181 - 2022-03-30 15:00:00: 1.2749283170661 - 2022-03-30 16:00:00: 1.2654121697401 - 2022-03-30 17:00:00: 1.2559574609938 - 2022-03-30 18:00:00: 1.2465639511709 - 2022-03-30 19:00:00: 1.2372313986744 - 2022-03-30 20:00:00: 1.2279595600352 - 2022-03-30 21:00:00: 1.2187481899786 - 2022-03-30 22:00:00: 1.209597041491 - 2022-03-30 23:00:00: 1.2005058658843 - 2022-03-31 00:00:00: 1.1914744128598 - 2022-03-31 01:00:00: 1.182502430571 - 2022-03-31 02:00:00: 1.1735896656849 - 2022-03-31 03:00:00: 1.164735863443 - 2022-03-31 04:00:00: 1.1559407677205 - 2022-03-31 05:00:00: 1.1472041210848 - 2022-03-31 06:00:00: 1.1385256648529 - 2022-03-31 07:00:00: 1.1299051391482 - 2022-03-31 08:00:00: 1.1213422829553 - 2022-03-31 09:00:00: 1.1128368341749 - 2022-03-31 10:00:00: 1.1043885296773 - 2022-03-31 11:00:00: 1.096025167099 - 2022-03-31 12:00:00: 1.0880397416525 - 2022-03-31 13:00:00: 1.0804669564893 - 2022-03-31 14:00:00: 1.0727319590376 - 2022-03-31 15:00:00: 1.0647880958424 - 2022-03-31 16:00:00: 1.0567199705802 - 2022-03-31 17:00:00: 1.0486517524901 - 2022-03-31 18:00:00: 1.0406386034572 - 2022-03-31 19:00:00: 1.032680253459 - 2022-03-31 20:00:00: 1.0247764319156 - 2022-03-31 21:00:00: 1.0169268677337 - Fjerdingby_intake: - net_head: 752.7 - max_inflow: 10 - inflow: - 2022-03-27 22:00:00: 0.42737768307707 - 2022-03-27 23:00:00: 0.30217242175934 - 2022-03-28 00:00:00: 0.30473208748383 - 2022-03-28 01:00:00: 0.34691106380328 - 2022-03-28 02:00:00: 0.35172418152612 - 2022-03-28 03:00:00: 0.35690100430014 - 2022-03-28 04:00:00: 0.36170966918924 - 2022-03-28 05:00:00: 0.36683945969685 - 2022-03-28 06:00:00: 0.37261445391565 - 2022-03-28 07:00:00: 0.35460052823778 - 2022-03-28 08:00:00: 0.3559487182813 - 2022-03-28 09:00:00: 0.35565014656716 - 2022-03-28 10:00:00: 0.35426972454455 - 2022-03-28 11:00:00: 0.35231006369825 - 2022-03-28 12:00:00: 0.35017874418691 - 2022-03-28 13:00:00: 0.34268077715073 - 2022-03-28 14:00:00: 0.34051911297485 - 2022-03-28 15:00:00: 0.33836462996147 - 2022-03-28 16:00:00: 0.33621735310358 - 2022-03-28 17:00:00: 0.33416586197044 - 2022-03-28 18:00:00: 0.33213263548682 - 2022-03-28 19:00:00: 0.32874098811367 - 2022-03-28 20:00:00: 0.32674955387331 - 2022-03-28 21:00:00: 0.32476456254092 - 2022-03-28 22:00:00: 0.32278603998957 - 2022-03-28 23:00:00: 0.32081401133539 - 2022-03-29 00:00:00: 0.31884470542911 - 2022-03-29 01:00:00: 0.31704402680704 - 2022-03-29 02:00:00: 0.31507192027382 - 2022-03-29 03:00:00: 0.31310625400693 - 2022-03-29 04:00:00: 0.31114705278653 - 2022-03-29 05:00:00: 0.30911960819448 - 2022-03-29 06:00:00: 0.30707657361464 - 2022-03-29 07:00:00: 0.30239588028903 - 2022-03-29 08:00:00: 0.30043852027913 - 2022-03-29 09:00:00: 0.29848778023636 - 2022-03-29 10:00:00: 0.29656310594395 - 2022-03-29 11:00:00: 0.29464794699312 - 2022-03-29 12:00:00: 0.29273958947155 - 2022-03-29 13:00:00: 0.29264900987762 - 2022-03-29 14:00:00: 0.29070149064946 - 2022-03-29 15:00:00: 0.28876096405297 - 2022-03-29 16:00:00: 0.28682744519992 - 2022-03-29 17:00:00: 0.28490094855556 - 2022-03-29 18:00:00: 0.28298148794653 - 2022-03-29 19:00:00: 0.28072311819919 - 2022-03-29 20:00:00: 0.27879633206963 - 2022-03-29 21:00:00: 0.27687696097329 - 2022-03-29 22:00:00: 0.27496501233984 - 2022-03-29 23:00:00: 0.27306049303216 - 2022-03-30 00:00:00: 0.27116340935381 - 2022-03-30 01:00:00: 0.26951393519954 - 2022-03-30 02:00:00: 0.26766599766809 - 2022-03-30 03:00:00: 0.26582553585677 - 2022-03-30 04:00:00: 0.26399255139975 - 2022-03-30 05:00:00: 0.26216704544215 - 2022-03-30 06:00:00: 0.26034901864693 - 2022-03-30 07:00:00: 0.25713918014758 - 2022-03-30 08:00:00: 0.25529746645627 - 2022-03-30 09:00:00: 0.25346336191949 - 2022-03-30 10:00:00: 0.25163686570358 - 2022-03-30 11:00:00: 0.2498179765131 - 2022-03-30 12:00:00: 0.24800669259753 - 2022-03-30 13:00:00: 0.24620301175786 - 2022-03-30 14:00:00: 0.2444208974484 - 2022-03-30 15:00:00: 0.24265166635075 - 2022-03-30 16:00:00: 0.2408896894913 - 2022-03-30 17:00:00: 0.23913496710134 - 2022-03-30 18:00:00: 0.23738749895701 - 2022-03-30 19:00:00: 0.23554041330991 - 2022-03-30 20:00:00: 0.23378985612607 - 2022-03-30 21:00:00: 0.23204686905899 - 2022-03-30 22:00:00: 0.23031144616273 - 2022-03-30 23:00:00: 0.22858358110612 - 2022-03-31 00:00:00: 0.22686326717877 - 2022-03-31 01:00:00: 0.22515777063838 - 2022-03-31 02:00:00: 0.22345259062615 - 2022-03-31 03:00:00: 0.22175493923597 - 2022-03-31 04:00:00: 0.22006480829881 - 2022-03-31 05:00:00: 0.21838218929567 - 2022-03-31 06:00:00: 0.21670707336331 - 2022-03-31 07:00:00: 0.21504576660701 - 2022-03-31 08:00:00: 0.21341211678943 - 2022-03-31 09:00:00: 0.21178546363221 - 2022-03-31 10:00:00: 0.21016580294482 - 2022-03-31 11:00:00: 0.20855313016129 - 2022-03-31 12:00:00: 0.20694744034597 - 2022-03-31 13:00:00: 0.20545682216521 - 2022-03-31 14:00:00: 0.20386587916448 - 2022-03-31 15:00:00: 0.20228189981899 - 2022-03-31 16:00:00: 0.20070487775678 - 2022-03-31 17:00:00: 0.19913480626443 - 2022-03-31 18:00:00: 0.19821280856796 - 2022-03-31 19:00:00: 0.19725751281354 - 2022-03-31 20:00:00: 0.19709162557988 - 2022-03-31 21:00:00: 0.19698031281315 - overflow_cost: - 2022-03-27 22:00:00: 100000 - Vigrestad: - net_head: 762 - max_inflow: 10 - inflow: - 2022-03-27 22:00:00: 0.051888060212736 - 2022-03-27 23:00:00: 0.33368675474209 - 2022-03-28 00:00:00: 0.71902423077758 - 2022-03-28 01:00:00: 0.40974679760605 - 2022-03-28 02:00:00: 0.3505228885191 - 2022-03-28 03:00:00: 0.33181129738552 - 2022-03-28 04:00:00: 0.28726672252222 - 2022-03-28 05:00:00: 0.2288923932458 - 2022-03-28 06:00:00: 0.25724097790896 - 2022-03-28 07:00:00: 0.26045002300155 - 2022-03-28 08:00:00: 0.26238406739261 - 2022-03-28 09:00:00: 0.26414017969142 - 2022-03-28 10:00:00: 0.26486729715727 - 2022-03-28 11:00:00: 0.26514949368346 - 2022-03-28 12:00:00: 0.26627889740674 - 2022-03-28 13:00:00: 0.2676755903451 - 2022-03-28 14:00:00: 0.26890860388959 - 2022-03-28 15:00:00: 0.26940943889692 - 2022-03-28 16:00:00: 0.26890178853371 - 2022-03-28 17:00:00: 0.26776812773584 - 2022-03-28 18:00:00: 0.26600088748828 - 2022-03-28 19:00:00: 0.26412334739746 - 2022-03-28 20:00:00: 0.26225619625 - 2022-03-28 21:00:00: 0.26039942425125 - 2022-03-28 22:00:00: 0.25855302065518 - 2022-03-28 23:00:00: 0.25671697378414 - 2022-03-29 00:00:00: 0.25489127104827 - 2022-03-29 01:00:00: 0.25307589896481 - 2022-03-29 02:00:00: 0.25127084317703 - 2022-03-29 03:00:00: 0.24947608847299 - 2022-03-29 04:00:00: 0.24769161880405 - 2022-03-29 05:00:00: 0.24591741730314 - 2022-03-29 06:00:00: 0.24415346630275 - 2022-03-29 07:00:00: 0.24239974735278 - 2022-03-29 08:00:00: 0.24065624123802 - 2022-03-29 09:00:00: 0.23892292799553 - 2022-03-29 10:00:00: 0.23720398523377 - 2022-03-29 11:00:00: 0.2355629610944 - 2022-03-29 12:00:00: 0.23403203359434 - 2022-03-29 13:00:00: 0.23245206533674 - 2022-03-29 14:00:00: 0.2310511464356 - 2022-03-29 15:00:00: 0.22965488160831 - 2022-03-29 16:00:00: 0.22806247285251 - 2022-03-29 17:00:00: 0.22640396055096 - 2022-03-29 18:00:00: 0.22475544591988 - 2022-03-29 19:00:00: 0.2231169027687 - 2022-03-29 20:00:00: 0.22148830432574 - 2022-03-29 21:00:00: 0.21986962325306 - 2022-03-29 22:00:00: 0.21826083166097 - 2022-03-29 23:00:00: 0.21666190112236 - 2022-03-30 00:00:00: 0.21507280268682 - 2022-03-30 01:00:00: 0.21349350689455 - 2022-03-30 02:00:00: 0.21192398379009 - 2022-03-30 03:00:00: 0.21036420293579 - 2022-03-30 04:00:00: 0.20881413342512 - 2022-03-30 05:00:00: 0.20727374389574 - 2022-03-30 06:00:00: 0.20574300254246 - 2022-03-30 07:00:00: 0.20422187712985 - 2022-03-30 08:00:00: 0.20271033500482 - 2022-03-30 09:00:00: 0.20120834310886 - 2022-03-30 10:00:00: 0.19971586799022 - 2022-03-30 11:00:00: 0.19823287581577 - 2022-03-30 12:00:00: 0.19678515435386 - 2022-03-30 13:00:00: 0.19534277373011 - 2022-03-30 14:00:00: 0.19388771933859 - 2022-03-30 15:00:00: 0.19244201012318 - 2022-03-30 16:00:00: 0.19100561052681 - 2022-03-30 17:00:00: 0.18957848467831 - 2022-03-30 18:00:00: 0.18816059640316 - 2022-03-30 19:00:00: 0.18675190923388 - 2022-03-30 20:00:00: 0.1853523864204 - 2022-03-30 21:00:00: 0.18396199094016 - 2022-03-30 22:00:00: 0.18258068550807 - 2022-03-30 23:00:00: 0.18120843258631 - 2022-03-31 00:00:00: 0.17984519439393 - 2022-03-31 01:00:00: 0.17849093291637 - 2022-03-31 02:00:00: 0.1771456099147 - 2022-03-31 03:00:00: 0.17580918693479 - 2022-03-31 04:00:00: 0.1744816253163 - 2022-03-31 05:00:00: 0.17316288620147 - 2022-03-31 06:00:00: 0.17185293054384 - 2022-03-31 07:00:00: 0.17055171911671 - 2022-03-31 08:00:00: 0.16925921252155 - 2022-03-31 09:00:00: 0.16797537119622 - 2022-03-31 10:00:00: 0.16670015542299 - 2022-03-31 11:00:00: 0.16543776107155 - 2022-03-31 12:00:00: 0.16423241383435 - 2022-03-31 13:00:00: 0.16308935192291 - 2022-03-31 14:00:00: 0.16192180513775 - 2022-03-31 15:00:00: 0.16072273144791 - 2022-03-31 16:00:00: 0.15950490121966 - 2022-03-31 17:00:00: 0.15828705697963 - 2022-03-31 18:00:00: 0.15707752505015 - 2022-03-31 19:00:00: 0.15587626467305 - 2022-03-31 20:00:00: 0.15468323500612 - 2022-03-31 21:00:00: 0.15349839512962 - Sandvika: - net_head: 1000 - inflow: - 2022-03-27 22:00:00: 0 - Golebiowski_intake: - net_head: 753 - max_inflow: 10 - inflow: - 2022-03-27 22:00:00: 0.11887326284263 - 2022-03-27 23:00:00: 0.084047958370147 - 2022-03-28 00:00:00: 0.084759918372986 - 2022-03-28 01:00:00: 0.096491819071111 - 2022-03-28 02:00:00: 0.097830567047 - 2022-03-28 03:00:00: 0.099270478017259 - 2022-03-28 04:00:00: 0.10060798745661 - 2022-03-28 05:00:00: 0.10203481660442 - 2022-03-28 06:00:00: 0.10364110638713 - 2022-03-28 07:00:00: 0.098630610503224 - 2022-03-28 08:00:00: 0.099005603760361 - 2022-03-28 09:00:00: 0.098922557323316 - 2022-03-28 10:00:00: 0.098538598879941 - 2022-03-28 11:00:00: 0.097993527651168 - 2022-03-28 12:00:00: 0.097400710303644 - 2022-03-28 13:00:00: 0.095315183048547 - 2022-03-28 14:00:00: 0.094713925463202 - 2022-03-28 15:00:00: 0.094114665287296 - 2022-03-28 16:00:00: 0.093517409472518 - 2022-03-28 17:00:00: 0.092946796044759 - 2022-03-28 18:00:00: 0.092381262850639 - 2022-03-28 19:00:00: 0.091437890733604 - 2022-03-28 20:00:00: 0.090883981872047 - 2022-03-28 21:00:00: 0.090331865077606 - 2022-03-28 22:00:00: 0.089781547546768 - 2022-03-28 23:00:00: 0.089233036265472 - 2022-03-29 00:00:00: 0.088685282304786 - 2022-03-29 01:00:00: 0.088184431297322 - 2022-03-29 02:00:00: 0.087635898354307 - 2022-03-29 03:00:00: 0.087089156743649 - 2022-03-29 04:00:00: 0.086544213357843 - 2022-03-29 05:00:00: 0.085980288371974 - 2022-03-29 06:00:00: 0.085412027098111 - 2022-03-29 07:00:00: 0.084110112398273 - 2022-03-29 08:00:00: 0.083565681137243 - 2022-03-29 09:00:00: 0.083023091191571 - 2022-03-29 10:00:00: 0.082487751322159 - 2022-03-29 11:00:00: 0.081955058104048 - 2022-03-29 12:00:00: 0.081424256674207 - 2022-03-29 13:00:00: 0.081399062350066 - 2022-03-29 14:00:00: 0.080857368260114 - 2022-03-29 15:00:00: 0.080317619140562 - 2022-03-29 16:00:00: 0.079779819194681 - 2022-03-29 17:00:00: 0.079243972445918 - 2022-03-29 18:00:00: 0.078710082740093 - 2022-03-29 19:00:00: 0.078081926916331 - 2022-03-29 20:00:00: 0.077545999648507 - 2022-03-29 21:00:00: 0.077012134840251 - 2022-03-29 22:00:00: 0.0764803345581 - 2022-03-29 23:00:00: 0.075950600710933 - 2022-03-30 00:00:00: 0.075422935052053 - 2022-03-30 01:00:00: 0.074964140916427 - 2022-03-30 02:00:00: 0.074450145046753 - 2022-03-30 03:00:00: 0.073938228516453 - 2022-03-30 04:00:00: 0.073428391780062 - 2022-03-30 05:00:00: 0.072920635156094 - 2022-03-30 06:00:00: 0.072414958828948 - 2022-03-30 07:00:00: 0.071522156067538 - 2022-03-30 08:00:00: 0.071009891332208 - 2022-03-30 09:00:00: 0.070499743050454 - 2022-03-30 10:00:00: 0.069991710990399 - 2022-03-30 11:00:00: 0.069485794791723 - 2022-03-30 12:00:00: 0.068981993967524 - 2022-03-30 13:00:00: 0.068480307906161 - 2022-03-30 14:00:00: 0.067984620482336 - 2022-03-30 15:00:00: 0.067492516468421 - 2022-03-30 16:00:00: 0.067002430189633 - 2022-03-30 17:00:00: 0.066514361710305 - 2022-03-30 18:00:00: 0.066028310968176 - 2022-03-30 19:00:00: 0.065514552046465 - 2022-03-30 20:00:00: 0.06502764210129 - 2022-03-30 21:00:00: 0.064542837751506 - 2022-03-30 22:00:00: 0.064060137343275 - 2022-03-30 23:00:00: 0.063579539115608 - 2022-03-31 00:00:00: 0.063101041202042 - 2022-03-31 01:00:00: 0.062626664680873 - 2022-03-31 02:00:00: 0.06215237620065 - 2022-03-31 03:00:00: 0.061680181774244 - 2022-03-31 04:00:00: 0.061210079129471 - 2022-03-31 05:00:00: 0.060742065896809 - 2022-03-31 06:00:00: 0.060276139610986 - 2022-03-31 07:00:00: 0.059814054288041 - 2022-03-31 08:00:00: 0.05935966162355 - 2022-03-31 09:00:00: 0.058907215050018 - 2022-03-31 10:00:00: 0.058456713401869 - 2022-03-31 11:00:00: 0.058008155409101 - 2022-03-31 12:00:00: 0.057561539698879 - 2022-03-31 13:00:00: 0.057146930668469 - 2022-03-31 14:00:00: 0.056704416721247 - 2022-03-31 15:00:00: 0.056263839684752 - 2022-03-31 16:00:00: 0.055825197786655 - 2022-03-31 17:00:00: 0.055388489159644 - 2022-03-31 18:00:00: 0.055132039469234 - 2022-03-31 19:00:00: 0.054866328067342 - 2022-03-31 20:00:00: 0.054820187247385 - 2022-03-31 21:00:00: 0.05478922608048 - overflow_cost: - 2022-03-27 22:00:00: 100000 - Lont_intake: - net_head: 753 - max_inflow: 10 - inflow: - 2022-03-27 22:00:00: 0.19529178895575 - 2022-03-27 23:00:00: 0.13807878875096 - 2022-03-28 00:00:00: 0.13924843732705 - 2022-03-28 01:00:00: 0.15852227418825 - 2022-03-28 02:00:00: 0.16072164586293 - 2022-03-28 03:00:00: 0.1630872138855 - 2022-03-28 04:00:00: 0.16528455082157 - 2022-03-28 05:00:00: 0.16762862727869 - 2022-03-28 06:00:00: 0.17026753192172 - 2022-03-28 07:00:00: 0.16203600296958 - 2022-03-28 08:00:00: 0.16265206332059 - 2022-03-28 09:00:00: 0.1625156298883 - 2022-03-28 10:00:00: 0.16188484101705 - 2022-03-28 11:00:00: 0.16098936685549 - 2022-03-28 12:00:00: 0.1600154526417 - 2022-03-28 13:00:00: 0.15658922929404 - 2022-03-28 14:00:00: 0.15560144897526 - 2022-03-28 15:00:00: 0.15461695011484 - 2022-03-28 16:00:00: 0.15363574413342 - 2022-03-28 17:00:00: 0.15269830778782 - 2022-03-28 18:00:00: 0.15176921754034 - 2022-03-28 19:00:00: 0.15021939191949 - 2022-03-28 20:00:00: 0.14930939878979 - 2022-03-28 21:00:00: 0.14840234977035 - 2022-03-28 22:00:00: 0.14749825668398 - 2022-03-28 23:00:00: 0.14659713100756 - 2022-03-29 00:00:00: 0.14569724950072 - 2022-03-29 01:00:00: 0.1448744228456 - 2022-03-29 02:00:00: 0.14397326158208 - 2022-03-29 03:00:00: 0.14307504322171 - 2022-03-29 04:00:00: 0.14217977908789 - 2022-03-29 05:00:00: 0.14125333089682 - 2022-03-29 06:00:00: 0.14031975880404 - 2022-03-29 07:00:00: 0.13818089894002 - 2022-03-29 08:00:00: 0.13728647615404 - 2022-03-29 09:00:00: 0.13639507838615 - 2022-03-29 10:00:00: 0.13551559145783 - 2022-03-29 11:00:00: 0.13464045259951 - 2022-03-29 12:00:00: 0.13376842167905 - 2022-03-29 13:00:00: 0.13372703100368 - 2022-03-29 14:00:00: 0.13283710499876 - 2022-03-29 15:00:00: 0.13195037430235 - 2022-03-29 16:00:00: 0.13106684581983 - 2022-03-29 17:00:00: 0.13018652616115 - 2022-03-29 18:00:00: 0.12930942164444 - 2022-03-29 19:00:00: 0.12827745136254 - 2022-03-29 20:00:00: 0.12739699942255 - 2022-03-29 21:00:00: 0.12651993580898 - 2022-03-29 22:00:00: 0.12564626391688 - 2022-03-29 23:00:00: 0.12477598688225 - 2022-03-30 00:00:00: 0.12390910758552 - 2022-03-30 01:00:00: 0.1231553743627 - 2022-03-30 02:00:00: 0.12231095257681 - 2022-03-30 03:00:00: 0.12146994684846 - 2022-03-30 04:00:00: 0.12063235792439 - 2022-03-30 05:00:00: 0.11979818632787 - 2022-03-30 06:00:00: 0.11896743236184 - 2022-03-30 07:00:00: 0.1175006849681 - 2022-03-30 08:00:00: 0.11665910718863 - 2022-03-30 09:00:00: 0.11582100644003 - 2022-03-30 10:00:00: 0.11498638234137 - 2022-03-30 11:00:00: 0.11415523430069 - 2022-03-30 12:00:00: 0.11332756151807 - 2022-03-30 13:00:00: 0.11250336298869 - 2022-03-30 14:00:00: 0.11168901936384 - 2022-03-30 15:00:00: 0.11088056276955 - 2022-03-30 16:00:00: 0.11007542102583 - 2022-03-30 17:00:00: 0.10927359423836 - 2022-03-30 18:00:00: 0.10847508230486 - 2022-03-30 19:00:00: 0.10763104979062 - 2022-03-30 20:00:00: 0.10683112630926 - 2022-03-30 21:00:00: 0.10603466202033 - 2022-03-30 22:00:00: 0.10524165420681 - 2022-03-30 23:00:00: 0.10445209997564 - 2022-03-31 00:00:00: 0.1036659962605 - 2022-03-31 01:00:00: 0.10288666340429 - 2022-03-31 02:00:00: 0.10210747518678 - 2022-03-31 03:00:00: 0.10133172720054 - 2022-03-31 04:00:00: 0.1005594157127 - 2022-03-31 05:00:00: 0.099790536830472 - 2022-03-31 06:00:00: 0.099025086503762 - 2022-03-31 07:00:00: 0.098265946330354 - 2022-03-31 08:00:00: 0.097519444095832 - 2022-03-31 09:00:00: 0.096776139010744 - 2022-03-31 10:00:00: 0.096036029160214 - 2022-03-31 11:00:00: 0.095299112457808 - 2022-03-31 12:00:00: 0.094565386648158 - 2022-03-31 13:00:00: 0.093884243241056 - 2022-03-31 14:00:00: 0.093157256042048 - 2022-03-31 15:00:00: 0.092433450910664 - 2022-03-31 16:00:00: 0.091712824935218 - 2022-03-31 17:00:00: 0.090995375047986 - 2022-03-31 18:00:00: 0.090574064842313 - 2022-03-31 19:00:00: 0.090137538967777 - 2022-03-31 20:00:00: 0.090061736192132 - 2022-03-31 21:00:00: 0.090010871417931 - overflow_cost: - 2022-03-27 22:00:00: 100000 - Narvhus: - net_head: 380.77 - max_inflow: 5 - inflow: - 2022-03-27 22:00:00: 0.56298036345121 - 2022-03-27 23:00:00: 0.56298036345121 - 2022-03-28 00:00:00: 0.56298036345121 - 2022-03-28 01:00:00: 0.56298036345121 - 2022-03-28 02:00:00: 0.56298036345121 - 2022-03-28 03:00:00: 0.56298036345121 - 2022-03-28 07:00:00: 0.56298036345121 - 2022-03-28 08:00:00: 0.56298036345121 - 2022-03-28 09:00:00: 0.56298036345121 - 2022-03-28 10:00:00: 0.56298036345121 - 2022-03-28 14:00:00: 0.56298036345121 - 2022-03-28 15:00:00: 0.56298036345121 - 2022-03-28 20:00:00: 0.56298036345121 - 2022-03-28 21:00:00: 0.34559745643301 - 2022-03-29 21:00:00: 0.29696442101222 - 2022-03-29 22:00:00: 0.29696442101222 - 2022-03-30 00:00:00: 0.29696442101222 - 2022-03-30 02:00:00: 0.29696442101222 - 2022-03-30 04:00:00: 0.29696442101222 - 2022-03-30 06:00:00: 0.29696442101222 - 2022-03-30 07:00:00: 0.29696442101222 - 2022-03-30 08:00:00: 0.29696442101222 - 2022-03-30 09:00:00: 0.29696442101222 - 2022-03-30 10:00:00: 0.29696442101222 - 2022-03-30 11:00:00: 0.29696442101222 - 2022-03-30 12:00:00: 0.29696442101222 - 2022-03-30 13:00:00: 0.29696442101222 - 2022-03-30 14:00:00: 0.29696442101222 - 2022-03-30 15:00:00: 0.29696442101222 - 2022-03-30 16:00:00: 0.29696442101222 - 2022-03-30 17:00:00: 0.29696442101222 - 2022-03-30 18:00:00: 0.29696442101222 - 2022-03-30 19:00:00: 0.29696442101222 - 2022-03-30 20:00:00: 0.29696442101222 - 2022-03-30 21:00:00: 0.26232750483094 - 2022-03-31 21:00:00: 0.23120730320663 - overflow_cost: - 2022-03-27 22:00:00: 100000 - Gustad: - net_head: 762 - max_inflow: 10 - inflow: - 2022-03-27 22:00:00: 0.090804105372288 - 2022-03-27 23:00:00: 0.58395182079865 - 2022-03-28 00:00:00: 1.2582924038608 - 2022-03-28 01:00:00: 0.71705689581059 - 2022-03-28 02:00:00: 0.61341505490843 - 2022-03-28 03:00:00: 0.58066977042465 - 2022-03-28 04:00:00: 0.50271676441389 - 2022-03-28 05:00:00: 0.40056168818014 - 2022-03-28 06:00:00: 0.45017171134067 - 2022-03-28 07:00:00: 0.45578754025271 - 2022-03-28 08:00:00: 0.45917211793706 - 2022-03-28 09:00:00: 0.46224531445999 - 2022-03-28 10:00:00: 0.46351777002523 - 2022-03-28 11:00:00: 0.46401161394605 - 2022-03-28 12:00:00: 0.4659880704618 - 2022-03-28 13:00:00: 0.46843228310392 - 2022-03-28 14:00:00: 0.47059005680678 - 2022-03-28 15:00:00: 0.47146651806961 - 2022-03-28 16:00:00: 0.470578129934 - 2022-03-28 17:00:00: 0.46859422353773 - 2022-03-28 18:00:00: 0.46550155310449 - 2022-03-28 19:00:00: 0.46221585794555 - 2022-03-28 20:00:00: 0.4589483434375 - 2022-03-28 21:00:00: 0.45569899243969 - 2022-03-28 22:00:00: 0.45246778614657 - 2022-03-28 23:00:00: 0.44925470412224 - 2022-03-29 00:00:00: 0.44605972433447 - 2022-03-29 01:00:00: 0.44288282318842 - 2022-03-29 02:00:00: 0.4397239755598 - 2022-03-29 03:00:00: 0.43658315482773 - 2022-03-29 04:00:00: 0.43346033290709 - 2022-03-29 05:00:00: 0.43035548028049 - 2022-03-29 06:00:00: 0.42726856602982 - 2022-03-29 07:00:00: 0.42419955786736 - 2022-03-29 08:00:00: 0.42114842216653 - 2022-03-29 09:00:00: 0.41811512399217 - 2022-03-29 10:00:00: 0.4151069741591 - 2022-03-29 11:00:00: 0.4122351819152 - 2022-03-29 12:00:00: 0.40955605879009 - 2022-03-29 13:00:00: 0.4067911143393 - 2022-03-29 14:00:00: 0.4043395062623 - 2022-03-29 15:00:00: 0.40189604281454 - 2022-03-29 16:00:00: 0.3991093274919 - 2022-03-29 17:00:00: 0.39620693096417 - 2022-03-29 18:00:00: 0.3933220303598 - 2022-03-29 19:00:00: 0.39045457984522 - 2022-03-29 20:00:00: 0.38760453257004 - 2022-03-29 21:00:00: 0.38477184069286 - 2022-03-29 22:00:00: 0.3819564554067 - 2022-03-29 23:00:00: 0.37915832696413 - 2022-03-30 00:00:00: 0.37637740470193 - 2022-03-30 01:00:00: 0.37361363706546 - 2022-03-30 02:00:00: 0.37086697163266 - 2022-03-30 03:00:00: 0.36813735513764 - 2022-03-30 04:00:00: 0.36542473349395 - 2022-03-30 05:00:00: 0.36272905181755 - 2022-03-30 06:00:00: 0.36005025444931 - 2022-03-30 07:00:00: 0.35738828497725 - 2022-03-30 08:00:00: 0.35474308625844 - 2022-03-30 09:00:00: 0.35211460044051 - 2022-03-30 10:00:00: 0.34950276898288 - 2022-03-30 11:00:00: 0.34690753267759 - 2022-03-30 12:00:00: 0.34437402011926 - 2022-03-30 13:00:00: 0.3418498540277 - 2022-03-30 14:00:00: 0.33930350884252 - 2022-03-30 15:00:00: 0.33677351771557 - 2022-03-30 16:00:00: 0.33425981842192 - 2022-03-30 17:00:00: 0.33176234818705 - 2022-03-30 18:00:00: 0.32928104370552 - 2022-03-30 19:00:00: 0.32681584115929 - 2022-03-30 20:00:00: 0.3243666762357 - 2022-03-30 21:00:00: 0.32193348414529 - 2022-03-30 22:00:00: 0.31951619963913 - 2022-03-30 23:00:00: 0.31711475702604 - 2022-03-31 00:00:00: 0.31472909018938 - 2022-03-31 01:00:00: 0.31235913260365 - 2022-03-31 02:00:00: 0.31000481735072 - 2022-03-31 03:00:00: 0.30766607713589 - 2022-03-31 04:00:00: 0.30534284430352 - 2022-03-31 05:00:00: 0.30303505085258 - 2022-03-31 06:00:00: 0.30074262845172 - 2022-03-31 07:00:00: 0.29846550845424 - 2022-03-31 08:00:00: 0.29620362191272 - 2022-03-31 09:00:00: 0.29395689959338 - 2022-03-31 10:00:00: 0.29172527199022 - 2022-03-31 11:00:00: 0.28951608187522 - 2022-03-31 12:00:00: 0.28740672421011 - 2022-03-31 13:00:00: 0.28540636586509 - 2022-03-31 14:00:00: 0.28336315899106 - 2022-03-31 15:00:00: 0.28126478003385 - 2022-03-31 16:00:00: 0.2791335771344 - 2022-03-31 17:00:00: 0.27700234971435 - 2022-03-31 18:00:00: 0.27488566883776 - 2022-03-31 19:00:00: 0.27278346317784 - 2022-03-31 20:00:00: 0.27069566126071 - 2022-03-31 21:00:00: 0.26862219147684 - gate: - b_Hagen_Strand: - max_flow: - 2022-03-27 22:00:00: 0 - b_Sirefelt_Knute_Rullsvatn: - max_flow: - 2022-03-27 22:00:00: 0 - b_Danielsen_Lundvann: - max_flow: - 2022-03-27 22:00:00: 1000 - b_Dalbysvatn_Knute_Rullsvatn: - max_flow: - 2022-03-27 22:00:00: 0 - b_Nielsen_Blakstadana: - max_flow: - 2022-03-27 22:00:00: 10 - b_Lensvik_Dalbysvatn: - max_flow: - 2022-03-27 22:00:00: 1000 - b_Livincovs_Dalbysvatn: - max_flow: - 2022-03-27 22:00:00: 0 - f_Blakstadana_Knute_Rullsvatn: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Hagen_Strand: - max_flow: - 2022-03-27 22:00:00: 100 - f_Finnvasstol_Dalbysvatn: - max_flow: - 2022-03-27 22:00:00: 10 - f_Hovden_Hagen: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Fjerdingby_Dalbysvatn: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Frosta: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Varhaug: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Tangvall: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Sirefelt_Knute_Rullsvatn: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Lundvann_Lensvik: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Nupstj: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Golebiowski_Dalbysvatn: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Lont_Dalbysvatn: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Dalbysvatn_Knute_Rullsvatn: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Nielsen: - max_flow: - 2022-03-27 22:00:00: 10 - f_Narvhus_Rullsvatn: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Rullsvatn_Rullslaagen: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Ranemsletta_1183_Livincovs: - max_flow: - 2022-03-27 22:00:00: 1000 - f_Lensvik: - max_flow: - 2022-03-27 22:00:00: 0 - f_Livincovs: - max_flow: - 2022-03-27 22:00:00: 1000 - w_Finnvasstol_Strand_tunnel: - max_flow: - 2022-03-27 22:00:00: 6 - w_Hovden_Livincovs: - max_flow: - 2022-03-27 22:00:00: 10 - w_Frosta: - max_flow: - 2022-03-27 22:00:00: 1000 - w_Varhaug: - max_flow: - 2022-03-27 22:00:00: 30 - schedule_m3s: - 2022-03-27 22:00:00: 0.001 - schedule_flag: - 2022-03-27 22:00:00: 1 - w_Tangvall: - max_flow: - 2022-03-27 22:00:00: 1000 - w_Rullsvatn_Rullslaagen: - max_flow: - 2022-03-27 22:00:00: 0 - generator: - Holen_G1: - penstock: 1 - p_min: 27 - p_max: 42 - p_nom: 45 - gen_eff_curve: - ref: 0 - x: - - 15 - - 16.9 - - 21.8 - - 25.8 - - 28.2 - - 32.5 - - 38.5 - - 41.5 - - 43 - - 44 - y: - - 97 - - 97.5 - - 97.9 - - 98.2 - - 98.3 - - 98.43 - - 98.6 - - 98.64 - - 98.65 - - 98.63 - turb_eff_curves: - - ref: 300 - x: - - 5.9 - - 6.2367 - - 6.5733 - - 6.91 - - 7.2467 - - 7.5833 - - 7.92 - - 8.2567 - - 8.5933 - - 8.93 - - 9.2667 - - 9.6033 - - 9.94 - - 10.2767 - - 10.6133 - - 10.95 - - 11.2867 - - 11.6233 - - 11.96 - - 12.2967 - - 12.6333 - - 12.97 - - 13.3067 - - 13.6433 - - 13.98 - - 14.3167 - - 14.6533 - - 14.99 - - 15.3267 - - 15.6633 - - 16 - y: - - 85.4957 - - 86.1996 - - 86.8821 - - 87.5418 - - 88.1773 - - 88.7875 - - 89.371 - - 89.9265 - - 90.4526 - - 90.9482 - - 91.4118 - - 91.8421 - - 92.238 - - 92.598 - - 92.9209 - - 93.2053 - - 93.4499 - - 93.6535 - - 93.8147 - - 93.9322 - - 94.0048 - - 94.0311 - - 94.0097 - - 93.9395 - - 93.8191 - - 93.6472 - - 93.4224 - - 93.1436 - - 92.8093 - - 92.4183 - - 91.9692 - maintenance_flag: - 2022-03-27 22:00:00: 0 - startcost: - 2022-03-27 22:00:00: 200 - min_p_constr: - 2022-03-27 22:00:00: 28 - max_p_constr: - 2022-03-27 22:00:00: 38 - p_fcr_min: - 2022-03-27 22:00:00: 27 - p_fcr_max: - 2022-03-27 22:00:00: 45 - p_rr_min: - 2022-03-27 22:00:00: 0 - droop_min: - 2022-03-27 22:00:00: 6 - droop_max: - 2022-03-27 22:00:00: 6 - Lund_G1: - penstock: 1 - p_min: 0.6 - p_max: 1 - p_nom: 1 - gen_eff_curve: - ref: 0 - x: - - 0 - - 100 - y: - - 98.5 - - 98.5 - turb_eff_curves: - - ref: 56 - x: - - 1 - - 1.0467 - - 1.0933 - - 1.14 - - 1.1867 - - 1.2333 - - 1.28 - - 1.3267 - - 1.3733 - - 1.42 - - 1.4667 - - 1.5133 - - 1.56 - - 1.6067 - - 1.6533 - - 1.7 - - 1.7467 - - 1.7933 - - 1.84 - - 1.8867 - - 1.9333 - - 1.98 - - 2.0267 - - 2.0733 - - 2.12 - - 2.1667 - - 2.2133 - - 2.26 - - 2.3067 - - 2.3533 - - 2.4 - y: - - 74.9564 - - 76.048 - - 77.1212 - - 78.1731 - - 79.2009 - - 80.2018 - - 81.1729 - - 82.1114 - - 83.0145 - - 83.8793 - - 84.703 - - 85.4828 - - 86.2158 - - 86.8992 - - 87.5301 - - 88.1058 - - 88.6234 - - 89.0801 - - 89.473 - - 89.7993 - - 90.0561 - - 90.2407 - - 90.3502 - - 90.3818 - - 90.3326 - - 90.1998 - - 89.9805 - - 89.672 - - 89.2715 - - 88.7759 - - 88.1826 - - ref: 60 - x: - - 1 - - 1.0467 - - 1.0933 - - 1.14 - - 1.1867 - - 1.2333 - - 1.28 - - 1.3267 - - 1.3733 - - 1.42 - - 1.4667 - - 1.5133 - - 1.56 - - 1.6067 - - 1.6533 - - 1.7 - - 1.7467 - - 1.7933 - - 1.84 - - 1.8867 - - 1.9333 - - 1.98 - - 2.0267 - - 2.0733 - - 2.12 - - 2.1667 - - 2.2133 - - 2.26 - - 2.3067 - - 2.3533 - - 2.4 - y: - - 74.9667 - - 76.0042 - - 77.034 - - 78.053 - - 79.058 - - 80.0456 - - 81.0127 - - 81.9559 - - 82.872 - - 83.7579 - - 84.6102 - - 85.4257 - - 86.2011 - - 86.9332 - - 87.6187 - - 88.2545 - - 88.8372 - - 89.3636 - - 89.8305 - - 90.2345 - - 90.5725 - - 90.8413 - - 91.0374 - - 91.1578 - - 91.1992 - - 91.1583 - - 91.0319 - - 90.8166 - - 90.5094 - - 90.1069 - - 89.6058 - maintenance_flag: - 2022-03-27 22:00:00: 0 - 2022-03-31 05:00:00: 1 - 2022-03-31 09:00:00: 0 - startcost: - 2022-03-27 22:00:00: 100 - p_fcr_min: - 2022-03-27 22:00:00: 0.6 - 2022-03-28 00:00:00: 0.6 - 2022-03-28 01:00:00: 0.6 - 2022-03-28 06:00:00: 0.6 - 2022-03-28 07:00:00: 0.6 - 2022-03-28 11:00:00: 0.6 - 2022-03-28 12:00:00: 0.6 - 2022-03-28 16:00:00: 0.6 - 2022-03-28 18:00:00: 0.6 - 2022-03-29 03:00:00: 0.6 - 2022-03-29 05:00:00: 0.6 - 2022-03-29 08:00:00: 0.6 - 2022-03-29 09:00:00: 0.6 - 2022-03-29 10:00:00: 0.6 - 2022-03-29 11:00:00: 0.6 - 2022-03-29 15:00:00: 0.6 - 2022-03-29 16:00:00: 0.6 - 2022-03-29 19:00:00: 0.6 - 2022-03-29 20:00:00: 0.6 - 2022-03-29 21:00:00: 0.6 - 2022-03-29 22:00:00: 0.6 - 2022-03-30 00:00:00: 0.6 - 2022-03-30 01:00:00: 0.6 - 2022-03-30 08:00:00: 0.6 - 2022-03-30 09:00:00: 0.6 - 2022-03-30 11:00:00: 0.6 - 2022-03-30 12:00:00: 0.6 - 2022-03-30 16:00:00: 0.6 - 2022-03-30 17:00:00: 0.6 - 2022-03-30 19:00:00: 0.6 - 2022-03-30 20:00:00: 0.6 - 2022-03-31 03:00:00: 0.6 - 2022-03-31 04:00:00: 0.6 - 2022-03-31 06:00:00: 0.6 - 2022-03-31 07:00:00: 0.6 - 2022-03-31 08:00:00: 0.6 - 2022-03-31 09:00:00: 0.6 - 2022-03-31 12:00:00: 0.6 - 2022-03-31 13:00:00: 0.6 - 2022-03-31 17:00:00: 0.6 - 2022-03-31 18:00:00: 0.6 - 2022-03-31 19:00:00: 0.6 - 2022-03-31 20:00:00: 0.6 - p_fcr_max: - 2022-03-27 22:00:00: 1 - p_rr_min: - 2022-03-27 22:00:00: 0 - droop_min: - 2022-03-27 22:00:00: 4 - droop_max: - 2022-03-27 22:00:00: 12 - Lien_krv_G1: - penstock: 1 - p_min: 1.2 - p_max: 3.4 - p_nom: 3.4 - gen_eff_curve: - ref: 0 - x: - - 1 - - 2 - - 3 - - 3.4 - y: - - 93.3 - - 96.2 - - 97.2 - - 97.4 - turb_eff_curves: - - ref: 154 - x: - - 0.5 - - 1 - - 2 - - 2.4 - - 2.6 - y: - - 91 - - 92.7 - - 93.7 - - 94 - - 93.9 - maintenance_flag: - 2022-03-27 22:00:00: 0 - startcost: - 2022-03-27 22:00:00: 150 - min_p_constr: - 2022-03-27 22:00:00: 2.5 - max_p_constr: - 2022-03-27 22:00:00: 3.1 - 2022-03-28 00:00:00: 3.1 - 2022-03-28 01:00:00: 3.1 - 2022-03-28 06:00:00: 3.1 - 2022-03-28 07:00:00: 3.1 - 2022-03-28 11:00:00: 3.1 - 2022-03-28 12:00:00: 3.1 - 2022-03-28 16:00:00: 3.1 - 2022-03-28 18:00:00: 3.1 - 2022-03-29 03:00:00: 3.1 - 2022-03-29 05:00:00: 3.1 - 2022-03-29 08:00:00: 3.1 - 2022-03-29 09:00:00: 3.1 - 2022-03-29 10:00:00: 3.1 - 2022-03-29 11:00:00: 3.1 - 2022-03-29 15:00:00: 3.1 - 2022-03-29 16:00:00: 3.1 - 2022-03-29 19:00:00: 3.1 - 2022-03-29 20:00:00: 3.1 - 2022-03-29 21:00:00: 3.1 - 2022-03-29 22:00:00: 3.1 - 2022-03-30 00:00:00: 3.1 - 2022-03-30 01:00:00: 3.1 - 2022-03-30 08:00:00: 3.1 - 2022-03-30 09:00:00: 3.1 - 2022-03-30 11:00:00: 3.1 - 2022-03-30 12:00:00: 3.1 - 2022-03-30 16:00:00: 3.1 - 2022-03-30 17:00:00: 3.1 - 2022-03-30 19:00:00: 3.1 - 2022-03-30 20:00:00: 3.1 - 2022-03-31 03:00:00: 3.1 - 2022-03-31 04:00:00: 3.1 - 2022-03-31 06:00:00: 3.1 - 2022-03-31 07:00:00: 3.1 - 2022-03-31 08:00:00: 3.1 - 2022-03-31 09:00:00: 3.1 - 2022-03-31 12:00:00: 3.1 - 2022-03-31 13:00:00: 3.1 - 2022-03-31 17:00:00: 3.1 - 2022-03-31 18:00:00: 3.1 - 2022-03-31 19:00:00: 3.1 - 2022-03-31 20:00:00: 3.1 - p_fcr_min: - 2022-03-27 22:00:00: 0 - p_fcr_max: - 2022-03-27 22:00:00: 0 - p_rr_min: - 2022-03-27 22:00:00: 0 - droop_min: - 2022-03-27 22:00:00: 4 - droop_max: - 2022-03-27 22:00:00: 8 - Landet_G1: - penstock: 1 - p_min: 25 - p_max: 50 - p_nom: 50 - gen_eff_curve: - ref: 0 - x: - - 17 - - 20.5 - - 23.8 - - 27.3 - - 31 - - 34.3 - - 41.2 - - 44.8 - - 50 - y: - - 96.6 - - 97.4 - - 97.9 - - 98.23 - - 98.4 - - 98.5 - - 98.7 - - 98.72 - - 98.69 - turb_eff_curves: - - ref: 260 - x: - - 7.24 - - 8.16 - - 9.46 - - 10.78 - - 12.16 - - 13.56 - - 14.97 - - 16.63 - - 18.21 - - 19.9 - - 20.44 - y: - - 84.88 - - 86.75 - - 89.09 - - 90.82 - - 91.95 - - 92.84 - - 93.68 - - 93.7 - - 93.35 - - 92.9 - - 92.69 - - ref: 280 - x: - - 7.26 - - 8.59 - - 9.8 - - 11.03 - - 12.32 - - 13.62 - - 14.92 - - 16.29 - - 17.78 - - 19.36 - - 21.2 - y: - - 84.88 - - 86.97 - - 89.03 - - 90.7 - - 91.72 - - 92.59 - - 93.4 - - 93.83 - - 93.67 - - 93.26 - - 92.69 - - ref: 300 - x: - - 7.75 - - 8.63 - - 9.94 - - 11.25 - - 12.63 - - 14.03 - - 15.52 - - 16.88 - - 18.55 - - 20.18 - - 21.92 - y: - - 84.88 - - 86.55 - - 88.73 - - 90.55 - - 91.67 - - 92.53 - - 93.4 - - 93.83 - - 93.6 - - 93.25 - - 92.69 - maintenance_flag: - 2022-03-27 22:00:00: 0 - 2022-03-31 05:00:00: 1 - 2022-03-31 09:00:00: 0 - startcost: - 2022-03-27 22:00:00: 200 - max_p_constr: - 2022-03-27 22:00:00: 48 - p_fcr_min: - 2022-03-27 22:00:00: 25 - p_fcr_max: - 2022-03-27 22:00:00: 50 - p_rr_min: - 2022-03-27 22:00:00: 0 - droop_min: - 2022-03-27 22:00:00: 6 - droop_max: - 2022-03-27 22:00:00: 6 - Dalby_G1: - penstock: 1 - p_min: 40 - p_max: 85 - p_nom: 93 - gen_eff_curve: - ref: 0 - x: - - 20 - - 30 - - 50 - - 65 - - 85 - - 88 - y: - - 96.2 - - 97.45 - - 98.14 - - 98.29 - - 98.31 - - 98.3 - turb_eff_curves: - - ref: 340 - x: - - 10.77 - - 11.411 - - 12.052 - - 12.693 - - 13.334 - - 13.975 - - 14.616 - - 15.257 - - 15.898 - - 16.539 - - 17.18 - - 17.821 - - 18.462 - - 19.103 - - 19.744 - - 20.385 - - 21.026 - - 21.667 - - 22.308 - - 22.949 - - 23.59 - - 24.231 - - 24.872 - - 25.513 - - 26.154 - - 26.795 - - 27.436 - - 28.077 - - 28.718 - - 29.359 - - 30 - y: - - 86.4359 - - 87.1856 - - 87.8911 - - 88.5536 - - 89.1744 - - 89.7548 - - 90.2961 - - 90.7996 - - 91.2666 - - 91.6984 - - 92.0963 - - 92.4615 - - 92.7954 - - 93.0993 - - 93.3745 - - 93.6222 - - 93.8437 - - 94.0404 - - 94.2136 - - 94.3645 - - 94.4944 - - 94.6046 - - 94.6965 - - 94.7712 - - 94.8302 - - 94.8747 - - 94.906 - - 94.9253 - - 94.9341 - - 94.9335 - - 94.925 - maintenance_flag: - 2022-03-27 22:00:00: 0 - startcost: - 2022-03-27 22:00:00: 500 - p_fcr_min: - 2022-03-27 22:00:00: 38 - p_fcr_max: - 2022-03-27 22:00:00: 85 - p_rr_min: - 2022-03-27 22:00:00: 0 - droop_cost: - 2022-03-27 22:00:00: 50000 - droop_min: - 2022-03-27 22:00:00: 2 - droop_max: - 2022-03-27 22:00:00: 12 - Dalby_G2: - penstock: 1 - p_min: 40 - p_max: 85 - p_nom: 85 - gen_eff_curve: - ref: 0 - x: - - 20 - - 30 - - 50 - - 65 - - 80 - - 85 - y: - - 96.2 - - 97.45 - - 98.14 - - 98.29 - - 98.31 - - 98.31 - turb_eff_curves: - - ref: 300 - x: - - 6.23 - - 7.1557 - - 8.0813 - - 9.007 - - 9.9327 - - 10.8583 - - 11.784 - - 12.7097 - - 13.6353 - - 14.561 - - 15.4867 - - 16.4123 - - 17.338 - - 18.2637 - - 19.1893 - - 20.115 - - 21.0407 - - 21.9663 - - 22.892 - - 23.8177 - - 24.7433 - - 25.669 - - 26.5947 - - 27.5203 - - 28.446 - - 29.3717 - - 30.2973 - - 31.223 - - 32.1487 - - 33.0743 - - 34 - y: - - 82.1863 - - 84.0332 - - 85.7126 - - 87.2306 - - 88.5935 - - 89.8075 - - 90.8787 - - 91.8133 - - 92.6176 - - 93.2978 - - 93.8599 - - 94.3104 - - 94.6553 - - 94.9008 - - 95.0532 - - 95.1187 - - 95.1034 - - 95.0135 - - 94.8553 - - 94.635 - - 94.3587 - - 94.0326 - - 93.663 - - 93.2561 - - 92.818 - - 92.3549 - - 91.8731 - - 91.3788 - - 90.8781 - - 90.3772 - - 89.87 - - ref: 350 - x: - - 7.16 - - 10.7387 - - 11.6333 - - 13.4227 - - 15.212 - - 16.1067 - - 17.0013 - - 17.896 - - 18.7907 - - 19.6853 - - 20.58 - - 21.4747 - - 22.3693 - - 23.264 - - 24.1587 - - 25.0533 - - 25.948 - - 26.8427 - - 27.7373 - - 28.632 - - 29.5267 - - 30.4213 - - 31.316 - - 32.2107 - - 33.1053 - y: - - 83.9641 - - 89.1174 - - 90.1134 - - 91.7832 - - 93.0508 - - 93.544 - - 93.9489 - - 94.2695 - - 94.5101 - - 94.6746 - - 94.7672 - - 94.7919 - - 94.7529 - - 94.6542 - - 94.5 - - 94.2942 - - 94.0411 - - 93.7446 - - 93.4089 - - 93.0381 - - 92.6362 - - 92.2074 - - 91.7557 - - 91.2852 - - 90.8001 - maintenance_flag: - 2022-03-27 22:00:00: 0 - startcost: - 2022-03-27 22:00:00: 250 - p_fcr_min: - 2022-03-27 22:00:00: 38 - p_fcr_max: - 2022-03-27 22:00:00: 85 - p_rr_min: - 2022-03-27 22:00:00: 0 - droop_cost: - 2022-03-27 22:00:00: 50000 - droop_min: - 2022-03-27 22:00:00: 2 - droop_max: - 2022-03-27 22:00:00: 12 - Rull1_G1: - penstock: 1 - p_min: 40 - p_max: 100 - p_nom: 90 - gen_eff_curve: - ref: 0 - x: - - 37.9 - - 50 - - 65 - - 75 - - 85 - - 95 - - 100 - y: - - 97.6 - - 98.11 - - 98.44 - - 98.52 - - 98.51 - - 98.5 - - 98.49 - turb_eff_curves: - - ref: 305 - x: - - 13.5 - - 14 - - 14.5 - - 15 - - 15.5 - - 16 - - 16.5 - - 17 - - 17.5 - - 18 - - 18.5 - - 19 - - 19.5 - - 20 - - 20.5 - - 21 - - 21.5 - - 22 - - 22.5 - - 23 - - 23.5 - - 24 - - 24.5 - - 25 - - 25.5 - - 26 - - 26.5 - - 27 - - 27.5 - - 28 - - 28.5 - - 29 - - 29.5 - - 30 - - 30.5 - - 31 - - 31.5 - - 32 - - 32.5 - - 33 - - 33.5 - - 34 - - 34.5 - - 35 - - 36 - - 36.5 - - 37 - - 37.5 - - 38 - - 38.5 - - 39 - - 39.5 - y: - - 89.31992 - - 89.87796 - - 90.38326 - - 90.84213 - - 91.26008 - - 91.64192 - - 91.99189 - - 92.31372 - - 92.61071 - - 92.88581 - - 93.14165 - - 93.38055 - - 93.60464 - - 93.8158 - - 94.01574 - - 94.20598 - - 94.38659 - - 94.55616 - - 94.71333 - - 94.85686 - - 94.98562 - - 95.09856 - - 95.19473 - - 95.27325 - - 95.33336 - - 95.37557 - - 95.40147 - - 95.41256 - - 95.41025 - - 95.39583 - - 95.37052 - - 95.33537 - - 95.29119 - - 95.23873 - - 95.1787 - - 95.11174 - - 95.03846 - - 94.9594 - - 94.8747 - - 94.78425 - - 94.68796 - - 94.58572 - - 94.47746 - - 94.36308 - - 94.11566 - - 93.98248 - - 93.8429 - - 93.69684 - - 93.54426 - - 93.3851 - - 93.21929 - - 93.0468 - maintenance_flag: - 2022-03-27 22:00:00: 0 - startcost: - 2022-03-27 22:00:00: 250 - max_p_constr: - 2022-03-27 22:00:00: 90 - p_fcr_min: - 2022-03-27 22:00:00: 38 - p_fcr_max: - 2022-03-27 22:00:00: 95 - p_rr_min: - 2022-03-27 22:00:00: 0 - droop_cost: - 2022-03-27 22:00:00: 50000 - droop_min: - 2022-03-27 22:00:00: 2 - droop_max: - 2022-03-27 22:00:00: 12 - Rull1_G2: - penstock: 2 - p_min: 40 - p_max: 105 - p_nom: 95 - gen_eff_curve: - ref: 0 - x: - - 37.9 - - 50 - - 65 - - 75 - - 80 - - 95 - y: - - 97.6 - - 98.11 - - 98.45 - - 98.53 - - 98.525 - - 98.51 - turb_eff_curves: - - ref: 305 - x: - - 13 - - 13.5 - - 14 - - 14.5 - - 15 - - 15.5 - - 16 - - 16.5 - - 17 - - 17.5 - - 18 - - 18.5 - - 19 - - 19.5 - - 20 - - 20.5 - - 21 - - 21.5 - - 22 - - 22.5 - - 23 - - 23.5 - - 24 - - 24.5 - - 25 - - 25.5 - - 26 - - 26.5 - - 27 - - 27.5 - - 28 - - 28.5 - - 29 - - 29.5 - - 30 - - 30.5 - - 31 - - 31.5 - - 32 - - 32.5 - - 33 - - 33.5 - - 34 - - 34.5 - - 35 - - 35.5 - - 36 - - 36.5 - - 37 - - 37.5 - - 38 - - 38.5 - - 39 - - 39.5 - y: - - 87.70424 - - 88.36959 - - 88.97406 - - 89.52468 - - 90.02755 - - 90.48798 - - 90.91061 - - 91.29954 - - 91.65836 - - 91.99026 - - 92.29809 - - 92.58437 - - 92.85137 - - 93.10111 - - 93.33543 - - 93.55598 - - 93.76424 - - 93.96158 - - 94.14922 - - 94.32778 - - 94.49643 - - 94.65417 - - 94.80007 - - 94.93332 - - 95.05312 - - 95.15878 - - 95.24963 - - 95.32506 - - 95.38465 - - 95.42905 - - 95.45942 - - 95.47682 - - 95.48223 - - 95.4766 - - 95.46077 - - 95.43565 - - 95.40228 - - 95.3617 - - 95.31488 - - 95.26273 - - 95.20611 - - 95.1458 - - 95.08259 - - 95.01716 - - 94.9502 - - 94.88234 - - 94.81417 - - 94.74627 - - 94.67916 - - 94.61336 - - 94.54934 - - 94.48756 - - 94.42845 - - 94.37242 - maintenance_flag: - 2022-03-27 22:00:00: 0 - startcost: - 2022-03-27 22:00:00: 250 - min_p_constr: - 2022-03-27 22:00:00: 43 - max_p_constr: - 2022-03-27 22:00:00: 95 - p_fcr_min: - 2022-03-27 22:00:00: 38 - p_fcr_max: - 2022-03-27 22:00:00: 85 - p_rr_min: - 2022-03-27 22:00:00: 0 - droop_cost: - 2022-03-27 22:00:00: 50000 - droop_min: - 2022-03-27 22:00:00: 2 - droop_max: - 2022-03-27 22:00:00: 12 - Rull2_G1: - penstock: 1 - p_min: 32 - p_max: 72 - p_nom: 70 - gen_eff_curve: - ref: 0 - x: - - 30 - - 45 - - 55 - - 65 - - 80 - y: - - 97.68 - - 98.3 - - 98.46 - - 98.55 - - 98.6 - turb_eff_curves: - - ref: 545 - x: - - 6.53 - - 6.8623 - - 7.1947 - - 7.527 - - 7.8593 - - 8.1917 - - 8.524 - - 8.8563 - - 9.1887 - - 9.521 - - 9.8533 - - 10.1857 - - 10.518 - - 10.8503 - - 11.1827 - - 11.515 - - 11.8473 - - 12.1797 - - 12.512 - - 12.8443 - - 13.1767 - - 13.509 - - 13.8413 - - 14.1737 - - 14.506 - - 14.8383 - - 15.1707 - - 15.503 - - 15.8353 - - 16.1677 - - 16.5 - y: - - 88.975 - - 89.3936 - - 89.7979 - - 90.1868 - - 90.559 - - 90.9132 - - 91.2484 - - 91.5633 - - 91.8567 - - 92.1274 - - 92.3741 - - 92.5958 - - 92.791 - - 92.9588 - - 93.0978 - - 93.2068 - - 93.2847 - - 93.3301 - - 93.3421 - - 93.3192 - - 93.2603 - - 93.1642 - - 93.0298 - - 92.8557 - - 92.6407 - - 92.3838 - - 92.0836 - - 91.739 - - 91.3487 - - 90.9115 - - 90.4263 - maintenance_flag: - 2022-03-27 22:00:00: 0 - startcost: - 2022-03-27 22:00:00: 250 - p_fcr_min: - 2022-03-27 22:00:00: 32 - p_fcr_max: - 2022-03-27 22:00:00: 74 - p_rr_min: - 2022-03-27 22:00:00: 0 - droop_cost: - 2022-03-27 22:00:00: 50000 - droop_min: - 2022-03-27 22:00:00: 4 - droop_max: - 2022-03-27 22:00:00: 12 - Rull2_G2: - penstock: 2 - p_min: 32 - p_max: 76 - p_nom: 80 - gen_eff_curve: - ref: 0 - x: - - 20 - - 35 - - 50 - - 65 - - 80 - y: - - 96.91 - - 97.88 - - 98.33 - - 98.52 - - 98.6 - turb_eff_curves: - - ref: 545 - x: - - 6.53 - - 6.8623 - - 7.1947 - - 7.527 - - 7.8593 - - 8.1917 - - 8.524 - - 8.8563 - - 9.1887 - - 9.521 - - 9.8533 - - 10.1857 - - 10.518 - - 10.8503 - - 11.1827 - - 11.515 - - 11.8473 - - 12.1797 - - 12.512 - - 12.8443 - - 13.1767 - - 13.509 - - 13.8413 - - 14.1737 - - 14.506 - - 14.8383 - - 15.1707 - - 15.503 - - 15.8353 - - 16.1677 - - 16.5 - y: - - 88.9116 - - 89.3813 - - 89.8234 - - 90.2379 - - 90.6249 - - 90.9845 - - 91.3167 - - 91.6215 - - 91.899 - - 92.1492 - - 92.3723 - - 92.5682 - - 92.7371 - - 92.8788 - - 92.9936 - - 93.0815 - - 93.1425 - - 93.1766 - - 93.184 - - 93.1646 - - 93.1186 - - 93.0459 - - 92.9467 - - 92.8209 - - 92.6687 - - 92.49 - - 92.285 - - 92.0537 - - 91.7961 - - 91.5123 - - 91.2023 - maintenance_flag: - 2022-03-27 22:00:00: 0 - startcost: - 2022-03-27 22:00:00: 250 - max_p_constr: - 2022-03-27 22:00:00: 74 - p_fcr_min: - 2022-03-27 22:00:00: 32 - p_fcr_max: - 2022-03-27 22:00:00: 76 - p_rr_min: - 2022-03-27 22:00:00: 0 - droop_cost: - 2022-03-27 22:00:00: 50000 - droop_min: - 2022-03-27 22:00:00: 4 - droop_max: - 2022-03-27 22:00:00: 12 - Scott_G1: - penstock: 1 - p_min: 8 - p_max: 18 - p_nom: 20 - gen_eff_curve: - ref: 0 - x: - - 4 - - 11.6 - - 15.2 - - 19.2 - - 20 - y: - - 97 - - 98.2 - - 98.4 - - 98.5 - - 98.5 - turb_eff_curves: - - ref: 200 - x: - - 4 - - 4.2633 - - 4.5267 - - 4.79 - - 5.0533 - - 5.3167 - - 5.58 - - 5.8433 - - 6.1067 - - 6.37 - - 6.6333 - - 6.8967 - - 7.16 - - 7.4233 - - 7.6867 - - 7.95 - - 8.2133 - - 8.4767 - - 8.74 - - 9.0033 - - 9.2667 - - 9.53 - - 9.7933 - - 10.0567 - - 10.32 - - 10.5833 - - 10.8467 - - 11.11 - - 11.3733 - - 11.6367 - - 11.9 - y: - - 80.0459 - - 81.6326 - - 83.1038 - - 84.4628 - - 85.713 - - 86.8577 - - 87.9003 - - 88.8441 - - 89.6925 - - 90.4488 - - 91.1163 - - 91.6984 - - 92.1985 - - 92.6199 - - 92.9659 - - 93.2399 - - 93.4452 - - 93.5852 - - 93.6632 - - 93.6826 - - 93.6467 - - 93.5589 - - 93.4225 - - 93.2408 - - 93.0172 - - 92.7551 - - 92.4578 - - 92.1286 - - 91.7708 - - 91.388 - - 90.9833 - maintenance_flag: - 2022-03-27 22:00:00: 0 - 2022-03-31 05:00:00: 1 - 2022-03-31 09:00:00: 0 - startcost: - 2022-03-27 22:00:00: 150 - p_fcr_min: - 2022-03-27 22:00:00: 7 - p_fcr_max: - 2022-03-27 22:00:00: 19 - p_rr_min: - 2022-03-27 22:00:00: 0 - droop_min: - 2022-03-27 22:00:00: 6 - droop_max: - 2022-03-27 22:00:00: 6 - Strand_krv_G1: - penstock: 1 - p_min: 4.2 - p_max: 4.9 - p_nom: 5.1 - gen_eff_curve: - ref: 0 - x: - - 1 - - 4 - - 5.1 - y: - - 97.24 - - 97.41 - - 97.4 - turb_eff_curves: - - ref: 150 - x: - - 0.5 - - 2 - - 2.0667 - - 2.3333 - - 2.4 - - 2.4667 - - 2.5333 - - 2.6 - - 2.6667 - - 2.7333 - - 2.8 - - 2.8667 - - 2.9333 - - 3 - - 3.0667 - - 3.1333 - - 3.2 - - 3.2667 - - 3.3333 - - 3.4 - - 3.4667 - - 3.5333 - - 3.6 - - 3.6667 - - 3.7333 - - 3.8 - - 3.8667 - - 3.9333 - - 4 - - 4.5 - y: - - 91.4 - - 92.5 - - 92.5451 - - 92.7263 - - 92.7706 - - 92.8141 - - 92.8564 - - 92.8973 - - 92.9366 - - 92.974 - - 93.0093 - - 93.0422 - - 93.0726 - - 93.1 - - 93.1243 - - 93.1453 - - 93.1627 - - 93.1762 - - 93.1856 - - 93.1907 - - 93.1912 - - 93.1868 - - 93.1774 - - 93.1626 - - 93.1422 - - 93.116 - - 93.0838 - - 93.0452 - - 93 - - 92.5 - maintenance_flag: - 2022-03-27 22:00:00: 0 - startcost: - 2022-03-27 22:00:00: 150 - p_fcr_min: - 2022-03-27 22:00:00: 4.2 - p_fcr_max: - 2022-03-27 22:00:00: 4.9 - 2022-03-27 23:00:00: 4.9 - 2022-03-28 00:00:00: 4.9 - 2022-03-28 02:00:00: 4.9 - 2022-03-28 03:00:00: 4.9 - 2022-03-28 04:00:00: 4.9 - 2022-03-28 06:00:00: 4.9 - 2022-03-28 07:00:00: 4.9 - 2022-03-28 08:00:00: 4.9 - 2022-03-28 09:00:00: 4.9 - 2022-03-28 10:00:00: 4.9 - 2022-03-28 11:00:00: 4.9 - 2022-03-28 12:00:00: 4.9 - 2022-03-28 14:00:00: 4.9 - 2022-03-28 15:00:00: 4.9 - 2022-03-28 17:00:00: 4.9 - 2022-03-28 18:00:00: 4.9 - 2022-03-28 21:00:00: 4.9 - 2022-03-28 22:00:00: 4.9 - 2022-03-29 00:00:00: 4.9 - 2022-03-29 01:00:00: 4.9 - 2022-03-29 05:00:00: 4.9 - 2022-03-29 06:00:00: 4.9 - 2022-03-29 08:00:00: 4.9 - 2022-03-29 09:00:00: 4.9 - 2022-03-29 11:00:00: 4.9 - 2022-03-29 12:00:00: 4.9 - 2022-03-29 13:00:00: 4.9 - 2022-03-29 15:00:00: 4.9 - 2022-03-29 16:00:00: 4.9 - 2022-03-29 18:00:00: 4.9 - 2022-03-29 19:00:00: 4.9 - 2022-03-29 20:00:00: 4.9 - 2022-03-29 21:00:00: 4.9 - 2022-03-29 22:00:00: 4.9 - 2022-03-29 23:00:00: 4.9 - 2022-03-30 00:00:00: 4.9 - 2022-03-30 02:00:00: 4.9 - 2022-03-30 03:00:00: 4.9 - 2022-03-30 04:00:00: 4.9 - 2022-03-30 06:00:00: 4.9 - 2022-03-30 07:00:00: 4.9 - 2022-03-30 09:00:00: 4.9 - 2022-03-30 10:00:00: 4.9 - 2022-03-30 13:00:00: 4.9 - 2022-03-30 14:00:00: 4.9 - 2022-03-30 17:00:00: 4.9 - 2022-03-30 18:00:00: 4.9 - 2022-03-30 21:00:00: 4.9 - 2022-03-30 22:00:00: 4.9 - 2022-03-31 00:00:00: 4.9 - 2022-03-31 01:00:00: 4.9 - 2022-03-31 03:00:00: 4.9 - 2022-03-31 04:00:00: 4.9 - 2022-03-31 05:00:00: 4.9 - 2022-03-31 07:00:00: 4.9 - 2022-03-31 08:00:00: 4.9 - 2022-03-31 09:00:00: 4.9 - 2022-03-31 11:00:00: 4.9 - 2022-03-31 12:00:00: 4.9 - 2022-03-31 13:00:00: 4.9 - 2022-03-31 15:00:00: 4.9 - 2022-03-31 16:00:00: 4.9 - 2022-03-31 18:00:00: 4.9 - 2022-03-31 19:00:00: 4.9 - 2022-03-31 20:00:00: 4.9 - p_rr_min: - 2022-03-27 22:00:00: 0 - droop_min: - 2022-03-27 22:00:00: 4 - droop_max: - 2022-03-27 22:00:00: 12 - junction: - Blakstad: - loss_factor_1: 0.068 - loss_factor_2: 0.06817 - Fjerdingby_intake: - loss_factor_1: 0.05 - loss_factor_2: 0.05 - Vigrestad: - loss_factor_1: 0.017 - loss_factor_2: 0.001 - Holensfoss_junc: - junc_slack: 1 - loss_factor_1: 0.002 - loss_factor_2: 0.018 - Sandvika: - loss_factor_1: 0.00044 - loss_factor_2: 0.0001 - min_pressure: - 2022-03-27 22:00:00: 672 - Landet_intake: - junc_slack: 1 - loss_factor_1: 0.00208 - loss_factor_2: 0.0001 - Golebiowski_intake: - loss_factor_1: 0.05 - loss_factor_2: 0.05 - Lont_intake: - loss_factor_1: 0.00416 - loss_factor_2: 0.008 - Narvhus: - loss_factor_1: 0.00231 - loss_factor_2: 1e-05 - Gustad: - loss_factor_1: 0.0032 - loss_factor_2: 0.002 - w_k_Strand: - junc_slack: 1 - loss_factor_1: 0.00224 - loss_factor_2: 0.0022 - market: - Dayahead: - market_type: ENERGY - load: - 2022-03-27 22:00:00: 0 - max_buy: - 2022-03-27 22:00:00: 10000 - max_sale: - 2022-03-27 22:00:00: 10000 - buy_price: - 2022-03-27 22:00:00: 184.96 - 2022-03-27 23:00:00: 184.4 - 2022-03-28 00:00:00: 183.57 - 2022-03-28 01:00:00: 183.59 - 2022-03-28 02:00:00: 183.64 - 2022-03-28 03:00:00: 187.58 - 2022-03-28 04:00:00: 187.57 - 2022-03-28 05:00:00: 190.95 - 2022-03-28 06:00:00: 193.9 - 2022-03-28 07:00:00: 191.17 - 2022-03-28 08:00:00: 189.55 - 2022-03-28 09:00:00: 185.06 - 2022-03-28 10:00:00: 184.21 - 2022-03-28 11:00:00: 182.02 - 2022-03-28 12:00:00: 181.12 - 2022-03-28 13:00:00: 180.88 - 2022-03-28 14:00:00: 182.69 - 2022-03-28 15:00:00: 184.48 - 2022-03-28 16:00:00: 185.96 - 2022-03-28 17:00:00: 188.18 - 2022-03-28 18:00:00: 189.79 - 2022-03-28 19:00:00: 188.72 - 2022-03-28 20:00:00: 187.01 - 2022-03-28 21:00:00: 184.88 - 2022-03-28 22:00:00: 189.69 - 2022-03-28 23:00:00: 189.53 - 2022-03-29 00:00:00: 189.79 - 2022-03-29 01:00:00: 190.16 - 2022-03-29 02:00:00: 190.97 - 2022-03-29 03:00:00: 194.07 - 2022-03-29 04:00:00: 199.8 - 2022-03-29 05:00:00: 240.76 - 2022-03-29 06:00:00: 242.77 - 2022-03-29 07:00:00: 236.09 - 2022-03-29 08:00:00: 229.02 - 2022-03-29 09:00:00: 224.34 - 2022-03-29 10:00:00: 209.17 - 2022-03-29 11:00:00: 199.37 - 2022-03-29 12:00:00: 199.29 - 2022-03-29 13:00:00: 198.57 - 2022-03-29 14:00:00: 207.8 - 2022-03-29 15:00:00: 215.5 - 2022-03-29 16:00:00: 216.55 - 2022-03-29 17:00:00: 232.93 - 2022-03-29 18:00:00: 240.53 - 2022-03-29 19:00:00: 238.77 - 2022-03-29 20:00:00: 232.89 - 2022-03-29 21:00:00: 221.45 - 2022-03-29 22:00:00: 198.8 - 2022-03-29 23:00:00: 198.46 - 2022-03-30 00:00:00: 198.22 - 2022-03-30 01:00:00: 198.55 - 2022-03-30 02:00:00: 199.39 - 2022-03-30 03:00:00: 206.55 - 2022-03-30 04:00:00: 229.66 - 2022-03-30 05:00:00: 253.73 - 2022-03-30 06:00:00: 252.99 - 2022-03-30 07:00:00: 244.46 - 2022-03-30 08:00:00: 234.11 - 2022-03-30 09:00:00: 222.84 - 2022-03-30 10:00:00: 213.96 - 2022-03-30 11:00:00: 211.94 - 2022-03-30 12:00:00: 208.38 - 2022-03-30 13:00:00: 208.14 - 2022-03-30 14:00:00: 212.94 - 2022-03-30 15:00:00: 214.65 - 2022-03-30 16:00:00: 213.89 - 2022-03-30 17:00:00: 223.79 - 2022-03-30 18:00:00: 207.55 - 2022-03-30 19:00:00: 199.96 - 2022-03-30 20:00:00: 198.3 - 2022-03-30 21:00:00: 196.14 - 2022-03-30 22:00:00: 194.07 - 2022-03-30 23:00:00: 194.04 - 2022-03-31 00:00:00: 194.38 - 2022-03-31 01:00:00: 194.88 - 2022-03-31 02:00:00: 195.57 - 2022-03-31 03:00:00: 199.31 - 2022-03-31 04:00:00: 221.35 - 2022-03-31 05:00:00: 255.15 - 2022-03-31 06:00:00: 255 - 2022-03-31 07:00:00: 242.46 - 2022-03-31 08:00:00: 225.53 - 2022-03-31 09:00:00: 202.64 - 2022-03-31 10:00:00: 197.9 - 2022-03-31 11:00:00: 194.77 - 2022-03-31 12:00:00: 196.55 - 2022-03-31 13:00:00: 202.56 - 2022-03-31 14:00:00: 212.19 - 2022-03-31 15:00:00: 204.94 - 2022-03-31 16:00:00: 208.08 - 2022-03-31 17:00:00: 222.57 - 2022-03-31 18:00:00: 228.03 - 2022-03-31 19:00:00: 217.99 - 2022-03-31 20:00:00: 200.15 - 2022-03-31 21:00:00: 191.06 - sale_price: - 2022-03-27 22:00:00: 184.96 - 2022-03-27 23:00:00: 184.4 - 2022-03-28 00:00:00: 183.57 - 2022-03-28 01:00:00: 183.59 - 2022-03-28 02:00:00: 183.64 - 2022-03-28 03:00:00: 187.58 - 2022-03-28 04:00:00: 187.57 - 2022-03-28 05:00:00: 190.95 - 2022-03-28 06:00:00: 193.9 - 2022-03-28 07:00:00: 191.17 - 2022-03-28 08:00:00: 189.55 - 2022-03-28 09:00:00: 185.06 - 2022-03-28 10:00:00: 184.21 - 2022-03-28 11:00:00: 182.02 - 2022-03-28 12:00:00: 181.12 - 2022-03-28 13:00:00: 180.88 - 2022-03-28 14:00:00: 182.69 - 2022-03-28 15:00:00: 184.48 - 2022-03-28 16:00:00: 185.96 - 2022-03-28 17:00:00: 188.18 - 2022-03-28 18:00:00: 189.79 - 2022-03-28 19:00:00: 188.72 - 2022-03-28 20:00:00: 187.01 - 2022-03-28 21:00:00: 184.88 - 2022-03-28 22:00:00: 189.69 - 2022-03-28 23:00:00: 189.53 - 2022-03-29 00:00:00: 189.79 - 2022-03-29 01:00:00: 190.16 - 2022-03-29 02:00:00: 190.97 - 2022-03-29 03:00:00: 194.07 - 2022-03-29 04:00:00: 199.8 - 2022-03-29 05:00:00: 240.76 - 2022-03-29 06:00:00: 242.77 - 2022-03-29 07:00:00: 236.09 - 2022-03-29 08:00:00: 229.02 - 2022-03-29 09:00:00: 224.34 - 2022-03-29 10:00:00: 209.17 - 2022-03-29 11:00:00: 199.37 - 2022-03-29 12:00:00: 199.29 - 2022-03-29 13:00:00: 198.57 - 2022-03-29 14:00:00: 207.8 - 2022-03-29 15:00:00: 215.5 - 2022-03-29 16:00:00: 216.55 - 2022-03-29 17:00:00: 232.93 - 2022-03-29 18:00:00: 240.53 - 2022-03-29 19:00:00: 238.77 - 2022-03-29 20:00:00: 232.89 - 2022-03-29 21:00:00: 221.45 - 2022-03-29 22:00:00: 198.8 - 2022-03-29 23:00:00: 198.46 - 2022-03-30 00:00:00: 198.22 - 2022-03-30 01:00:00: 198.55 - 2022-03-30 02:00:00: 199.39 - 2022-03-30 03:00:00: 206.55 - 2022-03-30 04:00:00: 229.66 - 2022-03-30 05:00:00: 253.73 - 2022-03-30 06:00:00: 252.99 - 2022-03-30 07:00:00: 244.46 - 2022-03-30 08:00:00: 234.11 - 2022-03-30 09:00:00: 222.84 - 2022-03-30 10:00:00: 213.96 - 2022-03-30 11:00:00: 211.94 - 2022-03-30 12:00:00: 208.38 - 2022-03-30 13:00:00: 208.14 - 2022-03-30 14:00:00: 212.94 - 2022-03-30 15:00:00: 214.65 - 2022-03-30 16:00:00: 213.89 - 2022-03-30 17:00:00: 223.79 - 2022-03-30 18:00:00: 207.55 - 2022-03-30 19:00:00: 199.96 - 2022-03-30 20:00:00: 198.3 - 2022-03-30 21:00:00: 196.14 - 2022-03-30 22:00:00: 194.07 - 2022-03-30 23:00:00: 194.04 - 2022-03-31 00:00:00: 194.38 - 2022-03-31 01:00:00: 194.88 - 2022-03-31 02:00:00: 195.57 - 2022-03-31 03:00:00: 199.31 - 2022-03-31 04:00:00: 221.35 - 2022-03-31 05:00:00: 255.15 - 2022-03-31 06:00:00: 255 - 2022-03-31 07:00:00: 242.46 - 2022-03-31 08:00:00: 225.53 - 2022-03-31 09:00:00: 202.64 - 2022-03-31 10:00:00: 197.9 - 2022-03-31 11:00:00: 194.77 - 2022-03-31 12:00:00: 196.55 - 2022-03-31 13:00:00: 202.56 - 2022-03-31 14:00:00: 212.19 - 2022-03-31 15:00:00: 204.94 - 2022-03-31 16:00:00: 208.08 - 2022-03-31 17:00:00: 222.57 - 2022-03-31 18:00:00: 228.03 - 2022-03-31 19:00:00: 217.99 - 2022-03-31 20:00:00: 200.15 - 2022-03-31 21:00:00: 191.06 - plant: - Holen: - prod_area: - 2022-03-27 22:00:00: 1 - outlet_line: 628 - main_loss: - - 0.0339 - penstock_loss: - - 0.0113 - mip_flag: - 2022-03-27 22:00:00: 1 - max_p_constr: - 2022-03-27 22:00:00: 42 - max_q_constr: - 2022-03-27 22:00:00: 1000 - production_schedule: - 2022-03-27 22:00:00: 37 - production_schedule_flag: - 2022-03-27 22:00:00: 1 - 2022-03-28 22:00:00: 0 - Lund: - prod_area: - 2022-03-27 22:00:00: 1 - outlet_line: 1240 - main_loss: - - 0.002 - penstock_loss: - - 0.022 - mip_flag: - 2022-03-27 22:00:00: 0 - max_q_constr: - 2022-03-27 22:00:00: 1000 - production_schedule: - 2022-03-27 22:00:00: 0.7 - 2022-03-27 23:00:00: 0.7 - 2022-03-28 00:00:00: 0.7 - 2022-03-28 02:00:00: 0.7 - 2022-03-28 03:00:00: 0.7 - 2022-03-28 04:00:00: 0.7 - 2022-03-28 06:00:00: 0.7 - 2022-03-28 07:00:00: 0.7 - 2022-03-28 08:00:00: 0.7 - 2022-03-28 09:00:00: 0.7 - 2022-03-28 10:00:00: 0.7 - 2022-03-28 11:00:00: 0.7 - 2022-03-28 12:00:00: 0.7 - 2022-03-28 14:00:00: 0.7 - 2022-03-28 15:00:00: 0.7 - 2022-03-28 17:00:00: 0.7 - 2022-03-28 18:00:00: 0.7 - 2022-03-28 21:00:00: 0.7 - 2022-03-28 22:00:00: 0.7 - 2022-03-29 00:00:00: 0.7 - 2022-03-29 01:00:00: 0.7 - 2022-03-29 05:00:00: 0.7 - 2022-03-29 06:00:00: 0.7 - 2022-03-29 08:00:00: 0.7 - 2022-03-29 09:00:00: 0.7 - 2022-03-29 11:00:00: 0.7 - 2022-03-29 12:00:00: 0.7 - 2022-03-29 13:00:00: 0.7 - 2022-03-29 15:00:00: 0.7 - 2022-03-29 16:00:00: 0.7 - 2022-03-29 18:00:00: 0.7 - 2022-03-29 19:00:00: 0.7 - 2022-03-29 20:00:00: 0.7 - 2022-03-29 21:00:00: 0.7 - 2022-03-29 22:00:00: 0.7 - 2022-03-29 23:00:00: 0.7 - 2022-03-30 00:00:00: 0.7 - 2022-03-30 02:00:00: 0.7 - 2022-03-30 03:00:00: 0.7 - 2022-03-30 04:00:00: 0.7 - 2022-03-30 06:00:00: 0.7 - 2022-03-30 07:00:00: 0.7 - 2022-03-30 09:00:00: 0.7 - 2022-03-30 10:00:00: 0.7 - 2022-03-30 13:00:00: 0.7 - 2022-03-30 14:00:00: 0.7 - 2022-03-30 17:00:00: 0.7 - 2022-03-30 18:00:00: 0.7 - 2022-03-30 21:00:00: 0.7 - 2022-03-30 22:00:00: 0.7 - 2022-03-31 00:00:00: 0.7 - 2022-03-31 01:00:00: 0.7 - 2022-03-31 03:00:00: 0.7 - 2022-03-31 04:00:00: 0.7 - 2022-03-31 05:00:00: 0.7 - 2022-03-31 07:00:00: 0.7 - 2022-03-31 08:00:00: 0.7 - 2022-03-31 09:00:00: 0.7 - 2022-03-31 11:00:00: 0.7 - 2022-03-31 12:00:00: 0.7 - 2022-03-31 13:00:00: 0.7 - 2022-03-31 15:00:00: 0.7 - 2022-03-31 16:00:00: 0.7 - 2022-03-31 18:00:00: 0.7 - 2022-03-31 19:00:00: 0.7 - 2022-03-31 20:00:00: 0.7 - production_schedule_flag: - 2022-03-27 22:00:00: 1 - 2022-03-28 22:00:00: 0 - Lien_krv: - prod_area: - 2022-03-27 22:00:00: 1 - outlet_line: 1030 - main_loss: - - 0.8 - penstock_loss: - - 0 - mip_flag: - 2022-03-27 22:00:00: 1 - max_q_constr: - 2022-03-27 22:00:00: 2.7 - 2022-03-27 23:00:00: 2.7 - 2022-03-28 00:00:00: 2.7 - 2022-03-28 02:00:00: 2.7 - 2022-03-28 03:00:00: 2.7 - 2022-03-28 04:00:00: 2.7 - 2022-03-28 06:00:00: 2.7 - 2022-03-28 07:00:00: 2.7 - 2022-03-28 08:00:00: 2.7 - 2022-03-28 09:00:00: 2.7 - 2022-03-28 10:00:00: 2.7 - 2022-03-28 11:00:00: 2.7 - 2022-03-28 12:00:00: 2.7 - 2022-03-28 14:00:00: 2.7 - 2022-03-28 15:00:00: 2.7 - 2022-03-28 17:00:00: 2.7 - 2022-03-28 18:00:00: 2.7 - 2022-03-28 21:00:00: 2.7 - 2022-03-28 22:00:00: 2.7 - 2022-03-29 00:00:00: 2.7 - 2022-03-29 01:00:00: 2.7 - 2022-03-29 05:00:00: 2.7 - 2022-03-29 06:00:00: 2.7 - 2022-03-29 08:00:00: 2.7 - 2022-03-29 09:00:00: 2.7 - 2022-03-29 11:00:00: 2.7 - 2022-03-29 12:00:00: 2.7 - 2022-03-29 13:00:00: 2.7 - 2022-03-29 15:00:00: 2.7 - 2022-03-29 16:00:00: 2.7 - 2022-03-29 18:00:00: 2.7 - 2022-03-29 19:00:00: 2.7 - 2022-03-29 20:00:00: 2.7 - 2022-03-29 21:00:00: 2.7 - 2022-03-29 22:00:00: 2.7 - 2022-03-29 23:00:00: 2.7 - 2022-03-30 00:00:00: 2.7 - 2022-03-30 02:00:00: 2.7 - 2022-03-30 03:00:00: 2.7 - 2022-03-30 04:00:00: 2.7 - 2022-03-30 06:00:00: 2.7 - 2022-03-30 07:00:00: 2.7 - 2022-03-30 09:00:00: 2.7 - 2022-03-30 10:00:00: 2.7 - 2022-03-30 13:00:00: 2.7 - 2022-03-30 14:00:00: 2.7 - 2022-03-30 17:00:00: 2.7 - 2022-03-30 18:00:00: 2.7 - 2022-03-30 21:00:00: 2.7 - 2022-03-30 22:00:00: 2.7 - 2022-03-31 00:00:00: 2.7 - 2022-03-31 01:00:00: 2.7 - 2022-03-31 03:00:00: 2.7 - 2022-03-31 04:00:00: 2.7 - 2022-03-31 05:00:00: 2.7 - 2022-03-31 07:00:00: 2.7 - 2022-03-31 08:00:00: 2.7 - 2022-03-31 09:00:00: 2.7 - 2022-03-31 11:00:00: 2.7 - 2022-03-31 12:00:00: 2.7 - 2022-03-31 13:00:00: 2.7 - 2022-03-31 15:00:00: 2.7 - 2022-03-31 16:00:00: 2.7 - 2022-03-31 18:00:00: 2.7 - 2022-03-31 19:00:00: 2.7 - 2022-03-31 20:00:00: 2.7 - production_schedule: - 2022-03-27 22:00:00: 0 - production_schedule_flag: - 2022-03-27 22:00:00: 1 - 2022-03-28 22:00:00: 0 - Landet: - prod_area: - 2022-03-27 22:00:00: 1 - outlet_line: 670 - main_loss: - - 0.02007 - penstock_loss: - - 0 - mip_flag: - 2022-03-27 22:00:00: 1 - max_p_constr: - 2022-03-27 22:00:00: 48 - max_q_constr: - 2022-03-27 22:00:00: 1000 - production_schedule: - 2022-03-27 22:00:00: 0 - production_schedule_flag: - 2022-03-27 22:00:00: 1 - 2022-03-28 22:00:00: 0 - Dalby: - prod_area: - 2022-03-27 22:00:00: 1 - outlet_line: 365 - main_loss: - - 0.002105 - penstock_loss: - - 0.0006 - mip_flag: - 2022-03-27 22:00:00: 1 - max_q_constr: - 2022-03-27 22:00:00: 1000 - production_schedule: - 2022-03-27 22:00:00: 0 - production_schedule_flag: - 2022-03-27 22:00:00: 1 - 2022-03-28 22:00:00: 0 - Rull1: - prod_area: - 2022-03-27 22:00:00: 1 - outlet_line: 68 - main_loss: - - 0.00107 - penstock_loss: - - 0.0007 - - 0.0005 - mip_flag: - 2022-03-27 22:00:00: 1 - max_p_constr: - 2022-03-27 22:00:00: 184.999 - 2022-03-27 23:00:00: 184.999 - 2022-03-28 00:00:00: 184.999 - 2022-03-28 01:00:00: 184.999 - 2022-03-28 02:00:00: 184.999 - 2022-03-28 03:00:00: 184.999 - 2022-03-28 06:00:00: 184.999 - 2022-03-28 07:00:00: 184.999 - 2022-03-28 08:00:00: 184.999 - 2022-03-28 20:00:00: 184.999 - 2022-03-28 21:00:00: 184.999 - 2022-03-28 22:00:00: 184.999 - 2022-03-29 01:00:00: 184.999 - 2022-03-29 02:00:00: 184.999 - 2022-03-29 03:00:00: 184.999 - 2022-03-29 04:00:00: 184.999 - 2022-03-29 05:00:00: 184.999 - 2022-03-29 07:00:00: 184.999 - 2022-03-29 08:00:00: 184.999 - 2022-03-29 09:00:00: 184.999 - 2022-03-29 10:00:00: 184.999 - 2022-03-29 11:00:00: 184.999 - 2022-03-29 14:00:00: 184.999 - 2022-03-29 15:00:00: 184.999 - 2022-03-29 16:00:00: 184.999 - 2022-03-30 04:00:00: 184.999 - 2022-03-30 05:00:00: 184.999 - 2022-03-30 06:00:00: 184.999 - 2022-03-30 09:00:00: 184.999 - 2022-03-30 10:00:00: 184.999 - 2022-03-30 11:00:00: 184.999 - 2022-03-30 12:00:00: 184.999 - 2022-03-30 13:00:00: 184.999 - 2022-03-30 15:00:00: 184.999 - 2022-03-30 16:00:00: 184.999 - 2022-03-30 17:00:00: 184.999 - 2022-03-30 18:00:00: 184.999 - 2022-03-30 19:00:00: 184.999 - 2022-03-30 22:00:00: 184.999 - 2022-03-30 23:00:00: 184.999 - 2022-03-31 00:00:00: 184.999 - 2022-03-31 12:00:00: 184.999 - 2022-03-31 13:00:00: 184.999 - 2022-03-31 14:00:00: 184.999 - 2022-03-31 17:00:00: 184.999 - 2022-03-31 18:00:00: 184.999 - 2022-03-31 19:00:00: 184.999 - 2022-03-31 20:00:00: 184.999 - 2022-03-31 21:00:00: 184.999 - max_q_constr: - 2022-03-27 22:00:00: 1000 - production_schedule: - 2022-03-27 22:00:00: 45 - 2022-03-28 03:00:00: 45.6 - 2022-03-28 04:00:00: 45 - 2022-03-28 05:00:00: 50 - 2022-03-28 06:00:00: 51.7 - 2022-03-28 07:00:00: 90 - 2022-03-28 08:00:00: 45 - production_schedule_flag: - 2022-03-27 22:00:00: 1 - 2022-03-28 22:00:00: 0 - Rull2: - prod_area: - 2022-03-27 22:00:00: 1 - outlet_line: 68 - main_loss: - - 0.0225 - penstock_loss: - - 0.0018 - - 0.0041 - mip_flag: - 2022-03-27 22:00:00: 1 - max_q_constr: - 2022-03-27 22:00:00: 1000 - production_schedule: - 2022-03-27 22:00:00: 0 - 2022-03-28 04:00:00: 63.9 - 2022-03-28 05:00:00: 65 - 2022-03-28 07:00:00: 70 - 2022-03-28 08:00:00: 65 - 2022-03-28 09:00:00: 60.9 - 2022-03-28 10:00:00: 60 - 2022-03-28 11:00:00: 65 - 2022-03-28 12:00:00: 60 - 2022-03-28 16:00:00: 64.9 - 2022-03-28 17:00:00: 62.7 - 2022-03-28 18:00:00: 60.1 - 2022-03-28 19:00:00: 61.5 - 2022-03-28 20:00:00: 60.6 - 2022-03-28 21:00:00: 47 - production_schedule_flag: - 2022-03-27 22:00:00: 1 - 2022-03-28 22:00:00: 0 - Scott: - prod_area: - 2022-03-27 22:00:00: 1 - outlet_line: 1013 - main_loss: - - 0.003399 - penstock_loss: - - 0.022 - mip_flag: - 2022-03-27 22:00:00: 1 - max_q_constr: - 2022-03-27 22:00:00: 1000 - production_schedule: - 2022-03-27 22:00:00: 0 - production_schedule_flag: - 2022-03-27 22:00:00: 1 - 2022-03-28 22:00:00: 0 - Strand_krv: - prod_area: - 2022-03-27 22:00:00: 1 - outlet_line: 753.06 - main_loss: - - 0 - penstock_loss: - - 0.3125 - mip_flag: - 2022-03-27 22:00:00: 0 - max_q_constr: - 2022-03-27 22:00:00: 1000 - production_schedule: - 2022-03-27 22:00:00: 0 - production_schedule_flag: - 2022-03-27 22:00:00: 1 - 2022-03-28 22:00:00: 0 - reservoir: - Hagen: - max_vol: 25.7 - lrl: 893 - hrl: 908 - vol_head: - ref: 0 - x: - - 0 - - 0.7 - - 1.6 - - 2.5 - - 3.7 - - 5 - - 6.6 - - 8.3 - - 10 - - 12 - - 14 - - 16.2 - - 18.5 - - 20.8 - - 25.7 - - 31 - y: - - 893 - - 894 - - 895 - - 896 - - 897 - - 898 - - 899 - - 900 - - 901 - - 902 - - 903 - - 904 - - 905 - - 906 - - 908 - - 910 - start_head: 894.19006347656 - inflow: - 2022-03-27 22:00:00: 0.67332370473701 - 2022-03-27 23:00:00: 0.47606569679415 - 2022-03-28 00:00:00: 0.48009839123925 - 2022-03-28 01:00:00: 0.54655039779455 - 2022-03-28 02:00:00: 0.55413335400588 - 2022-03-28 03:00:00: 0.56228931915567 - 2022-03-28 04:00:00: 0.56986526002992 - 2022-03-28 05:00:00: 0.5779471269263 - 2022-03-28 06:00:00: 0.58704549742201 - 2022-03-28 07:00:00: 0.5586649720587 - 2022-03-28 08:00:00: 0.56078901444729 - 2022-03-28 09:00:00: 0.56031862158249 - 2022-03-28 10:00:00: 0.55814379845258 - 2022-03-28 11:00:00: 0.55505639788557 - 2022-03-28 12:00:00: 0.55169855304206 - 2022-03-28 13:00:00: 0.53988567852215 - 2022-03-28 14:00:00: 0.53648002635795 - 2022-03-28 15:00:00: 0.53308568795002 - 2022-03-28 16:00:00: 0.52970270267423 - 2022-03-28 17:00:00: 0.52647062560354 - 2022-03-28 18:00:00: 0.52326732406785 - 2022-03-28 19:00:00: 0.51792386168112 - 2022-03-28 20:00:00: 0.51478640286295 - 2022-03-28 21:00:00: 0.51165909469801 - 2022-03-28 22:00:00: 0.50854197794876 - 2022-03-28 23:00:00: 0.50543509218503 - 2022-03-29 00:00:00: 0.50233249604799 - 2022-03-29 01:00:00: 0.49949556831671 - 2022-03-29 02:00:00: 0.49638855985636 - 2022-03-29 03:00:00: 0.49329169788741 - 2022-03-29 04:00:00: 0.49020502145043 - 2022-03-29 05:00:00: 0.48701082915185 - 2022-03-29 06:00:00: 0.48379207518627 - 2022-03-29 07:00:00: 0.47641775056538 - 2022-03-29 08:00:00: 0.47333397491318 - 2022-03-29 09:00:00: 0.47026062886684 - 2022-03-29 10:00:00: 0.46722834881036 - 2022-03-29 11:00:00: 0.46421105995558 - 2022-03-29 12:00:00: 0.46120448659607 - 2022-03-29 13:00:00: 0.46106178053027 - 2022-03-29 14:00:00: 0.45799350880324 - 2022-03-29 15:00:00: 0.45493625380649 - 2022-03-29 16:00:00: 0.45189003934826 - 2022-03-29 17:00:00: 0.44885488821822 - 2022-03-29 18:00:00: 0.44583082219992 - 2022-03-29 19:00:00: 0.44227281263331 - 2022-03-29 20:00:00: 0.43923720542601 - 2022-03-29 21:00:00: 0.43621328043289 - 2022-03-29 22:00:00: 0.43320104935926 - 2022-03-29 23:00:00: 0.43020052301743 - 2022-03-30 00:00:00: 0.42721171133847 - 2022-03-30 01:00:00: 0.42461300276664 - 2022-03-30 02:00:00: 0.42170161971117 - 2022-03-30 03:00:00: 0.41880201448073 - 2022-03-30 04:00:00: 0.41591418964991 - 2022-03-30 05:00:00: 0.41303814702283 - 2022-03-30 06:00:00: 0.41017388764398 - 2022-03-30 07:00:00: 0.40511686095407 - 2022-03-30 08:00:00: 0.40221528341552 - 2022-03-30 09:00:00: 0.39932569392481 - 2022-03-30 10:00:00: 0.39644809116856 - 2022-03-30 11:00:00: 0.39358247310581 - 2022-03-30 12:00:00: 0.39072883697867 - 2022-03-30 13:00:00: 0.38788717932265 - 2022-03-30 14:00:00: 0.38507949923867 - 2022-03-30 15:00:00: 0.38229211635844 - 2022-03-30 16:00:00: 0.37951616236354 - 2022-03-30 17:00:00: 0.37675163761838 - 2022-03-30 18:00:00: 0.37399854177029 - 2022-03-30 19:00:00: 0.371088500839 - 2022-03-30 20:00:00: 0.36833053828023 - 2022-03-30 21:00:00: 0.36558450226622 - 2022-03-30 22:00:00: 0.36285038342927 - 2022-03-30 23:00:00: 0.36012817179476 - 2022-03-31 00:00:00: 0.35741785679063 - 2022-03-31 01:00:00: 0.35473088623867 - 2022-03-31 02:00:00: 0.35204441436955 - 2022-03-31 03:00:00: 0.34936980367122 - 2022-03-31 04:00:00: 0.34670704127355 - 2022-03-31 05:00:00: 0.34405611375507 - 2022-03-31 06:00:00: 0.34141700715193 - 2022-03-31 07:00:00: 0.33879965658789 - 2022-03-31 08:00:00: 0.33622587889437 - 2022-03-31 09:00:00: 0.33366312427823 - 2022-03-31 10:00:00: 0.33111138613739 - 2022-03-31 11:00:00: 0.32857065727828 - 2022-03-31 12:00:00: 0.32604092992488 - 2022-03-31 13:00:00: 0.32369249528368 - 2022-03-31 14:00:00: 0.32118600119732 - 2022-03-31 15:00:00: 0.31869047818953 - 2022-03-31 16:00:00: 0.31620591622145 - 2022-03-31 17:00:00: 0.31373230471624 - 2022-03-31 18:00:00: 0.31227971856275 - 2022-03-31 19:00:00: 0.31077467208523 - 2022-03-31 20:00:00: 0.31051332056606 - 2022-03-31 21:00:00: 0.31033794986364 - flow_descr: - ref: 0 - x: - - 908 - - 908.304 - - 908.76 - - 909.52 - y: - - 0 - - 8.833 - - 33.319 - - 100 - energy_value_input: 160 - Hovden: - max_vol: 16.4 - lrl: 1045 - hrl: 1100.8 - vol_head: - ref: 0 - x: - - 0 - - 0.333 - - 0.666 - - 1.333 - - 1.8 - - 2.3 - - 10.19 - - 10.99 - - 11.49 - - 12.69 - - 13.29 - - 16.4 - - 16.84 - - 17.54 - y: - - 1045 - - 1047 - - 1049 - - 1053 - - 1055 - - 1057 - - 1085.1 - - 1087.6 - - 1089.1 - - 1092.1 - - 1093.6 - - 1100.8 - - 1101.5 - - 1102.1 - start_vol: 7.6689882244365 - inflow: - 2022-03-27 22:00:00: 0.073706337973454 - 2022-03-27 23:00:00: 0.07525119338433 - 2022-03-28 00:00:00: 0.0699703180866 - 2022-03-28 01:00:00: 0.076029464297907 - 2022-03-28 02:00:00: 0.096354266928488 - 2022-03-28 03:00:00: 0.12726217411854 - 2022-03-28 04:00:00: 0.13354297435792 - 2022-03-28 05:00:00: 0.10641940147939 - 2022-03-28 06:00:00: 0.076702832119507 - 2022-03-28 07:00:00: 0.070355337020372 - 2022-03-28 08:00:00: 0.070227484645963 - 2022-03-28 09:00:00: 0.070099843274689 - 2022-03-28 10:00:00: 0.069972412642649 - 2022-03-28 11:00:00: 0.069845192485921 - 2022-03-28 12:00:00: 0.069718182540558 - 2022-03-28 13:00:00: 0.069591382542593 - 2022-03-28 14:00:00: 0.069464792228042 - 2022-03-28 15:00:00: 0.069338411332902 - 2022-03-28 16:00:00: 0.069212239593157 - 2022-03-28 17:00:00: 0.069086276744778 - 2022-03-28 18:00:00: 0.068960522523724 - 2022-03-28 19:00:00: 0.068834976665945 - 2022-03-28 20:00:00: 0.068709638907384 - 2022-03-28 21:00:00: 0.068584508983978 - 2022-03-28 22:00:00: 0.06845958663166 - 2022-03-28 23:00:00: 0.06833487158636 - 2022-03-29 00:00:00: 0.068210363584009 - 2022-03-29 01:00:00: 0.06808606236054 - 2022-03-29 02:00:00: 0.067961967651887 - 2022-03-29 03:00:00: 0.06783807919399 - 2022-03-29 04:00:00: 0.067714396722796 - 2022-03-29 05:00:00: 0.067590919974261 - 2022-03-29 06:00:00: 0.067467648684349 - 2022-03-29 07:00:00: 0.067344582589038 - 2022-03-29 08:00:00: 0.067221721424318 - 2022-03-29 09:00:00: 0.067099064926196 - 2022-03-29 10:00:00: 0.066976612830693 - 2022-03-29 11:00:00: 0.066854364873852 - 2022-03-29 12:00:00: 0.066732320791735 - 2022-03-29 13:00:00: 0.066610480320424 - 2022-03-29 14:00:00: 0.066488843196028 - 2022-03-29 15:00:00: 0.066367409154678 - 2022-03-29 16:00:00: 0.066246177932535 - 2022-03-29 17:00:00: 0.066125149265785 - 2022-03-29 18:00:00: 0.066004322890648 - 2022-03-29 19:00:00: 0.065883698543372 - 2022-03-29 20:00:00: 0.065763275960242 - 2022-03-29 21:00:00: 0.065643054877574 - 2022-03-29 22:00:00: 0.065523035031724 - 2022-03-29 23:00:00: 0.065403216159085 - 2022-03-30 00:00:00: 0.065283597996088 - 2022-03-30 01:00:00: 0.065164180279208 - 2022-03-30 02:00:00: 0.06504496274496 - 2022-03-30 03:00:00: 0.064925945129906 - 2022-03-30 04:00:00: 0.064807127170652 - 2022-03-30 05:00:00: 0.064688508603852 - 2022-03-30 06:00:00: 0.064570089166209 - 2022-03-30 07:00:00: 0.064451868594476 - 2022-03-30 08:00:00: 0.06433384662546 - 2022-03-30 09:00:00: 0.064216022996018 - 2022-03-30 10:00:00: 0.064098397443065 - 2022-03-30 11:00:00: 0.06398096970357 - 2022-03-30 12:00:00: 0.063863739514562 - 2022-03-30 13:00:00: 0.063746706613127 - 2022-03-30 14:00:00: 0.063629870736416 - 2022-03-30 15:00:00: 0.063513231621637 - 2022-03-30 16:00:00: 0.063396789006065 - 2022-03-30 17:00:00: 0.063280542627039 - 2022-03-30 18:00:00: 0.063164492221966 - 2022-03-30 19:00:00: 0.063048637528319 - 2022-03-30 20:00:00: 0.062932978283642 - 2022-03-30 21:00:00: 0.062817514225548 - 2022-03-30 22:00:00: 0.062702245091725 - 2022-03-30 23:00:00: 0.062587170619932 - 2022-03-31 00:00:00: 0.062472290548004 - 2022-03-31 01:00:00: 0.062357604613852 - 2022-03-31 02:00:00: 0.062243112555466 - 2022-03-31 03:00:00: 0.062128814110914 - 2022-03-31 04:00:00: 0.062014709018344 - 2022-03-31 05:00:00: 0.061900797015986 - 2022-03-31 06:00:00: 0.061787077842154 - 2022-03-31 07:00:00: 0.061673551235246 - 2022-03-31 08:00:00: 0.061560216933746 - 2022-03-31 09:00:00: 0.061447074676224 - 2022-03-31 10:00:00: 0.061334124201339 - 2022-03-31 11:00:00: 0.061221365247841 - 2022-03-31 12:00:00: 0.061108797554569 - 2022-03-31 13:00:00: 0.060996420860454 - 2022-03-31 14:00:00: 0.060884234904524 - 2022-03-31 15:00:00: 0.060772239425899 - 2022-03-31 16:00:00: 0.060660434163794 - 2022-03-31 17:00:00: 0.060548818857524 - 2022-03-31 18:00:00: 0.060437393246501 - 2022-03-31 19:00:00: 0.060326157070238 - 2022-03-31 20:00:00: 0.060215110068349 - 2022-03-31 21:00:00: 0.060104251980548 - flow_descr: - ref: 0 - x: - - 1100.8 - - 1101.5 - - 1102.1 - y: - - 0 - - 7 - - 23 - energy_value_input: 160 - Frosta: - max_vol: 96 - lrl: 1048 - hrl: 1058 - vol_head: - ref: 0 - x: - - 0 - - 4.1 - - 8.4 - - 12.8 - - 17.3 - - 21.8 - - 26.3 - - 30.8 - - 35.4 - - 44.9 - - 54.4 - - 64.5 - - 74.7 - - 85 - - 96 - - 119.9 - y: - - 1048 - - 1048.5 - - 1049 - - 1049.5 - - 1050 - - 1050.5 - - 1051 - - 1051.5 - - 1052 - - 1053 - - 1054 - - 1055 - - 1056 - - 1057 - - 1058 - - 1059.98999 - start_head: 1048.7287109375 - inflow: - 2022-03-27 22:00:00: 0.44436747043865 - 2022-03-27 23:00:00: 0.46211391164619 - 2022-03-28 00:00:00: 0.45554459332386 - 2022-03-28 01:00:00: 0.46033368161024 - 2022-03-28 02:00:00: 0.68921019358173 - 2022-03-28 03:00:00: 0.96933946896525 - 2022-03-28 04:00:00: 1.1832916957245 - 2022-03-28 05:00:00: 0.86666024319657 - 2022-03-28 06:00:00: 0.39783075563804 - 2022-03-28 07:00:00: 0.396802767799 - 2022-03-28 08:00:00: 0.39336699101543 - 2022-03-28 09:00:00: 0.38970442602635 - 2022-03-28 10:00:00: 0.38606369095592 - 2022-03-28 11:00:00: 0.38244467542526 - 2022-03-28 12:00:00: 0.37884726942515 - 2022-03-28 13:00:00: 0.3752713633175 - 2022-03-28 14:00:00: 0.37171684783661 - 2022-03-28 15:00:00: 0.36818361409046 - 2022-03-28 16:00:00: 0.36467155356199 - 2022-03-28 17:00:00: 0.36118055811021 - 2022-03-28 18:00:00: 0.35771051997141 - 2022-03-28 19:00:00: 0.35736910544587 - 2022-03-28 20:00:00: 0.35707915853959 - 2022-03-28 21:00:00: 0.35678944033275 - 2022-03-28 22:00:00: 0.35649995065585 - 2022-03-28 23:00:00: 0.35621068933953 - 2022-03-29 00:00:00: 0.35592165621452 - 2022-03-29 01:00:00: 0.35563285111167 - 2022-03-29 02:00:00: 0.35534427386191 - 2022-03-29 03:00:00: 0.3550559242963 - 2022-03-29 04:00:00: 0.354767802246 - 2022-03-29 05:00:00: 0.35447990754229 - 2022-03-29 06:00:00: 0.35419224001653 - 2022-03-29 07:00:00: 0.35390479950021 - 2022-03-29 08:00:00: 0.35361758582491 - 2022-03-29 09:00:00: 0.35333059882234 - 2022-03-29 10:00:00: 0.35304383832429 - 2022-03-29 11:00:00: 0.35275730416268 - 2022-03-29 12:00:00: 0.35247099616951 - 2022-03-29 13:00:00: 0.35218491417692 - 2022-03-29 14:00:00: 0.35189905801713 - 2022-03-29 15:00:00: 0.35161342752247 - 2022-03-29 16:00:00: 0.35132802252538 - 2022-03-29 17:00:00: 0.35104284285843 - 2022-03-29 18:00:00: 0.35075788835425 - 2022-03-29 19:00:00: 0.35047315884562 - 2022-03-29 20:00:00: 0.35018865416539 - 2022-03-29 21:00:00: 0.34990437414655 - 2022-03-29 22:00:00: 0.34962031862217 - 2022-03-29 23:00:00: 0.34933648742545 - 2022-03-30 00:00:00: 0.34905288038966 - 2022-03-30 01:00:00: 0.34876949734822 - 2022-03-30 02:00:00: 0.34848633813463 - 2022-03-30 03:00:00: 0.3482034025825 - 2022-03-30 04:00:00: 0.34792069052554 - 2022-03-30 05:00:00: 0.34763820179758 - 2022-03-30 06:00:00: 0.34735593623256 - 2022-03-30 07:00:00: 0.34707389366449 - 2022-03-30 08:00:00: 0.34679207392754 - 2022-03-30 09:00:00: 0.34651047685594 - 2022-03-30 10:00:00: 0.34622910228404 - 2022-03-30 11:00:00: 0.34594795004632 - 2022-03-30 12:00:00: 0.34566701997732 - 2022-03-30 13:00:00: 0.34538631191173 - 2022-03-30 14:00:00: 0.34510582568432 - 2022-03-30 15:00:00: 0.34482556112996 - 2022-03-30 16:00:00: 0.34454551808366 - 2022-03-30 17:00:00: 0.34426569638049 - 2022-03-30 18:00:00: 0.34398609585567 - 2022-03-30 19:00:00: 0.3437067163445 - 2022-03-30 20:00:00: 0.34342755768238 - 2022-03-30 21:00:00: 0.34314861970483 - 2022-03-30 22:00:00: 0.34286990224747 - 2022-03-30 23:00:00: 0.34259140514603 - 2022-03-31 00:00:00: 0.34231312823634 - 2022-03-31 01:00:00: 0.34203507135434 - 2022-03-31 02:00:00: 0.34175723433606 - 2022-03-31 03:00:00: 0.34147961701766 - 2022-03-31 04:00:00: 0.3412022192354 - 2022-03-31 05:00:00: 0.34092504082562 - 2022-03-31 06:00:00: 0.34064808162478 - 2022-03-31 07:00:00: 0.34037134146947 - 2022-03-31 08:00:00: 0.34009482019635 - 2022-03-31 09:00:00: 0.3398185176422 - 2022-03-31 10:00:00: 0.3395424336439 - 2022-03-31 11:00:00: 0.33926656803844 - 2022-03-31 12:00:00: 0.33899092066292 - 2022-03-31 13:00:00: 0.33871549135453 - 2022-03-31 14:00:00: 0.33844027995057 - 2022-03-31 15:00:00: 0.33816528628845 - 2022-03-31 16:00:00: 0.33789051020569 - 2022-03-31 17:00:00: 0.3376159515399 - 2022-03-31 18:00:00: 0.3373416101288 - 2022-03-31 19:00:00: 0.33706748581022 - 2022-03-31 20:00:00: 0.33679357842209 - 2022-03-31 21:00:00: 0.33651988780244 - flow_descr: - ref: 0 - x: - - 1058 - - 1058.0802 - - 1058.2005 - - 1058.401 - y: - - 0.001 - - 5.416 - - 21.748 - - 58.5 - energy_value_input: 160 - Varhaug: - max_vol: 16 - lrl: 1285 - hrl: 1295 - vol_head: - ref: 0 - x: - - 0 - - 0.7 - - 1.4 - - 2.1 - - 2.9 - - 3.7 - - 4.5 - - 5.3 - - 6.1 - - 7.7 - - 9.3 - - 10.9 - - 12.5 - - 14.1 - - 16 - - 17.9 - y: - - 1285 - - 1285.5 - - 1286 - - 1286.5 - - 1287 - - 1287.5 - - 1288 - - 1288.5 - - 1289 - - 1290 - - 1291 - - 1292 - - 1293 - - 1294 - - 1295 - - 1296 - start_head: 1288.0076237227 - inflow: - 2022-03-27 22:00:00: 0.044936036336493 - 2022-03-27 23:00:00: 0.046730620278828 - 2022-03-28 00:00:00: 0.046066307190054 - 2022-03-28 01:00:00: 0.046550597016766 - 2022-03-28 02:00:00: 0.069695412834107 - 2022-03-28 03:00:00: 0.098023092367272 - 2022-03-28 04:00:00: 0.1196587108036 - 2022-03-28 05:00:00: 0.087639799873811 - 2022-03-28 06:00:00: 0.040230076412836 - 2022-03-28 07:00:00: 0.040126122586416 - 2022-03-28 08:00:00: 0.039778684484707 - 2022-03-28 09:00:00: 0.039408312744237 - 2022-03-28 10:00:00: 0.039040148523632 - 2022-03-28 11:00:00: 0.038674180660981 - 2022-03-28 12:00:00: 0.038310398031757 - 2022-03-28 13:00:00: 0.037948789548961 - 2022-03-28 14:00:00: 0.037589344163252 - 2022-03-28 15:00:00: 0.037232050863081 - 2022-03-28 16:00:00: 0.036876898674808 - 2022-03-28 17:00:00: 0.03652387666283 - 2022-03-28 18:00:00: 0.036172973929693 - 2022-03-28 19:00:00: 0.036138448865313 - 2022-03-28 20:00:00: 0.036109128391644 - 2022-03-28 21:00:00: 0.036079831044884 - 2022-03-28 22:00:00: 0.036050556807895 - 2022-03-28 23:00:00: 0.036021305663548 - 2022-03-29 00:00:00: 0.035992077594727 - 2022-03-29 01:00:00: 0.035962872584326 - 2022-03-29 02:00:00: 0.035933690615249 - 2022-03-29 03:00:00: 0.035904531670412 - 2022-03-29 04:00:00: 0.035875395732742 - 2022-03-29 05:00:00: 0.035846282785175 - 2022-03-29 06:00:00: 0.03581719281066 - 2022-03-29 07:00:00: 0.035788125792156 - 2022-03-29 08:00:00: 0.035759081712632 - 2022-03-29 09:00:00: 0.035730060555068 - 2022-03-29 10:00:00: 0.035701062302457 - 2022-03-29 11:00:00: 0.035672086937799 - 2022-03-29 12:00:00: 0.035643134444108 - 2022-03-29 13:00:00: 0.035614204804408 - 2022-03-29 14:00:00: 0.035585298001732 - 2022-03-29 15:00:00: 0.035556414019126 - 2022-03-29 16:00:00: 0.035527552839646 - 2022-03-29 17:00:00: 0.035498714446358 - 2022-03-29 18:00:00: 0.03546989882234 - 2022-03-29 19:00:00: 0.03544110595068 - 2022-03-29 20:00:00: 0.035412335814478 - 2022-03-29 21:00:00: 0.035383588396842 - 2022-03-29 22:00:00: 0.035354863680894 - 2022-03-29 23:00:00: 0.035326161649764 - 2022-03-30 00:00:00: 0.035297482286595 - 2022-03-30 01:00:00: 0.035268825574539 - 2022-03-30 02:00:00: 0.03524019149676 - 2022-03-30 03:00:00: 0.035211580036432 - 2022-03-30 04:00:00: 0.03518299117674 - 2022-03-30 05:00:00: 0.035154424900879 - 2022-03-30 06:00:00: 0.035125881192056 - 2022-03-30 07:00:00: 0.035097360033488 - 2022-03-30 08:00:00: 0.035068861408403 - 2022-03-30 09:00:00: 0.035040385300039 - 2022-03-30 10:00:00: 0.035011931691645 - 2022-03-30 11:00:00: 0.034983500566482 - 2022-03-30 12:00:00: 0.034955091907819 - 2022-03-30 13:00:00: 0.034926705698939 - 2022-03-30 14:00:00: 0.034898341923133 - 2022-03-30 15:00:00: 0.034870000563704 - 2022-03-30 16:00:00: 0.034841681603965 - 2022-03-30 17:00:00: 0.034813385027241 - 2022-03-30 18:00:00: 0.034785110816866 - 2022-03-30 19:00:00: 0.034756858956185 - 2022-03-30 20:00:00: 0.034728629428555 - 2022-03-30 21:00:00: 0.034700422217342 - 2022-03-30 22:00:00: 0.034672237305924 - 2022-03-30 23:00:00: 0.034644074677688 - 2022-03-31 00:00:00: 0.034615934316034 - 2022-03-31 01:00:00: 0.034587816204371 - 2022-03-31 02:00:00: 0.034559720326119 - 2022-03-31 03:00:00: 0.034531646664708 - 2022-03-31 04:00:00: 0.034503595203579 - 2022-03-31 05:00:00: 0.034475565926186 - 2022-03-31 06:00:00: 0.034447558815989 - 2022-03-31 07:00:00: 0.034419573856463 - 2022-03-31 08:00:00: 0.034391611031092 - 2022-03-31 09:00:00: 0.034363670323368 - 2022-03-31 10:00:00: 0.034335751716799 - 2022-03-31 11:00:00: 0.034307855194899 - 2022-03-31 12:00:00: 0.034279980741194 - 2022-03-31 13:00:00: 0.034252128339222 - 2022-03-31 14:00:00: 0.034224297972529 - 2022-03-31 15:00:00: 0.034196489624675 - 2022-03-31 16:00:00: 0.034168703279227 - 2022-03-31 17:00:00: 0.034140938919765 - 2022-03-31 18:00:00: 0.034113196529878 - 2022-03-31 19:00:00: 0.034085476093168 - 2022-03-31 20:00:00: 0.034057777593245 - 2022-03-31 21:00:00: 0.03403010101373 - flow_descr: - ref: 0 - x: - - 1295 - - 1295.2 - - 1295.5 - - 1296 - y: - - 0.001 - - 0.567 - - 1.85 - - 4.85 - energy_value_input: 160 - Tangvall: - max_vol: 36.5 - lrl: 1183 - hrl: 1205 - vol_head: - ref: 0 - x: - - 0 - - 0.5 - - 1.5 - - 1.9 - - 3.3 - - 4.8 - - 6.7 - - 10.2 - - 12.3 - - 15.2 - - 18.65 - - 22.1 - - 26.7 - - 31.5 - - 36.3 - - 41.8 - y: - - 1183 - - 1184 - - 1185.5 - - 1186 - - 1187.5 - - 1189 - - 1190.5 - - 1193 - - 1194.5 - - 1196 - - 1197.5 - - 1199 - - 1201 - - 1203 - - 1205 - - 1206.99 - start_head: 1184.7624511719 - inflow: - 2022-03-27 22:00:00: 0.080272132448101 - 2022-03-27 23:00:00: 0.081954604289256 - 2022-03-28 00:00:00: 0.076203306192016 - 2022-03-28 01:00:00: 0.08280220393364 - 2022-03-28 02:00:00: 0.10493754932729 - 2022-03-28 03:00:00: 0.13859874710036 - 2022-03-28 04:00:00: 0.14543904391279 - 2022-03-28 05:00:00: 0.11589929069163 - 2022-03-28 06:00:00: 0.083535555670382 - 2022-03-28 07:00:00: 0.076622622789428 - 2022-03-28 08:00:00: 0.076483381266724 - 2022-03-28 09:00:00: 0.076344369543411 - 2022-03-28 10:00:00: 0.076205587332081 - 2022-03-28 11:00:00: 0.076067034345299 - 2022-03-28 12:00:00: 0.075928710295608 - 2022-03-28 13:00:00: 0.075790614895525 - 2022-03-28 14:00:00: 0.075652747857551 - 2022-03-28 15:00:00: 0.075515108894166 - 2022-03-28 16:00:00: 0.075377697717835 - 2022-03-28 17:00:00: 0.075240514041008 - 2022-03-28 18:00:00: 0.075103557576125 - 2022-03-28 19:00:00: 0.074966828035613 - 2022-03-28 20:00:00: 0.074830325131893 - 2022-03-28 21:00:00: 0.074694048577378 - 2022-03-28 22:00:00: 0.07455799808448 - 2022-03-28 23:00:00: 0.074422173365605 - 2022-03-29 00:00:00: 0.07428657413316 - 2022-03-29 01:00:00: 0.074151200099553 - 2022-03-29 02:00:00: 0.074016050977198 - 2022-03-29 03:00:00: 0.073881126478512 - 2022-03-29 04:00:00: 0.073746426315919 - 2022-03-29 05:00:00: 0.073611950201853 - 2022-03-29 06:00:00: 0.073477697848759 - 2022-03-29 07:00:00: 0.073343668969096 - 2022-03-29 08:00:00: 0.073209863275335 - 2022-03-29 09:00:00: 0.073076280479966 - 2022-03-29 10:00:00: 0.072942920295496 - 2022-03-29 11:00:00: 0.072809782434454 - 2022-03-29 12:00:00: 0.072676866609389 - 2022-03-29 13:00:00: 0.072544172532876 - 2022-03-29 14:00:00: 0.072411699917513 - 2022-03-29 15:00:00: 0.072279448475928 - 2022-03-29 16:00:00: 0.072147417920778 - 2022-03-29 17:00:00: 0.072015607964749 - 2022-03-29 18:00:00: 0.071884018320562 - 2022-03-29 19:00:00: 0.071752648700972 - 2022-03-29 20:00:00: 0.071621498818769 - 2022-03-29 21:00:00: 0.071490568386783 - 2022-03-29 22:00:00: 0.071359857117884 - 2022-03-29 23:00:00: 0.07122936472498 - 2022-03-30 00:00:00: 0.071099090921027 - 2022-03-30 01:00:00: 0.070969035419022 - 2022-03-30 02:00:00: 0.070839197932011 - 2022-03-30 03:00:00: 0.070709578173087 - 2022-03-30 04:00:00: 0.070580175855393 - 2022-03-30 05:00:00: 0.070450990692126 - 2022-03-30 06:00:00: 0.070322022396532 - 2022-03-30 07:00:00: 0.070193270681915 - 2022-03-30 08:00:00: 0.070064735261636 - 2022-03-30 09:00:00: 0.069936415849112 - 2022-03-30 10:00:00: 0.06980831215782 - 2022-03-30 11:00:00: 0.069680423901301 - 2022-03-30 12:00:00: 0.069552750793158 - 2022-03-30 13:00:00: 0.069425292547056 - 2022-03-30 14:00:00: 0.069298048876729 - 2022-03-30 15:00:00: 0.069171019495978 - 2022-03-30 16:00:00: 0.069044204118674 - 2022-03-30 17:00:00: 0.068917602458758 - 2022-03-30 18:00:00: 0.068791214230245 - 2022-03-30 19:00:00: 0.068665039147221 - 2022-03-30 20:00:00: 0.068539076923851 - 2022-03-30 21:00:00: 0.068413327274376 - 2022-03-30 22:00:00: 0.068287789913114 - 2022-03-30 23:00:00: 0.068162464554466 - 2022-03-31 00:00:00: 0.068037350912912 - 2022-03-31 01:00:00: 0.067912448703017 - 2022-03-31 02:00:00: 0.06778775763943 - 2022-03-31 03:00:00: 0.067663277436886 - 2022-03-31 04:00:00: 0.067539007810208 - 2022-03-31 05:00:00: 0.067414948474307 - 2022-03-31 06:00:00: 0.067291099144185 - 2022-03-31 07:00:00: 0.067167459534938 - 2022-03-31 08:00:00: 0.067044029361752 - 2022-03-31 09:00:00: 0.06692080833991 - 2022-03-31 10:00:00: 0.066797796184792 - 2022-03-31 11:00:00: 0.066674992611873 - 2022-03-31 12:00:00: 0.066552397336728 - 2022-03-31 13:00:00: 0.066430010075035 - 2022-03-31 14:00:00: 0.066307830542571 - 2022-03-31 15:00:00: 0.066185858455217 - 2022-03-31 16:00:00: 0.066064093528959 - 2022-03-31 17:00:00: 0.065942535479889 - 2022-03-31 18:00:00: 0.065821184024207 - 2022-03-31 19:00:00: 0.065700038878219 - 2022-03-31 20:00:00: 0.065579099758345 - 2022-03-31 21:00:00: 0.065458366381114 - flow_descr: - ref: 0 - x: - - 1205 - - 1205.198 - - 1205.495 - - 1205.98999 - y: - - 0 - - 4.435 - - 16.443 - - 50 - energy_value_input: 160 - Sirefelt: - max_vol: 1.6 - lrl: 620 - hrl: 630 - vol_head: - ref: 0 - x: - - 0 - - 0.01 - - 0.0338 - - 0.0838 - - 0.2138 - - 0.3038 - - 0.7038 - - 0.9538 - - 1.284 - - 1.6 - - 1.984 - - 2.368 - y: - - 620 - - 620.59998 - - 622 - - 623.09998 - - 624.40002 - - 625 - - 627 - - 628 - - 629.1 - - 630 - - 631 - - 632 - start_head: 625.2109375 - inflow: - 2022-03-27 22:00:00: 0.6486007526592 - 2022-03-27 23:00:00: 4.1710844342761 - 2022-03-28 00:00:00: 8.9878028847197 - 2022-03-28 01:00:00: 5.1218349700756 - 2022-03-28 02:00:00: 4.3815361064888 - 2022-03-28 03:00:00: 4.147641217319 - 2022-03-28 04:00:00: 3.5908340315278 - 2022-03-28 05:00:00: 2.8611549155724 - 2022-03-28 06:00:00: 3.2155122238619 - 2022-03-28 07:00:00: 3.2556252875194 - 2022-03-28 08:00:00: 3.2798008424076 - 2022-03-28 09:00:00: 3.3017522461428 - 2022-03-28 10:00:00: 3.3108412144659 - 2022-03-28 11:00:00: 3.3143686710432 - 2022-03-28 12:00:00: 3.3284862175843 - 2022-03-28 13:00:00: 3.3459448793137 - 2022-03-28 14:00:00: 3.3613575486199 - 2022-03-28 15:00:00: 3.3676179862115 - 2022-03-28 16:00:00: 3.3612723566714 - 2022-03-28 17:00:00: 3.347101596698 - 2022-03-28 18:00:00: 3.3250110936035 - 2022-03-28 19:00:00: 3.3015418424682 - 2022-03-28 20:00:00: 3.278202453125 - 2022-03-28 21:00:00: 3.2549928031406 - 2022-03-28 22:00:00: 3.2319127581898 - 2022-03-28 23:00:00: 3.2089621723017 - 2022-03-29 00:00:00: 3.1861408881034 - 2022-03-29 01:00:00: 3.1634487370601 - 2022-03-29 02:00:00: 3.1408855397128 - 2022-03-29 03:00:00: 3.1184511059124 - 2022-03-29 04:00:00: 3.0961452350507 - 2022-03-29 05:00:00: 3.0739677162892 - 2022-03-29 06:00:00: 3.0519183287844 - 2022-03-29 07:00:00: 3.0299968419097 - 2022-03-29 08:00:00: 3.0082030154752 - 2022-03-29 09:00:00: 2.9865365999441 - 2022-03-29 10:00:00: 2.9650498154221 - 2022-03-29 11:00:00: 2.94453701368 - 2022-03-29 12:00:00: 2.9254004199292 - 2022-03-29 13:00:00: 2.9056508167093 - 2022-03-29 14:00:00: 2.888139330445 - 2022-03-29 15:00:00: 2.8706860201038 - 2022-03-29 16:00:00: 2.8507809106564 - 2022-03-29 17:00:00: 2.8300495068869 - 2022-03-29 18:00:00: 2.8094430739986 - 2022-03-29 19:00:00: 2.7889612846087 - 2022-03-29 20:00:00: 2.7686038040717 - 2022-03-29 21:00:00: 2.7483702906633 - 2022-03-29 22:00:00: 2.7282603957622 - 2022-03-29 23:00:00: 2.7082737640295 - 2022-03-30 00:00:00: 2.6884100335852 - 2022-03-30 01:00:00: 2.6686688361819 - 2022-03-30 02:00:00: 2.6490497973762 - 2022-03-30 03:00:00: 2.6295525366974 - 2022-03-30 04:00:00: 2.610176667814 - 2022-03-30 05:00:00: 2.5909217986968 - 2022-03-30 06:00:00: 2.5717875317808 - 2022-03-30 07:00:00: 2.5527734641232 - 2022-03-30 08:00:00: 2.5338791875603 - 2022-03-30 09:00:00: 2.5151042888608 - 2022-03-30 10:00:00: 2.4964483498777 - 2022-03-30 11:00:00: 2.4779109476971 - 2022-03-30 12:00:00: 2.4598144294233 - 2022-03-30 13:00:00: 2.4417846716264 - 2022-03-30 14:00:00: 2.4235964917323 - 2022-03-30 15:00:00: 2.4055251265398 - 2022-03-30 16:00:00: 2.3875701315851 - 2022-03-30 17:00:00: 2.3697310584789 - 2022-03-30 18:00:00: 2.3520074550395 - 2022-03-30 19:00:00: 2.3343988654235 - 2022-03-30 20:00:00: 2.316904830255 - 2022-03-30 21:00:00: 2.299524886752 - 2022-03-30 22:00:00: 2.2822585688509 - 2022-03-30 23:00:00: 2.2651054073288 - 2022-03-31 00:00:00: 2.2480649299242 - 2022-03-31 01:00:00: 2.2311366614546 - 2022-03-31 02:00:00: 2.2143201239337 - 2022-03-31 03:00:00: 2.1976148366849 - 2022-03-31 04:00:00: 2.1810203164537 - 2022-03-31 05:00:00: 2.1645360775184 - 2022-03-31 06:00:00: 2.148161631798 - 2022-03-31 07:00:00: 2.1318964889588 - 2022-03-31 08:00:00: 2.1157401565194 - 2022-03-31 09:00:00: 2.0996921399527 - 2022-03-31 10:00:00: 2.0837519427873 - 2022-03-31 11:00:00: 2.0679720133944 - 2022-03-31 12:00:00: 2.0529051729293 - 2022-03-31 13:00:00: 2.0386168990363 - 2022-03-31 14:00:00: 2.0240225642219 - 2022-03-31 15:00:00: 2.0090341430989 - 2022-03-31 16:00:00: 1.9938112652457 - 2022-03-31 17:00:00: 1.9785882122454 - 2022-03-31 18:00:00: 1.9634690631268 - 2022-03-31 19:00:00: 1.9484533084132 - 2022-03-31 20:00:00: 1.9335404375765 - 2022-03-31 21:00:00: 1.9187299391203 - flow_descr: - ref: 0 - x: - - 630 - - 630.5 - - 631 - - 632 - y: - - 0 - - 50 - - 110 - - 246 - tactical_limit_min: - 2022-03-27 22:00:00: 0.3 - 2022-03-28 00:00:00: 0.3 - 2022-03-28 01:00:00: 0.3 - 2022-03-28 06:00:00: 0.3 - 2022-03-28 07:00:00: 0.3 - 2022-03-28 11:00:00: 0.3 - 2022-03-28 12:00:00: 0.3 - 2022-03-28 16:00:00: 0.3 - 2022-03-28 18:00:00: 0.3 - 2022-03-29 03:00:00: 0.3 - 2022-03-29 05:00:00: 0.3 - 2022-03-29 08:00:00: 0.3 - 2022-03-29 09:00:00: 0.3 - 2022-03-29 10:00:00: 0.3 - 2022-03-29 11:00:00: 0.3 - 2022-03-29 15:00:00: 0.3 - 2022-03-29 16:00:00: 0.3 - 2022-03-29 19:00:00: 0.3 - 2022-03-29 20:00:00: 0.3 - 2022-03-29 21:00:00: 0.3 - 2022-03-29 22:00:00: 0.3 - 2022-03-30 00:00:00: 0.3 - 2022-03-30 01:00:00: 0.3 - 2022-03-30 08:00:00: 0.3 - 2022-03-30 09:00:00: 0.3 - 2022-03-30 11:00:00: 0.3 - 2022-03-30 12:00:00: 0.3 - 2022-03-30 16:00:00: 0.3 - 2022-03-30 17:00:00: 0.3 - 2022-03-30 19:00:00: 0.3 - 2022-03-30 20:00:00: 0.3 - 2022-03-31 03:00:00: 0.3 - 2022-03-31 04:00:00: 0.3 - 2022-03-31 06:00:00: 0.3 - 2022-03-31 07:00:00: 0.3 - 2022-03-31 08:00:00: 0.3 - 2022-03-31 09:00:00: 0.3 - 2022-03-31 12:00:00: 0.3 - 2022-03-31 13:00:00: 0.3 - 2022-03-31 17:00:00: 0.3 - 2022-03-31 18:00:00: 0.3 - 2022-03-31 19:00:00: 0.3 - 2022-03-31 20:00:00: 0.3 - tactical_cost_min: - 2022-03-27 22:00:00: 10000 - tactical_limit_max: - 2022-03-27 22:00:00: 1.42 - 2022-03-27 23:00:00: 1.42 - 2022-03-28 00:00:00: 1.42 - 2022-03-28 01:00:00: 1.42 - 2022-03-28 02:00:00: 1.42 - 2022-03-28 03:00:00: 1.42 - 2022-03-28 04:00:00: 1.42 - 2022-03-28 05:00:00: 1.42 - 2022-03-28 06:00:00: 1.42 - 2022-03-28 07:00:00: 1.42 - 2022-03-28 08:00:00: 1.42 - 2022-03-28 09:00:00: 1.42 - 2022-03-28 10:00:00: 1.42 - 2022-03-28 11:00:00: 1.42 - 2022-03-28 12:00:00: 1.42 - 2022-03-28 13:00:00: 1.42 - 2022-03-28 14:00:00: 1.42 - 2022-03-28 15:00:00: 1.42 - 2022-03-28 16:00:00: 1.42 - 2022-03-28 17:00:00: 1.42 - 2022-03-28 18:00:00: 1.42 - 2022-03-28 19:00:00: 1.42 - 2022-03-28 20:00:00: 1.42 - 2022-03-28 21:00:00: 1.42 - 2022-03-28 22:00:00: 1.42 - 2022-03-28 23:00:00: 1.42 - 2022-03-29 00:00:00: 1.42 - 2022-03-29 01:00:00: 1.42 - 2022-03-29 02:00:00: 1.42 - 2022-03-29 03:00:00: 1.42 - 2022-03-29 04:00:00: 1.42 - 2022-03-29 05:00:00: 1.42 - 2022-03-29 06:00:00: 1.42 - 2022-03-29 07:00:00: 1.42 - 2022-03-29 08:00:00: 1.42 - 2022-03-29 09:00:00: 1.42 - 2022-03-29 10:00:00: 1.42 - 2022-03-29 11:00:00: 1.42 - 2022-03-29 12:00:00: 1.42 - 2022-03-29 13:00:00: 1.42 - 2022-03-29 14:00:00: 1.42 - 2022-03-29 15:00:00: 1.42 - 2022-03-29 16:00:00: 1.42 - 2022-03-29 17:00:00: 1.42 - 2022-03-29 18:00:00: 1.42 - 2022-03-29 19:00:00: 1.42 - 2022-03-29 20:00:00: 1.42 - 2022-03-29 21:00:00: 1.42 - 2022-03-29 22:00:00: 1.42 - 2022-03-29 23:00:00: 1.42 - 2022-03-30 00:00:00: 1.42 - 2022-03-30 01:00:00: 1.42 - 2022-03-30 02:00:00: 1.42 - 2022-03-30 03:00:00: 1.42 - 2022-03-30 04:00:00: 1.42 - 2022-03-30 05:00:00: 1.42 - 2022-03-30 06:00:00: 1.42 - 2022-03-30 07:00:00: 1.42 - 2022-03-30 08:00:00: 1.42 - 2022-03-30 09:00:00: 1.42 - 2022-03-30 10:00:00: 1.42 - 2022-03-30 11:00:00: 1.42 - 2022-03-30 12:00:00: 1.42 - 2022-03-30 13:00:00: 1.42 - 2022-03-30 14:00:00: 1.42 - 2022-03-30 15:00:00: 1.42 - 2022-03-30 16:00:00: 1.42 - 2022-03-30 17:00:00: 1.42 - 2022-03-30 18:00:00: 1.42 - 2022-03-30 19:00:00: 1.42 - 2022-03-30 20:00:00: 1.42 - 2022-03-30 21:00:00: 1.42 - 2022-03-30 22:00:00: 1.42 - 2022-03-30 23:00:00: 1.42 - 2022-03-31 00:00:00: 1.42 - 2022-03-31 01:00:00: 1.42 - 2022-03-31 02:00:00: 1.42 - 2022-03-31 03:00:00: 1.42 - 2022-03-31 04:00:00: 1.42 - 2022-03-31 05:00:00: 1.42 - 2022-03-31 06:00:00: 1.42 - 2022-03-31 07:00:00: 1.42 - 2022-03-31 08:00:00: 1.42 - 2022-03-31 09:00:00: 1.42 - 2022-03-31 10:00:00: 1.42 - 2022-03-31 11:00:00: 1.42 - 2022-03-31 12:00:00: 1.42 - 2022-03-31 13:00:00: 1.42 - 2022-03-31 14:00:00: 1.42 - 2022-03-31 15:00:00: 1.42 - 2022-03-31 16:00:00: 1.42 - 2022-03-31 17:00:00: 1.42 - 2022-03-31 18:00:00: 1.42 - 2022-03-31 19:00:00: 1.42 - 2022-03-31 20:00:00: 1.42 - 2022-03-31 21:00:00: 1.42 - tactical_cost_max: - 2022-03-27 22:00:00: 100 - energy_value_input: 160 - Lundvann: - max_vol: 30 - lrl: 1190 - hrl: 1230.5 - vol_head: - ref: 0 - x: - - 0 - - 0.8 - - 1.7 - - 3.3 - - 5.1 - - 7.1 - - 9.3 - - 26.9 - - 29.5 - - 30 - - 32.7 - y: - - 1190 - - 1192 - - 1194 - - 1197 - - 1200 - - 1203 - - 1206 - - 1227 - - 1230 - - 1230.5 - - 1233 - start_vol: 3.6930152058154 - inflow: - 2022-03-27 22:00:00: 0.069893941181723 - 2022-03-27 23:00:00: 0.071358890278244 - 2022-03-28 00:00:00: 0.066351163702811 - 2022-03-28 01:00:00: 0.072096905799739 - 2022-03-28 02:00:00: 0.091370425535636 - 2022-03-28 03:00:00: 0.12067964787103 - 2022-03-28 04:00:00: 0.12663557913251 - 2022-03-28 05:00:00: 0.10091494967873 - 2022-03-28 06:00:00: 0.072735444251257 - 2022-03-28 07:00:00: 0.066716267864146 - 2022-03-28 08:00:00: 0.066595028543586 - 2022-03-28 09:00:00: 0.066473989312205 - 2022-03-28 10:00:00: 0.066353149919754 - 2022-03-28 11:00:00: 0.06623251011596 - 2022-03-28 12:00:00: 0.066112069650529 - 2022-03-28 13:00:00: 0.065991828273149 - 2022-03-28 14:00:00: 0.065871785733488 - 2022-03-28 15:00:00: 0.0657519417812 - 2022-03-28 16:00:00: 0.065632296165925 - 2022-03-28 17:00:00: 0.065512848637289 - 2022-03-28 18:00:00: 0.065393598944911 - 2022-03-28 19:00:00: 0.065274546838396 - 2022-03-28 20:00:00: 0.065155692067347 - 2022-03-28 21:00:00: 0.065037034381359 - 2022-03-28 22:00:00: 0.064918573530022 - 2022-03-28 23:00:00: 0.064800309262928 - 2022-03-29 00:00:00: 0.064682241329664 - 2022-03-29 01:00:00: 0.064564369479822 - 2022-03-29 02:00:00: 0.064446693462996 - 2022-03-29 03:00:00: 0.064329213028783 - 2022-03-29 04:00:00: 0.06421192792679 - 2022-03-29 05:00:00: 0.064094837906627 - 2022-03-29 06:00:00: 0.063977942717917 - 2022-03-29 07:00:00: 0.063861242110295 - 2022-03-29 08:00:00: 0.063744735833405 - 2022-03-29 09:00:00: 0.06362842363691 - 2022-03-29 10:00:00: 0.063512305270485 - 2022-03-29 11:00:00: 0.063396380483825 - 2022-03-29 12:00:00: 0.063280649026645 - 2022-03-29 13:00:00: 0.063165110648678 - 2022-03-29 14:00:00: 0.063049765099681 - 2022-03-29 15:00:00: 0.062934612129436 - 2022-03-29 16:00:00: 0.062819651487748 - 2022-03-29 17:00:00: 0.062704882924451 - 2022-03-29 18:00:00: 0.062590306189407 - 2022-03-29 19:00:00: 0.062475921032508 - 2022-03-29 20:00:00: 0.062361727203677 - 2022-03-29 21:00:00: 0.062247724452872 - 2022-03-29 22:00:00: 0.062133912530083 - 2022-03-29 23:00:00: 0.062020291185339 - 2022-03-30 00:00:00: 0.061906860168704 - 2022-03-30 01:00:00: 0.061793619230283 - 2022-03-30 02:00:00: 0.061680568120221 - 2022-03-30 03:00:00: 0.061567706588704 - 2022-03-30 04:00:00: 0.061455034385963 - 2022-03-30 05:00:00: 0.061342551262273 - 2022-03-30 06:00:00: 0.061230256967957 - 2022-03-30 07:00:00: 0.061118151253383 - 2022-03-30 08:00:00: 0.061006233868971 - 2022-03-30 09:00:00: 0.060894504565189 - 2022-03-30 10:00:00: 0.060782963092561 - 2022-03-30 11:00:00: 0.060671609201661 - 2022-03-30 12:00:00: 0.060560442643119 - 2022-03-30 13:00:00: 0.060449463167621 - 2022-03-30 14:00:00: 0.060338670525911 - 2022-03-30 15:00:00: 0.060228064468793 - 2022-03-30 16:00:00: 0.06011764474713 - 2022-03-30 17:00:00: 0.060007411111848 - 2022-03-30 18:00:00: 0.059897363313933 - 2022-03-30 19:00:00: 0.05978750110444 - 2022-03-30 20:00:00: 0.059677824234488 - 2022-03-30 21:00:00: 0.059568332455261 - 2022-03-30 22:00:00: 0.059459025518015 - 2022-03-30 23:00:00: 0.059349903174073 - 2022-03-31 00:00:00: 0.059240965174831 - 2022-03-31 01:00:00: 0.059132211271757 - 2022-03-31 02:00:00: 0.059023641216391 - 2022-03-31 03:00:00: 0.058915254760349 - 2022-03-31 04:00:00: 0.058807051655326 - 2022-03-31 05:00:00: 0.05869903165309 - 2022-03-31 06:00:00: 0.058591194505491 - 2022-03-31 07:00:00: 0.058483539964458 - 2022-03-31 08:00:00: 0.058376067782 - 2022-03-31 09:00:00: 0.058268777710212 - 2022-03-31 10:00:00: 0.05816166950127 - 2022-03-31 11:00:00: 0.058054742907435 - 2022-03-31 12:00:00: 0.057947997681056 - 2022-03-31 13:00:00: 0.057841433574569 - 2022-03-31 14:00:00: 0.057735050340497 - 2022-03-31 15:00:00: 0.057628847731456 - 2022-03-31 16:00:00: 0.057522825500149 - 2022-03-31 17:00:00: 0.057416983399376 - 2022-03-31 18:00:00: 0.057311321182027 - 2022-03-31 19:00:00: 0.057205838601088 - 2022-03-31 20:00:00: 0.057100535409641 - 2022-03-31 21:00:00: 0.056995411360865 - flow_descr: - ref: 0 - x: - - 1230.5 - - 1230.7 - - 1231.4 - - 1231.5 - y: - - 0 - - 2.8 - - 26.8 - - 31 - energy_value_input: 160 - Danielsen: - max_vol: 9.65 - lrl: 1282 - hrl: 1302 - vol_head: - ref: 0 - x: - - 0 - - 0.5 - - 1 - - 1.5 - - 2.1 - - 2.7 - - 3.4 - - 4.1 - - 4.8 - - 5.6 - - 6.4 - - 7.2 - - 8.1 - - 9.2 - - 9.65 - - 10.55 - - 11.45 - y: - - 1282 - - 1283.5 - - 1285 - - 1286.5 - - 1288 - - 1289.5 - - 1291 - - 1292.5 - - 1294 - - 1295.5 - - 1297 - - 1298.5 - - 1300 - - 1301.5 - - 1302 - - 1303 - - 1304 - start_head: 1286.6818880208 - inflow: - 2022-03-27 22:00:00: 0.072011939399351 - 2022-03-27 23:00:00: 0.073521280892737 - 2022-03-28 00:00:00: 0.068361805027138 - 2022-03-28 01:00:00: 0.074281660520943 - 2022-03-28 02:00:00: 0.094139226309443 - 2022-03-28 03:00:00: 0.12433660689742 - 2022-03-28 04:00:00: 0.1304730209244 - 2022-03-28 05:00:00: 0.10397297845688 - 2022-03-28 06:00:00: 0.074939548622507 - 2022-03-28 07:00:00: 0.068737972950938 - 2022-03-28 08:00:00: 0.068613059711573 - 2022-03-28 09:00:00: 0.068488352624696 - 2022-03-28 10:00:00: 0.068363851432474 - 2022-03-28 11:00:00: 0.06823955587705 - 2022-03-28 12:00:00: 0.068115465700545 - 2022-03-28 13:00:00: 0.067991580645062 - 2022-03-28 14:00:00: 0.067867900452684 - 2022-03-28 15:00:00: 0.067744424865479 - 2022-03-28 16:00:00: 0.067621153625498 - 2022-03-28 17:00:00: 0.067498086474783 - 2022-03-28 18:00:00: 0.067375223155362 - 2022-03-28 19:00:00: 0.067252563409257 - 2022-03-28 20:00:00: 0.067130106978479 - 2022-03-28 21:00:00: 0.067007853605036 - 2022-03-28 22:00:00: 0.066885803030932 - 2022-03-28 23:00:00: 0.066763954998168 - 2022-03-29 00:00:00: 0.066642309248745 - 2022-03-29 01:00:00: 0.066520865524665 - 2022-03-29 02:00:00: 0.066399623567935 - 2022-03-29 03:00:00: 0.066278583120565 - 2022-03-29 04:00:00: 0.066157743924571 - 2022-03-29 05:00:00: 0.066037105721979 - 2022-03-29 06:00:00: 0.065916668254824 - 2022-03-29 07:00:00: 0.065796431265152 - 2022-03-29 08:00:00: 0.065676394495023 - 2022-03-29 09:00:00: 0.065556557686513 - 2022-03-29 10:00:00: 0.065436920581712 - 2022-03-29 11:00:00: 0.065317482922729 - 2022-03-29 12:00:00: 0.065198244451695 - 2022-03-29 13:00:00: 0.065079204910759 - 2022-03-29 14:00:00: 0.064960364042096 - 2022-03-29 15:00:00: 0.064841721587904 - 2022-03-29 16:00:00: 0.064723277290407 - 2022-03-29 17:00:00: 0.064605030891859 - 2022-03-29 18:00:00: 0.064486982134541 - 2022-03-29 19:00:00: 0.064369130760766 - 2022-03-29 20:00:00: 0.06425147651288 - 2022-03-29 21:00:00: 0.064134019133262 - 2022-03-29 22:00:00: 0.064016758364328 - 2022-03-29 23:00:00: 0.063899693948531 - 2022-03-30 00:00:00: 0.063782825628362 - 2022-03-30 01:00:00: 0.063666153146352 - 2022-03-30 02:00:00: 0.063549676245076 - 2022-03-30 03:00:00: 0.063433394667149 - 2022-03-30 04:00:00: 0.063317308155234 - 2022-03-30 05:00:00: 0.063201416452039 - 2022-03-30 06:00:00: 0.063085719300319 - 2022-03-30 07:00:00: 0.062970216442879 - 2022-03-30 08:00:00: 0.062854907622576 - 2022-03-30 09:00:00: 0.062739792582316 - 2022-03-30 10:00:00: 0.062624871065063 - 2022-03-30 11:00:00: 0.062510142813832 - 2022-03-30 12:00:00: 0.062395607571698 - 2022-03-30 13:00:00: 0.062281265081791 - 2022-03-30 14:00:00: 0.062167115087303 - 2022-03-30 15:00:00: 0.062053157331484 - 2022-03-30 16:00:00: 0.061939391557649 - 2022-03-30 17:00:00: 0.061825817509176 - 2022-03-30 18:00:00: 0.061712434929507 - 2022-03-30 19:00:00: 0.061599243562151 - 2022-03-30 20:00:00: 0.061486243150684 - 2022-03-30 21:00:00: 0.061373433438754 - 2022-03-30 22:00:00: 0.061260814170076 - 2022-03-30 23:00:00: 0.061148385088439 - 2022-03-31 00:00:00: 0.061036145937705 - 2022-03-31 01:00:00: 0.06092409646181 - 2022-03-31 02:00:00: 0.060812236404766 - 2022-03-31 03:00:00: 0.060700565510663 - 2022-03-31 04:00:00: 0.060589083523669 - 2022-03-31 05:00:00: 0.060477790188032 - 2022-03-31 06:00:00: 0.060366685248082 - 2022-03-31 07:00:00: 0.060255768448229 - 2022-03-31 08:00:00: 0.06014503953297 - 2022-03-31 09:00:00: 0.060034498246885 - 2022-03-31 10:00:00: 0.059924144334642 - 2022-03-31 11:00:00: 0.059813977540994 - 2022-03-31 12:00:00: 0.059703997610785 - 2022-03-31 13:00:00: 0.05959420428895 - 2022-03-31 14:00:00: 0.059484597320512 - 2022-03-31 15:00:00: 0.059375176450591 - 2022-03-31 16:00:00: 0.059265941424396 - 2022-03-31 17:00:00: 0.059156891987236 - 2022-03-31 18:00:00: 0.059048027884513 - 2022-03-31 19:00:00: 0.058939348861727 - 2022-03-31 20:00:00: 0.058830854664479 - 2022-03-31 21:00:00: 0.058722545038467 - flow_descr: - ref: 0 - x: - - 1302 - - 1302.5 - - 1303 - y: - - 0 - - 5 - - 20 - tactical_limit_max: - 2022-03-27 22:00:00: 9.2 - 2022-03-27 23:00:00: 9.2 - 2022-03-28 00:00:00: 9.2 - 2022-03-28 02:00:00: 9.2 - 2022-03-28 03:00:00: 9.2 - 2022-03-28 04:00:00: 9.2 - 2022-03-28 06:00:00: 9.2 - 2022-03-28 07:00:00: 9.2 - 2022-03-28 08:00:00: 9.2 - 2022-03-28 09:00:00: 9.2 - 2022-03-28 10:00:00: 9.2 - 2022-03-28 11:00:00: 9.2 - 2022-03-28 12:00:00: 9.2 - 2022-03-28 14:00:00: 9.2 - 2022-03-28 15:00:00: 9.2 - 2022-03-28 17:00:00: 9.2 - 2022-03-28 18:00:00: 9.2 - 2022-03-28 21:00:00: 9.2 - 2022-03-28 22:00:00: 9.2 - 2022-03-29 00:00:00: 9.2 - 2022-03-29 01:00:00: 9.2 - 2022-03-29 05:00:00: 9.2 - 2022-03-29 06:00:00: 9.2 - 2022-03-29 08:00:00: 9.2 - 2022-03-29 09:00:00: 9.2 - 2022-03-29 11:00:00: 9.2 - 2022-03-29 12:00:00: 9.2 - 2022-03-29 13:00:00: 9.2 - 2022-03-29 15:00:00: 9.2 - 2022-03-29 16:00:00: 9.2 - 2022-03-29 18:00:00: 9.2 - 2022-03-29 19:00:00: 9.2 - 2022-03-29 20:00:00: 9.2 - 2022-03-29 21:00:00: 9.2 - 2022-03-29 22:00:00: 9.2 - 2022-03-29 23:00:00: 9.2 - 2022-03-30 00:00:00: 9.2 - 2022-03-30 02:00:00: 9.2 - 2022-03-30 03:00:00: 9.2 - 2022-03-30 04:00:00: 9.2 - 2022-03-30 06:00:00: 9.2 - 2022-03-30 07:00:00: 9.2 - 2022-03-30 09:00:00: 9.2 - 2022-03-30 10:00:00: 9.2 - 2022-03-30 13:00:00: 9.2 - 2022-03-30 14:00:00: 9.2 - 2022-03-30 17:00:00: 9.2 - 2022-03-30 18:00:00: 9.2 - 2022-03-30 21:00:00: 9.2 - 2022-03-30 22:00:00: 9.2 - 2022-03-31 00:00:00: 9.2 - 2022-03-31 01:00:00: 9.2 - 2022-03-31 03:00:00: 9.2 - 2022-03-31 04:00:00: 9.2 - 2022-03-31 05:00:00: 9.2 - 2022-03-31 07:00:00: 9.2 - 2022-03-31 08:00:00: 9.2 - 2022-03-31 09:00:00: 9.2 - 2022-03-31 11:00:00: 9.2 - 2022-03-31 12:00:00: 9.2 - 2022-03-31 13:00:00: 9.2 - 2022-03-31 15:00:00: 9.2 - 2022-03-31 16:00:00: 9.2 - 2022-03-31 18:00:00: 9.2 - 2022-03-31 19:00:00: 9.2 - 2022-03-31 20:00:00: 9.2 - tactical_cost_max: - 2022-03-27 22:00:00: 500 - energy_value_input: 160 - Dalbysvatn: - max_vol: 115 - lrl: 363 - hrl: 380 - vol_head: - ref: 0 - x: - - 0 - - 6.23 - - 12.46 - - 18.7 - - 24.95 - - 31.21 - - 37.69 - - 44.21 - - 50.86 - - 57.71 - - 64.72 - - 78.76 - - 92.82 - - 107.57 - - 115 - - 123.02 - - 139.32 - y: - - 363 - - 364 - - 365 - - 366 - - 367 - - 368 - - 369 - - 370 - - 371 - - 372 - - 373 - - 375 - - 377 - - 379 - - 380 - - 381 - - 383 - start_head: 367.69541422526 - inflow: - 2022-03-27 22:00:00: 7.2176969673232 - 2022-03-27 23:00:00: 7.2176969673232 - 2022-03-28 00:00:00: 7.2176969673232 - 2022-03-28 01:00:00: 7.2176969673232 - 2022-03-28 02:00:00: 7.2176969673232 - 2022-03-28 03:00:00: 7.2176969673232 - 2022-03-28 06:00:00: 7.2176969673232 - 2022-03-28 07:00:00: 7.2176969673232 - 2022-03-28 08:00:00: 7.2176969673232 - 2022-03-28 20:00:00: 7.2176969673232 - 2022-03-28 21:00:00: 4.4307366209361 - 2022-03-29 00:00:00: 4.4307366209361 - 2022-03-29 01:00:00: 4.4307366209361 - 2022-03-29 02:00:00: 4.4307366209361 - 2022-03-29 03:00:00: 4.4307366209361 - 2022-03-29 05:00:00: 4.4307366209361 - 2022-03-29 06:00:00: 4.4307366209361 - 2022-03-29 07:00:00: 4.4307366209361 - 2022-03-29 08:00:00: 4.4307366209361 - 2022-03-29 10:00:00: 4.4307366209361 - 2022-03-29 11:00:00: 4.4307366209361 - 2022-03-29 13:00:00: 4.4307366209361 - 2022-03-29 14:00:00: 4.4307366209361 - 2022-03-29 16:00:00: 4.4307366209361 - 2022-03-29 17:00:00: 4.4307366209361 - 2022-03-29 19:00:00: 4.4307366209361 - 2022-03-29 20:00:00: 4.4307366209361 - 2022-03-29 21:00:00: 3.8072361668233 - 2022-03-29 22:00:00: 3.8072361668233 - 2022-03-30 00:00:00: 3.8072361668233 - 2022-03-30 02:00:00: 3.8072361668233 - 2022-03-30 03:00:00: 3.8072361668233 - 2022-03-30 05:00:00: 3.8072361668233 - 2022-03-30 07:00:00: 3.8072361668233 - 2022-03-30 08:00:00: 3.8072361668233 - 2022-03-30 10:00:00: 3.8072361668233 - 2022-03-30 11:00:00: 3.8072361668233 - 2022-03-30 12:00:00: 3.8072361668233 - 2022-03-30 13:00:00: 3.8072361668233 - 2022-03-30 15:00:00: 3.8072361668233 - 2022-03-30 16:00:00: 3.8072361668233 - 2022-03-30 17:00:00: 3.8072361668233 - 2022-03-30 18:00:00: 3.8072361668233 - 2022-03-30 20:00:00: 3.8072361668233 - 2022-03-30 21:00:00: 3.3631731388582 - 2022-03-30 22:00:00: 3.3631731388582 - 2022-03-30 23:00:00: 3.3631731388582 - 2022-03-31 01:00:00: 3.3631731388582 - 2022-03-31 02:00:00: 3.3631731388582 - 2022-03-31 04:00:00: 3.3631731388582 - 2022-03-31 05:00:00: 3.3631731388582 - 2022-03-31 09:00:00: 3.3631731388582 - 2022-03-31 10:00:00: 3.3631731388582 - 2022-03-31 12:00:00: 3.3631731388582 - 2022-03-31 13:00:00: 3.3631731388582 - 2022-03-31 15:00:00: 3.3631731388582 - 2022-03-31 16:00:00: 3.3631731388582 - 2022-03-31 17:00:00: 3.3631731388582 - 2022-03-31 18:00:00: 3.3631731388582 - 2022-03-31 21:00:00: 2.9641961949568 - flow_descr: - ref: 0 - x: - - 380 - - 380.582 - - 381.455 - - 382.91 - y: - - 0.001 - - 20.1 - - 84 - - 250 - min_vol_constr: - 2022-03-27 22:00:00: 0 - tactical_limit_max: - 2022-03-27 22:00:00: 109 - tactical_cost_max: - 2022-03-27 22:00:00: 500 - energy_value_input: 160 - Nielsen: - max_vol: 66 - lrl: 924 - hrl: 950 - vol_head: - ref: 0 - x: - - 0 - - 0.8 - - 1.6 - - 3.4 - - 7.1 - - 11.2 - - 15.5 - - 20.3 - - 25.3 - - 30.5 - - 36.2 - - 41.9 - - 47.8 - - 53.8 - - 59.9 - - 66 - - 68.8 - y: - - 924 - - 924.5 - - 925 - - 926 - - 928 - - 930 - - 932 - - 934 - - 936 - - 938 - - 940 - - 942 - - 944 - - 946 - - 948 - - 950 - - 950.90002 - start_head: 941.33984375 - inflow: - 2022-03-27 22:00:00: 0.33119523077637 - 2022-03-27 23:00:00: 0.3444219790921 - 2022-03-28 00:00:00: 0.33952574558595 - 2022-03-28 01:00:00: 0.34309514097542 - 2022-03-28 02:00:00: 0.51368100570324 - 2022-03-28 03:00:00: 0.72246649559582 - 2022-03-28 04:00:00: 0.88192901666355 - 2022-03-28 05:00:00: 0.64593778425512 - 2022-03-28 06:00:00: 0.2965105631909 - 2022-03-28 07:00:00: 0.29574438498877 - 2022-03-28 08:00:00: 0.29318363749839 - 2022-03-28 09:00:00: 0.29045386059642 - 2022-03-28 10:00:00: 0.28774035393344 - 2022-03-28 11:00:00: 0.28504303524204 - 2022-03-28 12:00:00: 0.28236182253036 - 2022-03-28 13:00:00: 0.27969663408308 - 2022-03-28 14:00:00: 0.27704738846249 - 2022-03-28 15:00:00: 0.27441400450937 - 2022-03-28 16:00:00: 0.27179640134395 - 2022-03-28 17:00:00: 0.26919449836679 - 2022-03-28 18:00:00: 0.26660821525959 - 2022-03-28 19:00:00: 0.26635375274805 - 2022-03-28 20:00:00: 0.26613764999767 - 2022-03-28 21:00:00: 0.26592171770119 - 2022-03-28 22:00:00: 0.26570595573226 - 2022-03-28 23:00:00: 0.26549036396467 - 2022-03-29 00:00:00: 0.26527494227225 - 2022-03-29 01:00:00: 0.26505969052892 - 2022-03-29 02:00:00: 0.26484460860869 - 2022-03-29 03:00:00: 0.26462969638563 - 2022-03-29 04:00:00: 0.26441495373391 - 2022-03-29 05:00:00: 0.26420038052777 - 2022-03-29 06:00:00: 0.26398597664153 - 2022-03-29 07:00:00: 0.26377174194959 - 2022-03-29 08:00:00: 0.26355767632643 - 2022-03-29 09:00:00: 0.26334377964661 - 2022-03-29 10:00:00: 0.26313005178477 - 2022-03-29 11:00:00: 0.26291649261563 - 2022-03-29 12:00:00: 0.26270310201398 - 2022-03-29 13:00:00: 0.26248987985471 - 2022-03-29 14:00:00: 0.26227682601276 - 2022-03-29 15:00:00: 0.26206394036319 - 2022-03-29 16:00:00: 0.26185122278109 - 2022-03-29 17:00:00: 0.26163867314167 - 2022-03-29 18:00:00: 0.26142629132021 - 2022-03-29 19:00:00: 0.26121407719205 - 2022-03-29 20:00:00: 0.26100203063263 - 2022-03-29 21:00:00: 0.26079015151747 - 2022-03-29 22:00:00: 0.26057843972215 - 2022-03-29 23:00:00: 0.26036689512234 - 2022-03-30 00:00:00: 0.26015551759379 - 2022-03-30 01:00:00: 0.25994430701235 - 2022-03-30 02:00:00: 0.2597332632539 - 2022-03-30 03:00:00: 0.25952238619445 - 2022-03-30 04:00:00: 0.25931167571005 - 2022-03-30 05:00:00: 0.25910113167685 - 2022-03-30 06:00:00: 0.25889075397108 - 2022-03-30 07:00:00: 0.25868054246904 - 2022-03-30 08:00:00: 0.25847049704712 - 2022-03-30 09:00:00: 0.25826061758177 - 2022-03-30 10:00:00: 0.25805090394953 - 2022-03-30 11:00:00: 0.25784135602703 - 2022-03-30 12:00:00: 0.25763197369096 - 2022-03-30 13:00:00: 0.25742275681811 - 2022-03-30 14:00:00: 0.25721370528531 - 2022-03-30 15:00:00: 0.25700481896952 - 2022-03-30 16:00:00: 0.25679609774774 - 2022-03-30 17:00:00: 0.25658754149707 - 2022-03-30 18:00:00: 0.25637915009468 - 2022-03-30 19:00:00: 0.25617092341781 - 2022-03-30 20:00:00: 0.25596286134379 - 2022-03-30 21:00:00: 0.25575496375004 - 2022-03-30 22:00:00: 0.25554723051403 - 2022-03-30 23:00:00: 0.25533966151333 - 2022-03-31 00:00:00: 0.25513225662559 - 2022-03-31 01:00:00: 0.25492501572851 - 2022-03-31 02:00:00: 0.25471793869991 - 2022-03-31 03:00:00: 0.25451102541766 - 2022-03-31 04:00:00: 0.25430427575971 - 2022-03-31 05:00:00: 0.25409768960411 - 2022-03-31 06:00:00: 0.25389126682896 - 2022-03-31 07:00:00: 0.25368500731245 - 2022-03-31 08:00:00: 0.25347891093286 - 2022-03-31 09:00:00: 0.25327297756853 - 2022-03-31 10:00:00: 0.25306720709789 - 2022-03-31 11:00:00: 0.25286159939944 - 2022-03-31 12:00:00: 0.25265615435176 - 2022-03-31 13:00:00: 0.25245087183352 - 2022-03-31 14:00:00: 0.25224575172346 - 2022-03-31 15:00:00: 0.25204079390038 - 2022-03-31 16:00:00: 0.25183599824319 - 2022-03-31 17:00:00: 0.25163136463086 - 2022-03-31 18:00:00: 0.25142689294244 - 2022-03-31 19:00:00: 0.25122258305705 - 2022-03-31 20:00:00: 0.25101843485392 - 2022-03-31 21:00:00: 0.25081444821231 - flow_descr: - ref: 0 - x: - - 950 - - 950.1202 - - 950.3005 - - 950.601 - y: - - 0.001 - - 9.628 - - 36.105 - - 106 - max_vol_constr: - 2022-03-27 22:00:00: 66 - energy_value_input: 160 - Rullsvatn: - max_vol: 1000 - lrl: 67 - hrl: 68.5 - vol_head: - ref: 0 - x: - - 0 - - 1000 - - 2000 - y: - - 67 - - 68.5 - - 70 - inflow: - 2022-03-27 22:00:00: 0 - flow_descr: - ref: 0 - x: - - 68.5 - - 70 - y: - - 0 - - 100 - min_vol_constr: - 2022-03-27 22:00:00: 0 - energy_value_input: 160 - Ranemsletta_1183: - max_vol: 0.047 - lrl: 1182.5 - hrl: 1183 - vol_head: - ref: 0 - x: - - 0 - - 0.127 - y: - - 1182.5 - - 1184.35 - start_head: 1182.697582688 - inflow: - 2022-03-27 22:00:00: 0.0038123967917304 - 2022-03-27 23:00:00: 0.0038923031060861 - 2022-03-28 00:00:00: 0.0036191543837897 - 2022-03-28 01:00:00: 0.0039325584981676 - 2022-03-28 02:00:00: 0.0049838413928529 - 2022-03-28 03:00:00: 0.0065825262475106 - 2022-03-28 04:00:00: 0.0069073952254095 - 2022-03-28 05:00:00: 0.0055044518006581 - 2022-03-28 06:00:00: 0.0039673878682504 - 2022-03-28 07:00:00: 0.0036390691562261 - 2022-03-28 08:00:00: 0.0036324561023774 - 2022-03-28 09:00:00: 0.0036258539624839 - 2022-03-28 10:00:00: 0.0036192627228957 - 2022-03-28 11:00:00: 0.0036126823699614 - 2022-03-28 12:00:00: 0.0036061128900289 - 2022-03-28 13:00:00: 0.0035995542694445 - 2022-03-28 14:00:00: 0.0035930064945539 - 2022-03-28 15:00:00: 0.0035864695517018 - 2022-03-28 16:00:00: 0.0035799434272323 - 2022-03-28 17:00:00: 0.0035734281074885 - 2022-03-28 18:00:00: 0.0035669235788133 - 2022-03-28 19:00:00: 0.0035604298275489 - 2022-03-28 20:00:00: 0.0035539468400371 - 2022-03-28 21:00:00: 0.0035474746026196 - 2022-03-28 22:00:00: 0.0035410131016376 - 2022-03-28 23:00:00: 0.0035345623234324 - 2022-03-29 00:00:00: 0.0035281222543453 - 2022-03-29 01:00:00: 0.0035216928807176 - 2022-03-29 02:00:00: 0.0035152741888907 - 2022-03-29 03:00:00: 0.0035088661652064 - 2022-03-29 04:00:00: 0.0035024687960067 - 2022-03-29 05:00:00: 0.0034960820676342 - 2022-03-29 06:00:00: 0.0034897059664318 - 2022-03-29 07:00:00: 0.0034833404787433 - 2022-03-29 08:00:00: 0.003476985590913 - 2022-03-29 09:00:00: 0.003470641289286 - 2022-03-29 10:00:00: 0.0034643075602083 - 2022-03-29 11:00:00: 0.0034579843900268 - 2022-03-29 12:00:00: 0.0034516717650897 - 2022-03-29 13:00:00: 0.0034453696717461 - 2022-03-29 14:00:00: 0.0034390780963463 - 2022-03-29 15:00:00: 0.003432797025242 - 2022-03-29 16:00:00: 0.0034265264447863 - 2022-03-29 17:00:00: 0.0034202663413337 - 2022-03-29 18:00:00: 0.0034140167012404 - 2022-03-29 19:00:00: 0.0034077775108641 - 2022-03-29 20:00:00: 0.0034015487565642 - 2022-03-29 21:00:00: 0.0033953304247021 - 2022-03-29 22:00:00: 0.0033891225016409 - 2022-03-29 23:00:00: 0.0033829249737458 - 2022-03-30 00:00:00: 0.0033767378273839 - 2022-03-30 01:00:00: 0.0033705610489245 - 2022-03-30 02:00:00: 0.0033643946247393 - 2022-03-30 03:00:00: 0.003358238541202 - 2022-03-30 04:00:00: 0.0033520927846889 - 2022-03-30 05:00:00: 0.0033459573415785 - 2022-03-30 06:00:00: 0.0033398321982522 - 2022-03-30 07:00:00: 0.0033337173410936 - 2022-03-30 08:00:00: 0.0033276127564893 - 2022-03-30 09:00:00: 0.0033215184308285 - 2022-03-30 10:00:00: 0.0033154343505033 - 2022-03-30 11:00:00: 0.0033093605019088 - 2022-03-30 12:00:00: 0.0033032968714428 - 2022-03-30 13:00:00: 0.0032972434455066 - 2022-03-30 14:00:00: 0.0032912002105043 - 2022-03-30 15:00:00: 0.0032851671528433 - 2022-03-30 16:00:00: 0.0032791442589344 - 2022-03-30 17:00:00: 0.0032731315151917 - 2022-03-30 18:00:00: 0.0032671289080327 - 2022-03-30 19:00:00: 0.0032611364238786 - 2022-03-30 20:00:00: 0.0032551540491539 - 2022-03-30 21:00:00: 0.003249181770287 - 2022-03-30 22:00:00: 0.0032432195737099 - 2022-03-30 23:00:00: 0.0032372674458585 - 2022-03-31 00:00:00: 0.0032313253731726 - 2022-03-31 01:00:00: 0.0032253933420958 - 2022-03-31 02:00:00: 0.0032194713390758 - 2022-03-31 03:00:00: 0.0032135593505645 - 2022-03-31 04:00:00: 0.0032076573630178 - 2022-03-31 05:00:00: 0.0032017653628958 - 2022-03-31 06:00:00: 0.0031958833366631 - 2022-03-31 07:00:00: 0.0031900112707886 - 2022-03-31 08:00:00: 0.0031841491517455 - 2022-03-31 09:00:00: 0.0031782969660116 - 2022-03-31 10:00:00: 0.0031724547000693 - 2022-03-31 11:00:00: 0.0031666223404056 - 2022-03-31 12:00:00: 0.0031607998735122 - 2022-03-31 13:00:00: 0.0031549872858856 - 2022-03-31 14:00:00: 0.0031491845640271 - 2022-03-31 15:00:00: 0.003143391694443 - 2022-03-31 16:00:00: 0.0031376086636445 - 2022-03-31 17:00:00: 0.0031318354581478 - 2022-03-31 18:00:00: 0.0031260720644742 - 2022-03-31 19:00:00: 0.0031203184691503 - 2022-03-31 20:00:00: 0.0031145746587077 - 2022-03-31 21:00:00: 0.0031088406196835 - flow_descr: - ref: 0 - x: - - 1183 - - 1183.2 - - 1183.5 - - 1184 - y: - - 0 - - 2.76 - - 10.9 - - 30.84 - energy_value_input: 160 - Lensvik: - max_vol: 290 - lrl: 675 - hrl: 745 - vol_head: - ref: 0 - x: - - 0 - - 1.1 - - 3.2 - - 7.1 - - 13.7 - - 23.1 - - 36.2 - - 54 - - 75.8 - - 99.4 - - 124.7 - - 151.8 - - 181 - - 212.39999 - - 254.10001 - - 290 - - 303.70001 - y: - - 675 - - 677 - - 680 - - 684 - - 689 - - 694 - - 699 - - 704 - - 709 - - 714 - - 719 - - 724 - - 729 - - 734 - - 740 - - 745 - - 746.66252 - start_head: 692.92805175781 - inflow: - 2022-03-27 22:00:00: 2.8303157819673 - 2022-03-27 23:00:00: 2.0011418659559 - 2022-03-28 00:00:00: 2.0180932945949 - 2022-03-28 01:00:00: 2.2974242635979 - 2022-03-28 02:00:00: 2.3292992154048 - 2022-03-28 03:00:00: 2.3635828099347 - 2022-03-28 04:00:00: 2.3954282727764 - 2022-03-28 05:00:00: 2.4294003953434 - 2022-03-28 06:00:00: 2.4676453901699 - 2022-03-28 07:00:00: 2.3483478691244 - 2022-03-28 08:00:00: 2.3572762800086 - 2022-03-28 09:00:00: 2.3552989838885 - 2022-03-28 10:00:00: 2.3461571161891 - 2022-03-28 11:00:00: 2.3331792297897 - 2022-03-28 12:00:00: 2.3190645310391 - 2022-03-28 13:00:00: 2.2694091202035 - 2022-03-28 14:00:00: 2.2550934634096 - 2022-03-28 15:00:00: 2.2408253639832 - 2022-03-28 16:00:00: 2.2266049874409 - 2022-03-28 17:00:00: 2.2130189534466 - 2022-03-28 18:00:00: 2.1995538773962 - 2022-03-28 19:00:00: 2.1770926365144 - 2022-03-28 20:00:00: 2.1639043302868 - 2022-03-28 21:00:00: 2.150758692324 - 2022-03-28 22:00:00: 2.1376558939707 - 2022-03-28 23:00:00: 2.1245961015588 - 2022-03-29 00:00:00: 2.1115543405901 - 2022-03-29 01:00:00: 2.0996293166029 - 2022-03-29 02:00:00: 2.0865690084359 - 2022-03-29 03:00:00: 2.0735513510393 - 2022-03-29 04:00:00: 2.0605765085201 - 2022-03-29 05:00:00: 2.0471497231422 - 2022-03-29 06:00:00: 2.0336196928122 - 2022-03-29 07:00:00: 2.0026217237684 - 2022-03-29 08:00:00: 1.9896590746963 - 2022-03-29 09:00:00: 1.976740266466 - 2022-03-29 10:00:00: 1.963994079099 - 2022-03-29 11:00:00: 1.9513109072392 - 2022-03-29 12:00:00: 1.9386727779573 - 2022-03-29 13:00:00: 1.9380729130968 - 2022-03-29 14:00:00: 1.9251754347646 - 2022-03-29 15:00:00: 1.9123242652515 - 2022-03-29 16:00:00: 1.8995195046353 - 2022-03-29 17:00:00: 1.8867612487123 - 2022-03-29 18:00:00: 1.8740495890498 - 2022-03-29 19:00:00: 1.8590934980079 - 2022-03-29 20:00:00: 1.8463333249644 - 2022-03-29 21:00:00: 1.8336222581012 - 2022-03-29 22:00:00: 1.8209603466214 - 2022-03-29 23:00:00: 1.8083476359746 - 2022-03-30 00:00:00: 1.795784167906 - 2022-03-30 01:00:00: 1.7848604980102 - 2022-03-30 02:00:00: 1.7726225011132 - 2022-03-30 03:00:00: 1.7604340122965 - 2022-03-30 04:00:00: 1.7482950423824 - 2022-03-30 05:00:00: 1.7362055989546 - 2022-03-30 06:00:00: 1.7241656864035 - 2022-03-30 07:00:00: 1.7029084777985 - 2022-03-30 08:00:00: 1.6907116983859 - 2022-03-30 09:00:00: 1.6785653107251 - 2022-03-30 10:00:00: 1.6664693092952 - 2022-03-30 11:00:00: 1.6544236855172 - 2022-03-30 12:00:00: 1.6424284277982 - 2022-03-30 13:00:00: 1.6304835215753 - 2022-03-30 14:00:00: 1.6186814400556 - 2022-03-30 15:00:00: 1.6069646778196 - 2022-03-30 16:00:00: 1.595295956896 - 2022-03-30 17:00:00: 1.5836752788168 - 2022-03-30 18:00:00: 1.5721026420994 - 2022-03-30 19:00:00: 1.5598702868206 - 2022-03-30 20:00:00: 1.5482771928879 - 2022-03-30 21:00:00: 1.5367342321787 - 2022-03-30 22:00:00: 1.5252413653161 - 2022-03-30 23:00:00: 1.5137985503716 - 2022-03-31 00:00:00: 1.5024057429058 - 2022-03-31 01:00:00: 1.4911110638303 - 2022-03-31 02:00:00: 1.4798184809679 - 2022-03-31 03:00:00: 1.4685757565296 - 2022-03-31 04:00:00: 1.457382836416 - 2022-03-31 05:00:00: 1.4462396642097 - 2022-03-31 06:00:00: 1.4351461812139 - 2022-03-31 07:00:00: 1.4241441497153 - 2022-03-31 08:00:00: 1.4133252767512 - 2022-03-31 09:00:00: 1.4025527392862 - 2022-03-31 10:00:00: 1.3918265095683 - 2022-03-31 11:00:00: 1.3811465573595 - 2022-03-31 12:00:00: 1.3705128499733 - 2022-03-31 13:00:00: 1.3606412063921 - 2022-03-31 14:00:00: 1.3501051600297 - 2022-03-31 15:00:00: 1.3396152305893 - 2022-03-31 16:00:00: 1.3291713758727 - 2022-03-31 17:00:00: 1.3187735514201 - 2022-03-31 18:00:00: 1.3126676064103 - 2022-03-31 19:00:00: 1.3063411444605 - 2022-03-31 20:00:00: 1.3052425535092 - 2022-03-31 21:00:00: 1.3045053828686 - flow_descr: - ref: 0 - x: - - 745 - - 745.2275 - - 745.56874 - - 746.13749 - y: - - 0 - - 24.469 - - 101.116 - - 297.554 - energy_value_input: 160 - Strand: - max_vol: 11 - lrl: 732.5 - hrl: 753 - vol_head: - ref: 0 - x: - - 0 - - 0.12 - - 0.4 - - 0.73 - - 1.1 - - 1.51 - - 1.95 - - 2.91 - - 3.42 - - 3.96 - - 4.50535 - - 5.07 - - 5.65 - - 6.55 - - 7.18 - - 8.13 - - 9.55 - - 11 - - 13.5 - y: - - 732.5 - - 733 - - 734 - - 735 - - 736 - - 737 - - 738 - - 740 - - 741 - - 742 - - 743 - - 744 - - 745 - - 746.5 - - 747.5 - - 749 - - 751 - - 753 - - 756 - start_head: 734.91708984375 - inflow: - 2022-03-27 22:00:00: 0.25423949826501 - 2022-03-27 23:00:00: 0.17975708124133 - 2022-03-28 00:00:00: 0.18127978154902 - 2022-03-28 01:00:00: 0.20637131580879 - 2022-03-28 02:00:00: 0.20923455524173 - 2022-03-28 03:00:00: 0.21231415643943 - 2022-03-28 04:00:00: 0.21517474695957 - 2022-03-28 05:00:00: 0.21822636948574 - 2022-03-28 06:00:00: 0.22166181239914 - 2022-03-28 07:00:00: 0.21094564352211 - 2022-03-28 08:00:00: 0.21174765816584 - 2022-03-28 09:00:00: 0.2115700430825 - 2022-03-28 10:00:00: 0.21074885419894 - 2022-03-28 11:00:00: 0.20958308628437 - 2022-03-28 12:00:00: 0.20831520163653 - 2022-03-28 13:00:00: 0.20385479237145 - 2022-03-28 14:00:00: 0.20256885621414 - 2022-03-28 15:00:00: 0.20128719200464 - 2022-03-28 16:00:00: 0.20000981461081 - 2022-03-28 17:00:00: 0.19878941846699 - 2022-03-28 18:00:00: 0.19757988764327 - 2022-03-28 19:00:00: 0.19556225602471 - 2022-03-28 20:00:00: 0.19437758667452 - 2022-03-28 21:00:00: 0.19319675009743 - 2022-03-28 22:00:00: 0.19201976168489 - 2022-03-28 23:00:00: 0.19084663637803 - 2022-03-29 00:00:00: 0.18967513078622 - 2022-03-29 01:00:00: 0.18860393861232 - 2022-03-29 02:00:00: 0.18743076697658 - 2022-03-29 03:00:00: 0.18626142654249 - 2022-03-29 04:00:00: 0.18509593205132 - 2022-03-29 05:00:00: 0.18388984077362 - 2022-03-29 06:00:00: 0.18267447528524 - 2022-03-29 07:00:00: 0.17989001280683 - 2022-03-29 08:00:00: 0.17872561361955 - 2022-03-29 09:00:00: 0.17756515253475 - 2022-03-29 10:00:00: 0.17642019750832 - 2022-03-29 11:00:00: 0.17528090299193 - 2022-03-29 12:00:00: 0.17414565452668 - 2022-03-29 13:00:00: 0.17409177031273 - 2022-03-29 14:00:00: 0.17293322523413 - 2022-03-29 15:00:00: 0.17177883994965 - 2022-03-29 16:00:00: 0.170628623449 - 2022-03-29 17:00:00: 0.16948258433731 - 2022-03-29 18:00:00: 0.16834073083979 - 2022-03-29 19:00:00: 0.1669972662318 - 2022-03-29 20:00:00: 0.16585105491043 - 2022-03-29 21:00:00: 0.16470925466245 - 2022-03-29 22:00:00: 0.16357186990764 - 2022-03-29 23:00:00: 0.16243890472862 - 2022-03-30 00:00:00: 0.16131036287524 - 2022-03-30 01:00:00: 0.16032911959093 - 2022-03-30 02:00:00: 0.15922981391957 - 2022-03-30 03:00:00: 0.15813495542318 - 2022-03-30 04:00:00: 0.15704454507389 - 2022-03-30 05:00:00: 0.15595858355293 - 2022-03-30 06:00:00: 0.15487707125467 - 2022-03-30 07:00:00: 0.15296759455081 - 2022-03-30 08:00:00: 0.15187199133294 - 2022-03-30 09:00:00: 0.15078091466782 - 2022-03-30 10:00:00: 0.14969436405953 - 2022-03-30 11:00:00: 0.14861233873744 - 2022-03-30 12:00:00: 0.14753483766018 - 2022-03-30 13:00:00: 0.14646185951962 - 2022-03-30 14:00:00: 0.14540171093014 - 2022-03-30 15:00:00: 0.14434922633773 - 2022-03-30 16:00:00: 0.14330105716456 - 2022-03-30 17:00:00: 0.14225720354823 - 2022-03-30 18:00:00: 0.14121766535557 - 2022-03-30 19:00:00: 0.14011886645529 - 2022-03-30 20:00:00: 0.13907749064712 - 2022-03-30 21:00:00: 0.13804061816884 - 2022-03-30 22:00:00: 0.13700824548329 - 2022-03-30 23:00:00: 0.13598036882417 - 2022-03-31 00:00:00: 0.1349569841996 - 2022-03-31 01:00:00: 0.133942414179 - 2022-03-31 02:00:00: 0.13292803245546 - 2022-03-31 03:00:00: 0.13191812937733 - 2022-03-31 04:00:00: 0.13091270008497 - 2022-03-31 05:00:00: 0.12991173951059 - 2022-03-31 06:00:00: 0.1289152423816 - 2022-03-31 07:00:00: 0.12792696008959 - 2022-03-31 08:00:00: 0.12695513042602 - 2022-03-31 09:00:00: 0.12598746295315 - 2022-03-31 10:00:00: 0.12502395517811 - 2022-03-31 11:00:00: 0.1240646043847 - 2022-03-31 12:00:00: 0.12310940763676 - 2022-03-31 13:00:00: 0.12222266498877 - 2022-03-31 14:00:00: 0.12127624086255 - 2022-03-31 15:00:00: 0.12033395929286 - 2022-03-31 16:00:00: 0.11939581648914 - 2022-03-31 17:00:00: 0.1184618084577 - 2022-03-31 18:00:00: 0.11791332817659 - 2022-03-31 19:00:00: 0.11734503946402 - 2022-03-31 20:00:00: 0.11724635605418 - 2022-03-31 21:00:00: 0.11718013803887 - flow_descr: - ref: 0 - x: - - 753 - - 753.132 - - 753.33 - - 753.66 - y: - - 0 - - 10.386 - - 41.167 - - 120 - energy_value_input: 160 - Strand_tunnel: - max_vol: 0.5 - lrl: 675 - hrl: 745 - vol_head: - ref: 0 - x: - - 0 - - 0.5 - y: - - 675 - - 745 - start_head: 692.92805175781 - inflow: - 2022-03-27 22:00:00: 0 - energy_value_input: 160 - Livincovs: - max_vol: 119 - lrl: 975 - hrl: 1020 - vol_head: - ref: 0 - x: - - 0 - - 1.5 - - 3.5 - - 6.3 - - 11.3 - - 16.9 - - 22.8 - - 29.3 - - 36.3 - - 44 - - 52.4 - - 64.5 - - 78.2 - - 93.5 - - 110.3 - - 119 - - 132 - y: - - 975 - - 977 - - 979 - - 981 - - 984 - - 987 - - 990 - - 993 - - 996 - - 999 - - 1002 - - 1006 - - 1010 - - 1014 - - 1018 - - 1020 - - 1022.90002 - start_head: 977.72619628906 - inflow: - 2022-03-27 22:00:00: 0.072215267228244 - 2022-03-27 23:00:00: 0.073728870391728 - 2022-03-28 00:00:00: 0.068554826594274 - 2022-03-28 01:00:00: 0.074491396974179 - 2022-03-28 02:00:00: 0.094405031183728 - 2022-03-28 03:00:00: 0.12468767496396 - 2022-03-28 04:00:00: 0.13084141533642 - 2022-03-28 05:00:00: 0.10426654921958 - 2022-03-28 06:00:00: 0.075151142642147 - 2022-03-28 07:00:00: 0.06893205663927 - 2022-03-28 08:00:00: 0.0688067907037 - 2022-03-28 09:00:00: 0.068681731502695 - 2022-03-28 10:00:00: 0.068556878777695 - 2022-03-28 11:00:00: 0.068432232270114 - 2022-03-28 12:00:00: 0.068307791721347 - 2022-03-28 13:00:00: 0.068183556872766 - 2022-03-28 14:00:00: 0.068059527465727 - 2022-03-28 15:00:00: 0.067935703241569 - 2022-03-28 16:00:00: 0.067812083941617 - 2022-03-28 17:00:00: 0.067688669307182 - 2022-03-28 18:00:00: 0.067565459079566 - 2022-03-28 19:00:00: 0.067442453000059 - 2022-03-28 20:00:00: 0.067319650809948 - 2022-03-28 21:00:00: 0.067197052250509 - 2022-03-28 22:00:00: 0.067074657063019 - 2022-03-28 23:00:00: 0.066952464988751 - 2022-03-29 00:00:00: 0.066830475768976 - 2022-03-29 01:00:00: 0.06670868914497 - 2022-03-29 02:00:00: 0.066587104858009 - 2022-03-29 03:00:00: 0.066465722649376 - 2022-03-29 04:00:00: 0.066344542260358 - 2022-03-29 05:00:00: 0.066223563432253 - 2022-03-29 06:00:00: 0.066102785906367 - 2022-03-29 07:00:00: 0.065982209424018 - 2022-03-29 08:00:00: 0.065861833726539 - 2022-03-29 09:00:00: 0.065741658555275 - 2022-03-29 10:00:00: 0.065621683651589 - 2022-03-29 11:00:00: 0.065501908756864 - 2022-03-29 12:00:00: 0.0653823336125 - 2022-03-29 13:00:00: 0.065262957959919 - 2022-03-29 14:00:00: 0.065143781540568 - 2022-03-29 15:00:00: 0.065024804095917 - 2022-03-29 16:00:00: 0.064906025367463 - 2022-03-29 17:00:00: 0.06478744509673 - 2022-03-29 18:00:00: 0.064669063025274 - 2022-03-29 19:00:00: 0.064550878894679 - 2022-03-29 20:00:00: 0.064432892446563 - 2022-03-29 21:00:00: 0.06431510342258 - 2022-03-29 22:00:00: 0.064197511564416 - 2022-03-29 23:00:00: 0.064080116613798 - 2022-03-30 00:00:00: 0.063962918312489 - 2022-03-30 01:00:00: 0.063845916402295 - 2022-03-30 02:00:00: 0.063729110625062 - 2022-03-30 03:00:00: 0.06361250072268 - 2022-03-30 04:00:00: 0.063496086437084 - 2022-03-30 05:00:00: 0.063379867510256 - 2022-03-30 06:00:00: 0.063263843684226 - 2022-03-30 07:00:00: 0.063148014701071 - 2022-03-30 08:00:00: 0.063032380302922 - 2022-03-30 09:00:00: 0.062916940231961 - 2022-03-30 10:00:00: 0.062801694230423 - 2022-03-30 11:00:00: 0.062686642040601 - 2022-03-30 12:00:00: 0.062571783404842 - 2022-03-30 13:00:00: 0.062457118065552 - 2022-03-30 14:00:00: 0.062342645765196 - 2022-03-30 15:00:00: 0.062228366246302 - 2022-03-30 16:00:00: 0.062114279251459 - 2022-03-30 17:00:00: 0.06200038452332 - 2022-03-30 18:00:00: 0.061886681804602 - 2022-03-30 19:00:00: 0.061773170838091 - 2022-03-30 20:00:00: 0.061659851366639 - 2022-03-30 21:00:00: 0.061546723133169 - 2022-03-30 22:00:00: 0.061433785880674 - 2022-03-30 23:00:00: 0.061321039352218 - 2022-03-31 00:00:00: 0.061208483290941 - 2022-03-31 01:00:00: 0.061096117440055 - 2022-03-31 02:00:00: 0.06098394154285 - 2022-03-31 03:00:00: 0.060871955342693 - 2022-03-31 04:00:00: 0.06076015858303 - 2022-03-31 05:00:00: 0.060648551007387 - 2022-03-31 06:00:00: 0.06053713235937 - 2022-03-31 07:00:00: 0.060425902382671 - 2022-03-31 08:00:00: 0.060314860821063 - 2022-03-31 09:00:00: 0.060204007418406 - 2022-03-31 10:00:00: 0.060093341918645 - 2022-03-31 11:00:00: 0.059982864065815 - 2022-03-31 12:00:00: 0.059872573604039 - 2022-03-31 13:00:00: 0.05976247027753 - 2022-03-31 14:00:00: 0.059652553830594 - 2022-03-31 15:00:00: 0.059542824007627 - 2022-03-31 16:00:00: 0.059433280553124 - 2022-03-31 17:00:00: 0.05932392321167 - 2022-03-31 18:00:00: 0.059214751727951 - 2022-03-31 19:00:00: 0.059105765846748 - 2022-03-31 20:00:00: 0.058996965312943 - 2022-03-31 21:00:00: 0.058888349871516 - flow_descr: - ref: 0 - x: - - 1020 - - 1020.19 - - 1020.47501 - - 1020.95001 - y: - - 0 - - 6.668 - - 27.344 - - 82 - energy_value_input: 160 - production_group: - T2Landet: - max_p_limit: - 2022-03-27 22:00:00: 48.6 - # RKOM start - reserve_group: - rkom_up: - rr_up_obligation: - 2022-03-27 22:00:00: 0 - # RKOM end -connections: - - connection_type: connection_bypass - from: Hagen - #from_type: reservoir - to: b_Hagen_Strand - #to_type: gate - - connection_type: connection_bypass - from: Sirefelt - from_type: reservoir - to: b_Sirefelt_Knute_Rullsvatn - to_type: gate - - connection_type: connection_bypass - from: Danielsen - from_type: reservoir - to: b_Danielsen_Lundvann - to_type: gate - - connection_type: connection_bypass - from: Dalbysvatn - from_type: reservoir - to: b_Dalbysvatn_Knute_Rullsvatn - to_type: gate - - connection_type: connection_bypass - from: Nielsen - from_type: reservoir - to: b_Nielsen_Blakstadana - to_type: gate - - connection_type: connection_bypass - from: Lensvik - from_type: reservoir - to: b_Lensvik_Dalbysvatn - to_type: gate - - connection_type: connection_bypass - from: Livincovs - from_type: reservoir - to: b_Livincovs_Dalbysvatn - to_type: gate - - connection_type: connection_spill - from: Blakstad - from_type: creek_intake - to: f_Blakstadana_Knute_Rullsvatn - to_type: gate - - connection_type: connection_spill - from: Hagen - from_type: reservoir - to: f_Hagen_Strand - to_type: gate - - connection_type: connection_spill - from: Strand - from_type: reservoir - to: f_Finnvasstol_Dalbysvatn - to_type: gate - - connection_type: connection_spill - from: Hovden - from_type: reservoir - to: f_Hovden_Hagen - to_type: gate - - connection_type: connection_spill - from: Fjerdingby_intake - from_type: creek_intake - to: f_Fjerdingby_Dalbysvatn - to_type: gate - - connection_type: connection_spill - from: Frosta - from_type: reservoir - to: f_Frosta - to_type: gate - - connection_type: connection_spill - from: Varhaug - from_type: reservoir - to: f_Varhaug - to_type: gate - - connection_type: connection_spill - from: Tangvall - from_type: reservoir - to: f_Tangvall - to_type: gate - - connection_type: connection_spill - from: Sirefelt - from_type: reservoir - to: f_Sirefelt_Knute_Rullsvatn - to_type: gate - - connection_type: connection_spill - from: Lundvann - from_type: reservoir - to: f_Lundvann_Lensvik - to_type: gate - - connection_type: connection_spill - from: Danielsen - from_type: reservoir - to: f_Nupstj - to_type: gate - - connection_type: connection_spill - from: Golebiowski_intake - from_type: creek_intake - to: f_Golebiowski_Dalbysvatn - to_type: gate - - connection_type: connection_spill - from: Lont_intake - from_type: creek_intake - to: f_Lont_Dalbysvatn - to_type: gate - - connection_type: connection_spill - from: Dalbysvatn - from_type: reservoir - to: f_Dalbysvatn_Knute_Rullsvatn - to_type: gate - - connection_type: connection_spill - from: Nielsen - from_type: reservoir - to: f_Nielsen - to_type: gate - - connection_type: connection_spill - from: Narvhus - from_type: creek_intake - to: f_Narvhus_Rullsvatn - to_type: gate - - connection_type: connection_spill - from: Rullsvatn - from_type: reservoir - to: f_Rullsvatn_Rullslaagen - to_type: gate - - connection_type: connection_spill - from: Ranemsletta_1183 - from_type: reservoir - to: f_Ranemsletta_1183_Livincovs - to_type: gate - - connection_type: connection_spill - from: Lensvik - from_type: reservoir - to: f_Lensvik - to_type: gate - - connection_type: connection_spill - from: Livincovs - from_type: reservoir - to: f_Livincovs - to_type: gate - - connection_type: connection_standard - from: Strand - from_type: reservoir - to: w_Finnvasstol_Strand_tunnel - to_type: gate - - connection_type: connection_standard - from: Hovden - from_type: reservoir - to: w_Hovden_Livincovs - to_type: gate - - connection_type: connection_standard - from: Frosta - from_type: reservoir - to: w_Frosta - to_type: gate - - connection_type: connection_standard - from: Varhaug - from_type: reservoir - to: w_Varhaug - to_type: gate - - connection_type: connection_standard - from: Tangvall - from_type: reservoir - to: w_Tangvall - to_type: gate - - connection_type: connection_standard - from: Rullsvatn - from_type: reservoir - to: w_Rullsvatn_Rullslaagen - to_type: gate - - connection_type: generator_of_plant - from: Holen - from_type: plant - to: Holen_G1 - to_type: generator - - connection_type: generator_of_plant - from: Lund - from_type: plant - to: Lund_G1 - to_type: generator - - connection_type: generator_of_plant - from: Lien_krv - from_type: plant - to: Lien_krv_G1 - to_type: generator - - connection_type: generator_of_plant - from: Landet - from_type: plant - to: Landet_G1 - to_type: generator - - connection_type: generator_of_plant - from: Dalby - from_type: plant - to: Dalby_G1 - to_type: generator - - connection_type: generator_of_plant - from: Dalby - from_type: plant - to: Dalby_G2 - to_type: generator - - connection_type: generator_of_plant - from: Rull1 - from_type: plant - to: Rull1_G1 - to_type: generator - - connection_type: generator_of_plant - from: Rull1 - from_type: plant - to: Rull1_G2 - to_type: generator - - connection_type: generator_of_plant - from: Rull2 - from_type: plant - to: Rull2_G1 - to_type: generator - - connection_type: generator_of_plant - from: Rull2 - from_type: plant - to: Rull2_G2 - to_type: generator - - connection_type: generator_of_plant - from: Scott - from_type: plant - to: Scott_G1 - to_type: generator - - connection_type: generator_of_plant - from: Strand_krv - from_type: plant - to: Strand_krv_G1 - to_type: generator - - connection_type: connection_standard - from: Holen - from_type: plant - order: 0 - to: Blakstad - to_type: junction - - connection_type: connection_standard - from: Blakstad - from_type: creek_intake - order: 1 - to: Blakstad - to_type: junction - - connection_type: connection_standard - from: Golebiowski_intake - from_type: junction - order: 0 - to: Fjerdingby_intake - to_type: junction - - connection_type: connection_standard - from: Fjerdingby_intake - from_type: creek_intake - order: 1 - to: Fjerdingby_intake - to_type: junction - - connection_type: connection_standard - from: Blakstad - from_type: junction - order: 0 - to: Vigrestad - to_type: junction - - connection_type: connection_standard - from: Vigrestad - from_type: creek_intake - order: 1 - to: Vigrestad - to_type: junction - - connection_type: connection_standard - from: Sirefelt - from_type: reservoir - order: 0 - to: Holensfoss_junc - to_type: junction - - connection_type: connection_standard - from: Vigrestad - from_type: junction - order: 1 - to: Holensfoss_junc - to_type: junction - - connection_type: connection_standard - from: w_k_Strand - from_type: junction - order: 0 - to: Sandvika - to_type: junction - - connection_type: connection_standard - from: Sandvika - from_type: creek_intake - order: 1 - to: Sandvika - to_type: junction - - connection_type: connection_standard - from: Lont_intake - from_type: junction - order: 0 - to: Landet_intake - to_type: junction - - connection_type: connection_standard - from: Landet - from_type: plant - order: 1 - to: Landet_intake - to_type: junction - - connection_type: connection_standard - from: Strand_tunnel - from_type: reservoir - order: 0 - to: Golebiowski_intake - to_type: junction - - connection_type: connection_standard - from: Golebiowski_intake - from_type: creek_intake - order: 1 - to: Golebiowski_intake - to_type: junction - - connection_type: connection_standard - from: Lensvik - from_type: reservoir - order: 0 - to: Lont_intake - to_type: junction - - connection_type: connection_standard - from: Lont_intake - from_type: creek_intake - order: 1 - to: Lont_intake - to_type: junction - - connection_type: connection_standard - from: Dalbysvatn - from_type: reservoir - order: 0 - to: Narvhus - to_type: junction - - connection_type: connection_standard - from: Narvhus - from_type: creek_intake - order: 1 - to: Narvhus - to_type: junction - - connection_type: connection_standard - from: Holensfoss_junc - from_type: junction - order: 0 - to: Gustad - to_type: junction - - connection_type: connection_standard - from: Gustad - from_type: creek_intake - order: 1 - to: Gustad - to_type: junction - - connection_type: connection_standard - from: Landet_intake - from_type: junction - order: 0 - to: w_k_Strand - to_type: junction - - connection_type: connection_standard - from: Fjerdingby_intake - from_type: junction - order: 1 - to: w_k_Strand - to_type: junction - - connection_type: connection_standard - from: Nielsen - from_type: reservoir - to: Holen - to_type: plant - - connection_type: connection_standard - from: Danielsen - from_type: reservoir - to: Lund - to_type: plant - - connection_type: connection_standard - from: Ranemsletta_1183 - from_type: reservoir - to: Lien_krv - to_type: plant - - connection_type: connection_standard - from: Livincovs - from_type: reservoir - to: Landet - to_type: plant - - connection_type: connection_standard - from: Sandvika - from_type: junction - to: Dalby - to_type: plant - - connection_type: connection_standard - from: Narvhus - from_type: junction - to: Rull1 - to_type: plant - - connection_type: connection_standard - from: Gustad - from_type: junction - to: Rull2 - to_type: plant - - connection_type: connection_standard - from: Lundvann - from_type: reservoir - to: Scott - to_type: plant - - connection_type: connection_standard - from: Hagen - from_type: reservoir - to: Strand_krv - to_type: plant - - connection_type: connection_standard - from: f_Hovden_Hagen - from_type: gate - to: Hagen - to_type: reservoir - - connection_type: connection_standard - from: b_Nielsen_Blakstadana - from_type: gate - to: Sirefelt - to_type: reservoir - - connection_type: connection_standard - from: f_Nielsen - from_type: gate - to: Sirefelt - to_type: reservoir - - connection_type: connection_standard - from: Lund - from_type: plant - to: Lundvann - to_type: reservoir - - connection_type: connection_standard - from: b_Danielsen_Lundvann - from_type: gate - to: Lundvann - to_type: reservoir - - connection_type: connection_standard - from: Dalby - from_type: plant - to: Dalbysvatn - to_type: reservoir - - connection_type: connection_standard - from: f_Livincovs - from_type: gate - to: Dalbysvatn - to_type: reservoir - - connection_type: connection_standard - from: f_Lensvik - from_type: gate - to: Dalbysvatn - to_type: reservoir - - connection_type: connection_standard - from: b_Lensvik_Dalbysvatn - from_type: gate - to: Dalbysvatn - to_type: reservoir - - connection_type: connection_standard - from: b_Livincovs_Dalbysvatn - from_type: gate - to: Dalbysvatn - to_type: reservoir - - connection_type: connection_standard - from: f_Finnvasstol_Dalbysvatn - from_type: gate - to: Dalbysvatn - to_type: reservoir - - connection_type: connection_standard - from: f_Lont_Dalbysvatn - from_type: gate - to: Dalbysvatn - to_type: reservoir - - connection_type: connection_standard - from: f_Golebiowski_Dalbysvatn - from_type: gate - to: Dalbysvatn - to_type: reservoir - - connection_type: connection_standard - from: f_Fjerdingby_Dalbysvatn - from_type: gate - to: Dalbysvatn - to_type: reservoir - - connection_type: connection_standard - from: f_Frosta - from_type: gate - to: Nielsen - to_type: reservoir - - connection_type: connection_standard - from: w_Varhaug - from_type: gate - to: Nielsen - to_type: reservoir - - connection_type: connection_standard - from: w_Frosta - from_type: gate - to: Nielsen - to_type: reservoir - - connection_type: connection_standard - from: f_Varhaug - from_type: gate - to: Nielsen - to_type: reservoir - - connection_type: connection_standard - from: Rull1 - from_type: plant - to: Rullsvatn - to_type: reservoir - - connection_type: connection_standard - from: Rull2 - from_type: plant - to: Rullsvatn - to_type: reservoir - - connection_type: connection_standard - from: f_Dalbysvatn_Knute_Rullsvatn - from_type: gate - to: Rullsvatn - to_type: reservoir - - connection_type: connection_standard - from: b_Dalbysvatn_Knute_Rullsvatn - from_type: gate - to: Rullsvatn - to_type: reservoir - - connection_type: connection_standard - from: f_Sirefelt_Knute_Rullsvatn - from_type: gate - to: Rullsvatn - to_type: reservoir - - connection_type: connection_standard - from: b_Sirefelt_Knute_Rullsvatn - from_type: gate - to: Rullsvatn - to_type: reservoir - - connection_type: connection_standard - from: f_Blakstadana_Knute_Rullsvatn - from_type: gate - to: Rullsvatn - to_type: reservoir - - connection_type: connection_standard - from: f_Narvhus_Rullsvatn - from_type: gate - to: Rullsvatn - to_type: reservoir - - connection_type: connection_standard - from: w_Tangvall - from_type: gate - to: Ranemsletta_1183 - to_type: reservoir - - connection_type: connection_standard - from: f_Tangvall - from_type: gate - to: Ranemsletta_1183 - to_type: reservoir - - connection_type: connection_standard - from: f_Nupstj - from_type: gate - to: Lensvik - to_type: reservoir - - connection_type: connection_standard - from: f_Lundvann_Lensvik - from_type: gate - to: Lensvik - to_type: reservoir - - connection_type: connection_standard - from: Strand_krv - from_type: plant - to: Strand - to_type: reservoir - - connection_type: connection_standard - from: f_Hagen_Strand - from_type: gate - to: Strand - to_type: reservoir - - connection_type: connection_standard - from: b_Hagen_Strand - from_type: gate - to: Strand - to_type: reservoir - - connection_type: connection_standard - from: w_Finnvasstol_Strand_tunnel - from_type: gate - to: Strand_tunnel - to_type: reservoir - - connection_type: connection_standard - from: Scott - from_type: plant - to: Livincovs - to_type: reservoir - - connection_type: connection_standard - from: Lien_krv - from_type: plant - to: Livincovs - to_type: reservoir - - connection_type: connection_standard - from: w_Hovden_Livincovs - from_type: gate - to: Livincovs - to_type: reservoir - - connection_type: connection_standard - from: f_Ranemsletta_1183_Livincovs - from_type: gate - to: Livincovs - to_type: reservoir - # RKOM start - # Rull1 - - connection_type: connection_standard - from: rkom_up - from_type: reserve_group - to: Rull1_G1 - to_type: generator - - connection_type: connection_standard - from: rkom_up - from_type: reserve_group - to: Rull1_G2 - to_type: generator - # Rull2 - - connection_type: connection_standard - from: rkom_up - from_type: reserve_group - to: Rull2_G1 - to_type: generator - - connection_type: connection_standard - from: rkom_up - from_type: reserve_group - to: Rull2_G2 - to_type: generator - # Dalby - - connection_type: connection_standard - from: rkom_up - from_type: reserve_group - to: Dalby_G1 - to_type: generator - - connection_type: connection_standard - from: rkom_up - from_type: reserve_group - to: Dalby_G2 - to_type: generator - # Landet - - connection_type: connection_standard - from: rkom_up - from_type: reserve_group - to: Landet_G1 - to_type: generator - # Holen - - connection_type: connection_standard - from: rkom_up - from_type: reserve_group - to: Holen_G1 - to_type: generator - # Scott - - connection_type: connection_standard - from: rkom_up - from_type: reserve_group - to: Scott_G1 - to_type: generator -# RKOM end diff --git a/toolkit/modules/power_ops_template/files/shop_models.FileMetadata.yaml b/toolkit/modules/power_ops_template/files/shop_models.FileMetadata.yaml index 4d828255..4de187ed 100644 --- a/toolkit/modules/power_ops_template/files/shop_models.FileMetadata.yaml +++ b/toolkit/modules/power_ops_template/files/shop_models.FileMetadata.yaml @@ -1,5 +1,5 @@ -- externalId: "SHOP_model_fornebu" - name: "SHOP_model_fornebu.yaml" +- externalId: "SHOP_model_WATERCOURSE_NAME" + name: "SHOP_model_WATERCOURSE_NAME.yaml" source: "Customer" dataSetExternalId: "powerops:config" directory: "/toolkit/modules/power_ops/files/"