path_data="C:/Users/kadara/Documents/R_packageData/dft-results-validation/results_HU00_so2025_final_run5/inputs"# path where all the DFT raw (rescaling) reports are located (in separate folders per MN)
path_report="C:/Users/kadara/Documents/R_packageData/dft-results-validation/results_HU00_so2025_final_run5/reports"# path where to save the reports by MN
path_data="C:/Users/kadara/Documents/R_packageData/dft-results-validation/test1"# path where all the DFT raw (rescaling) reports are located
path_report="C:/Users/kadara/Documents/R_packageData/dft-results-validation/test1/report"# path where to save the reports by MN
climateYears.toProcess=c(2025:2060)# which climate years to include in the reports
targetYears.toProcess=c(2025)# which target years to include in the reports
sep_dataFolder_for_MNs=FALSE# TRUE: if the result files are located in a separate folder for every MN; FALSE: if the result files are located in a common folder
sep_dataFolder_for_MNs=FALSE# TRUE: if the DFT rescaling report files are located in a separate folder for every MN; FALSE: all files are in a common folder
Also make sure to create a new folder for the reports. It has to be
different than the root folder for the data.
├── [path_report (the root folder where you want to have the reports)]
When saving the reports the script will create a subfolder for each processed market node. Thus, the folder structure will be the following:
When saving the reports the script will create a subfolder for each
processed market node. Thus, the folder structure will be the following:
├── [path_report (the root folder where you want to have the reports)]
│ ├── AL00
...
...
@@ -115,7 +167,21 @@ When saving the reports the script will create a subfolder for each processed ma
│ ├── UK00
│ │ ├── report_wo2324_UK00_[YYYYMMDD].html
Please note that the script **will not create** an intermediate ENTSOE folder for the relevant market nodes.
Please note that the script **will not create** an intermediate ENTSOE
folder for the relevant market nodes even if the DFT rescaling files
were placed as described in *Case 1*.
### DFT Rescaling report files
There are some things to note regarding the DFT rescaling files:
- The name of the file:
- it needs to start with the prefix *rescaling_report*
- the included market nodes need to be listed between
*rescaling_report* and *Demand_Total* seperated by `_`
(underscore)
- The name of the sheets must be the same as the market node names in
the filename.
### Parameters
...
...
@@ -125,12 +191,15 @@ running the script:
-`path_thisScript` : this is the location (full path) of the scripts
-`path_data` : this is the root folder (full path) of the data (see
the folder structure above)
-`path_report` : this is the folder (full path) where the script will store the reports (it
needs to be a separate folder)
-`climateYears.toProcess` : these are the *climate years* that we want to include in the report.
-`targetYears.toProcess` : these are the *target years* that we want to include in the report.
-`sep_dataFolder_for_MNs` : logical, **TRUE** if the load files are located in a *separate folder* for every MN; **FALSE** if the load files are located in a *common folder*
-`path_report` : this is the folder (full path) where the script will
store the reports (it needs to be a separate folder)
-`climateYears.toProcess` : these are the *climate years* that we
want to include in the report.
-`targetYears.toProcess` : these are the *target years* that we want
to include in the report.
-`sep_dataFolder_for_MNs` : logical, **TRUE** if the load files are
located in a separate folder for every MN (*Case 1*); **FALSE** if
the load files are located in a common folder (*Case 2*)