Compare commits
74 Commits
TSDiff-S4
...
8a219d0d19
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8a219d0d19 | ||
| 11ae0e1949 | |||
| 615f9486bc | |||
| fecf1492fb | |||
| 56d56446fa | |||
| bc33b0368d | |||
| 465bcf7d8b | |||
| 96e4ed042c | |||
| db8a527949 | |||
| 70a57eacb6 | |||
| 934d4951ff | |||
| 1b2b3518e2 | |||
| 0bcaa2f63f | |||
|
|
2db604d2da | ||
| fa03debf86 | |||
| 907f62d9cd | |||
| 4c4914e227 | |||
| 8a2e1ce7d5 | |||
|
|
3fba166dc5 | ||
|
|
d9b6f34e97 | ||
| d7f4c1849b | |||
| 19ab597ae6 | |||
| 177fa1ad86 | |||
| 75b35bb2c9 | |||
| e0c42797e0 | |||
| 074e654b8a | |||
| 2597577d3d | |||
| 361414cd41 | |||
| c7bcd5be55 | |||
| f691ab384b | |||
| 12bff03d69 | |||
| ac08707369 | |||
| 3a40959a32 | |||
| e0fbf54347 | |||
| afa70fc3b3 | |||
| 2680973baf | |||
| 0817f60e72 | |||
| 2cdd2257a0 | |||
| 46c7c6f7e5 | |||
| 4e713ef564 | |||
|
|
98a7244995 | ||
| dc102926fa | |||
| 8fb2a7fc7b | |||
| 6b02c9aab8 | |||
| 0edcc91e65 | |||
| 937b6abc0b | |||
| ef094c659c | |||
| 65ec8fcd54 | |||
| e780b46af7 | |||
| dad64d00be | |||
| acaa8ff054 | |||
| ba3b3cf882 | |||
| 1a8e735cbc | |||
| 34335cd9fe | |||
| fe1e388ffb | |||
| 420c9dc6ac | |||
| ca120e5715 | |||
| be38536758 | |||
| f1b54df2c9 | |||
|
|
90751866a4 | ||
|
|
4ad3336b98 | ||
|
|
f8823f7efa | ||
|
|
2b22b6935e | ||
|
|
b3f05f386f | ||
|
|
174a82fab2 | ||
|
|
bd250a664b | ||
|
|
76a597af28 | ||
|
|
7bd0476085 | ||
|
|
d10f8a5ff6 | ||
|
|
77be7371df | ||
|
|
acaad2710a | ||
|
|
c6fa17fa40 | ||
|
|
e8e53ab185 | ||
|
|
32de50b87e |
@@ -2,6 +2,7 @@ FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
|
|||||||
|
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get install -y git
|
RUN apt-get install -y git
|
||||||
|
# RUN apt-get install texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-bibtex-extra
|
||||||
|
|
||||||
COPY requirements.txt /tmp/requirements.txt
|
COPY requirements.txt /tmp/requirements.txt
|
||||||
|
|
||||||
|
|||||||
BIN
Reports/February/MP2324_verslag2_Mylle_Victor.pdf
Normal file
BIN
Reports/February/ea-en.pdf
Normal file
BIN
Reports/February/ea-nl.pdf
Normal file
BIN
Reports/February/eb-en.pdf
Normal file
185
Reports/February/ugent-doc.cls
Normal file
@@ -0,0 +1,185 @@
|
|||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
%
|
||||||
|
% Ghent University document class
|
||||||
|
% Created by DF Benoit, December 15, 2022
|
||||||
|
%
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
\NeedsTeXFormat{LaTeX2e}
|
||||||
|
\ProvidesClass{ugent-doc}
|
||||||
|
|
||||||
|
% Required packages
|
||||||
|
\RequirePackage{kvoptions}
|
||||||
|
\RequirePackage{geometry}
|
||||||
|
\RequirePackage{calc}
|
||||||
|
\RequirePackage{graphicx}
|
||||||
|
\RequirePackage{xcolor}
|
||||||
|
|
||||||
|
% ugent-doc specific options (kvoptions)
|
||||||
|
\SetupKeyvalOptions{family=ugd,prefix=ugd@} %UGentArticle
|
||||||
|
|
||||||
|
% Declare the class specific options
|
||||||
|
\DeclareStringOption[eb]{faculty}[eb]
|
||||||
|
\DeclareStringOption[en]{language}[en]
|
||||||
|
\DeclareStringOption[article]{doctype}[article]
|
||||||
|
\DeclareBoolOption[true]{sftitles} % Default: true
|
||||||
|
\ProcessKeyvalOptions*
|
||||||
|
|
||||||
|
% Pass options not specified above to the parent class
|
||||||
|
% \@unusedoptionlist is a macro in kvoptions
|
||||||
|
\LoadClass[\@unusedoptionlist]{\ugd@doctype}
|
||||||
|
|
||||||
|
% All sections, subsections and subsubsections in sans serif
|
||||||
|
\ifugd@sftitles
|
||||||
|
\RequirePackage[sf]{titlesec}
|
||||||
|
\fi
|
||||||
|
|
||||||
|
% Define UGent colors
|
||||||
|
%= = = = = = = = = = =
|
||||||
|
% Base colors
|
||||||
|
% UGent blue
|
||||||
|
\definecolor{ugentblue}{RGB}{30,100,200}
|
||||||
|
% UGent yellow
|
||||||
|
\definecolor{ugentyellow}{RGB}{255,210,0}
|
||||||
|
% UGent white
|
||||||
|
\definecolor{ugentwhite}{RGB}{255,255,255}
|
||||||
|
% UGent black
|
||||||
|
\definecolor{ugentblack}{RGB}{0,0,0}
|
||||||
|
|
||||||
|
% Faculty specific colors
|
||||||
|
% Faculty of Literature & Philosophy
|
||||||
|
\definecolor{ugent-lw}{RGB}{241,164,43}
|
||||||
|
% Faculty of Law
|
||||||
|
\definecolor{ugent-re}{RGB}{220,78,40}
|
||||||
|
% Faculty of Science
|
||||||
|
\definecolor{ugent-we}{RGB}{45,140,168}
|
||||||
|
% Faculty of Medicine and Health Sciences
|
||||||
|
\definecolor{ugent-ge}{RGB}{232,94,113}
|
||||||
|
% Faculty of Engineering and Architecture
|
||||||
|
\definecolor{ugent-ea}{RGB}{139,190,232}
|
||||||
|
% Faculty of Economics and Business Administration
|
||||||
|
\definecolor{ugent-eb}{RGB}{174,176,80}
|
||||||
|
% Faculty of Veterinary Medicine
|
||||||
|
\definecolor{ugent-di}{RGB}{130,84,145}
|
||||||
|
% Faculty of Psychology and Educational Sciences
|
||||||
|
\definecolor{ugent-pp}{RGB}{251,126,58}
|
||||||
|
% Faculty of Bioscience Engineering
|
||||||
|
\definecolor{ugent-bw}{RGB}{39,171,173}
|
||||||
|
% Faculty of Pharmaceutical Sciences
|
||||||
|
\definecolor{ugent-fw}{RGB}{190,81,144}
|
||||||
|
% Faculty of Political and Social Sciences
|
||||||
|
\definecolor{ugent-ps}{RGB}{113,168,96}
|
||||||
|
|
||||||
|
% Define new commands
|
||||||
|
\def\thetitle#1{\def\@thetitle{#1}}
|
||||||
|
\def\thesubtitle#1{\def\@thesubtitle{#1}}
|
||||||
|
\def\infoboxa#1{\def\@infoboxa{#1}}
|
||||||
|
\def\infoboxb#1{\def\@infoboxb{#1}}
|
||||||
|
\def\infoboxc#1{\def\@infoboxc{#1}}
|
||||||
|
\def\infoboxd#1{\def\@infoboxd{#1}}
|
||||||
|
|
||||||
|
% Initialize new commands as 'empty'
|
||||||
|
\def\@thetitle{}
|
||||||
|
\def\@thesubtitle{}
|
||||||
|
\def\@infoboxa{}
|
||||||
|
\def\@infoboxb{}
|
||||||
|
\def\@infoboxc{}
|
||||||
|
\def\@infoboxd{}
|
||||||
|
|
||||||
|
% Define lengths based on UGent document grid
|
||||||
|
% See: https://styleguide.ugent.be/basic-principles/grid-and-layout.html
|
||||||
|
\newlength{\longedge}
|
||||||
|
\setlength{\longedge}{\maxof{\paperheight}{\paperwidth}}
|
||||||
|
\newlength{\gridunit}
|
||||||
|
\setlength{\gridunit}{\longedge/28} %Divide long edge by 7 and next by 4
|
||||||
|
\newlength{\subpaperheight}
|
||||||
|
\setlength{\subpaperheight}{\paperheight-7\gridunit} %Type area: 3 units for faculty logo, 4 units for UGent logo
|
||||||
|
\newlength{\subpaperwidth}
|
||||||
|
\setlength{\subpaperwidth}{\paperwidth-\gridunit} %Left margin of 1 gridunit
|
||||||
|
|
||||||
|
% Define strut based on \gridunit
|
||||||
|
\newcommand{\mystrut}[1][-.5]{\rule[#1\gridunit]{0pt}{0pt}}
|
||||||
|
|
||||||
|
% Set default page layout
|
||||||
|
% Can be overwritten in preamble of document
|
||||||
|
\renewcommand{\baselinestretch}{1.15} % line spacing
|
||||||
|
\geometry{bottom=2.5cm,top=2.5cm,left=3cm,right=2cm} % margins
|
||||||
|
|
||||||
|
% Redefine the titlepage in accordance with UGent styleguide
|
||||||
|
\renewcommand\maketitle{\begin{titlepage}%
|
||||||
|
\thispagestyle{empty} % by default, the pagestyle of title page is plain
|
||||||
|
\newgeometry{top=0cm, bottom=0cm, left=0cm, right=0cm} % set special margins
|
||||||
|
\setlength{\parindent}{0cm} % necessary to put minipages/boxes at extreme left of page
|
||||||
|
\setlength{\parsep}{0cm} % necessary to stack minipages/boxes without space
|
||||||
|
\setlength{\fboxsep}{0cm} % no border around minipages/boxes
|
||||||
|
\setlength{\parskip}{0cm}
|
||||||
|
\setlength{\lineskip}{0cm}
|
||||||
|
|
||||||
|
\ifugd@sftitles
|
||||||
|
\sffamily % Titlepage in sans serif font
|
||||||
|
\fi
|
||||||
|
|
||||||
|
\includegraphics[height=3\gridunit]{\ugd@faculty-\ugd@language.pdf}%
|
||||||
|
|
||||||
|
\makebox[\gridunit]{}% Left margin of 1 gridunit
|
||||||
|
\colorbox{ugent-\ugd@faculty!30}{%
|
||||||
|
%\colorbox{ugentwhite}{%
|
||||||
|
\begin{minipage}[c][\subpaperheight][t]{\subpaperwidth}%
|
||||||
|
\vskip 5\gridunit % top margin within minipage
|
||||||
|
\hskip \gridunit % left margin of 1 within the colorbox
|
||||||
|
%\fbox{%
|
||||||
|
\begin{minipage}{\subpaperwidth-2\gridunit} % tile minipage, right margin of 1
|
||||||
|
\raggedright\bfseries\huge
|
||||||
|
\textcolor{ugentblue}{\mystrut\@thetitle}\newline
|
||||||
|
\Large\textcolor{ugentblue}{\@thesubtitle}
|
||||||
|
\mystrut[1]
|
||||||
|
\end{minipage}%}
|
||||||
|
|
||||||
|
\vskip\fill % Push down to bottom of minipage
|
||||||
|
|
||||||
|
\ifx\@infoboxa\empty\else % ony put box if not empty
|
||||||
|
\hskip\gridunit % left margin of infobox
|
||||||
|
%\fbox{%
|
||||||
|
\begin{minipage}[b]{\subpaperwidth-3\gridunit} % right margin of 1
|
||||||
|
\@infoboxa
|
||||||
|
\end{minipage}%}
|
||||||
|
|
||||||
|
\baselineskip0pt\mystrut
|
||||||
|
\fi
|
||||||
|
|
||||||
|
\ifx\@infoboxb\empty\else % ony put box if not empty
|
||||||
|
\hskip\gridunit % left margin of infobox
|
||||||
|
%\fbox{%
|
||||||
|
\begin{minipage}[b]{\subpaperwidth-3\gridunit} % right margin of 1
|
||||||
|
\@infoboxb
|
||||||
|
\end{minipage}%}
|
||||||
|
|
||||||
|
\baselineskip0pt\mystrut
|
||||||
|
\fi
|
||||||
|
|
||||||
|
\ifx\@infoboxc\empty\else % ony put box if not empty
|
||||||
|
\hskip\gridunit % left margin of infobox
|
||||||
|
%\fbox{%
|
||||||
|
\begin{minipage}[b]{\subpaperwidth-3\gridunit} % right margin of 1
|
||||||
|
\@infoboxc
|
||||||
|
\end{minipage}%}
|
||||||
|
|
||||||
|
\baselineskip0pt\mystrut
|
||||||
|
\fi
|
||||||
|
|
||||||
|
\ifx\@infoboxd\empty\else % ony put box if not empty
|
||||||
|
\hskip\gridunit % left margin of infobox
|
||||||
|
%\fbox{%
|
||||||
|
\begin{minipage}[b]{\subpaperwidth-3\gridunit} % right margin of 1
|
||||||
|
\@infoboxd
|
||||||
|
\end{minipage}%}
|
||||||
|
\fi
|
||||||
|
|
||||||
|
\baselineskip0pt\mystrut[-1]
|
||||||
|
\end{minipage}
|
||||||
|
}%
|
||||||
|
|
||||||
|
\includegraphics[height=4\gridunit]{ugent-\ugd@language.pdf}%
|
||||||
|
\end{titlepage}
|
||||||
|
\restoregeometry
|
||||||
|
}
|
||||||
BIN
Reports/February/ugent-en.pdf
Normal file
34
Reports/February/verslag.aux
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
\relax
|
||||||
|
\providecommand\hyper@newdestlabel[2]{}
|
||||||
|
\@nameuse{bbl@beforestart}
|
||||||
|
\abx@aux@refcontext{nyt/global//global/global}
|
||||||
|
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
|
||||||
|
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
|
||||||
|
\global\let\oldcontentsline\contentsline
|
||||||
|
\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
|
||||||
|
\global\let\oldnewlabel\newlabel
|
||||||
|
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
|
||||||
|
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
|
||||||
|
\AtEndDocument{\ifx\hyper@anchor\@undefined
|
||||||
|
\let\contentsline\oldcontentsline
|
||||||
|
\let\newlabel\oldnewlabel
|
||||||
|
\fi}
|
||||||
|
\fi}
|
||||||
|
\global\let\hyper@last\relax
|
||||||
|
\gdef\HyperFirstAtBeginDocument#1{#1}
|
||||||
|
\providecommand\HyField@AuxAddToFields[1]{}
|
||||||
|
\providecommand\HyField@AuxAddToCoFields[2]{}
|
||||||
|
\@writefile{toc}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax }
|
||||||
|
\@writefile{lof}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax }
|
||||||
|
\@writefile{lot}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax }
|
||||||
|
\babel@aux{english}{}
|
||||||
|
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {1}Intermediate Results}{1}{section.1}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {1.1}Net Regulation Volume Modeling}{1}{subsection.1.1}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.1.1}Input Features}{1}{subsubsection.1.1.1}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.1.2}Models}{1}{subsubsection.1.1.2}\protected@file@percent }
|
||||||
|
\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Performance of Autoregressive Models}}{1}{table.1}\protected@file@percent }
|
||||||
|
\newlabel{tab:general_models}{{1}{1}{Performance of Autoregressive Models}{table.1}{}}
|
||||||
|
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.1.3}Charging Policy}{2}{subsubsection.1.1.3}\protected@file@percent }
|
||||||
|
\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces Comparison of Energy Storage Policies Using Predicted NRV. Battery of 2MWh with 1MW charge/discharge power. Evaluated on data from 01-01-2023 until 08-10-2023.}}{2}{table.2}\protected@file@percent }
|
||||||
|
\newlabel{table:energy_storage_policies}{{2}{2}{Comparison of Energy Storage Policies Using Predicted NRV. Battery of 2MWh with 1MW charge/discharge power. Evaluated on data from 01-01-2023 until 08-10-2023}{table.2}{}}
|
||||||
|
\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {2}Schedule next months}{3}{section.2}\protected@file@percent }
|
||||||
2592
Reports/February/verslag.bcf
Normal file
1000
Reports/February/verslag.log
Normal file
6
Reports/February/verslag.out
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
\BOOKMARK [1][-]{section.1}{Intermediate Results}{}% 1
|
||||||
|
\BOOKMARK [2][-]{subsection.1.1}{Net Regulation Volume Modeling}{section.1}% 2
|
||||||
|
\BOOKMARK [3][-]{subsubsection.1.1.1}{Input Features}{subsection.1.1}% 3
|
||||||
|
\BOOKMARK [3][-]{subsubsection.1.1.2}{Models}{subsection.1.1}% 4
|
||||||
|
\BOOKMARK [3][-]{subsubsection.1.1.3}{Charging Policy}{subsection.1.1}% 5
|
||||||
|
\BOOKMARK [1][-]{section.2}{Schedule next months}{}% 6
|
||||||
BIN
Reports/February/verslag.pdf
Normal file
89
Reports/February/verslag.run.xml
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
<?xml version="1.0" standalone="yes"?>
|
||||||
|
<!-- logreq request file -->
|
||||||
|
<!-- logreq version 1.0 / dtd version 1.0 -->
|
||||||
|
<!-- Do not edit this file! -->
|
||||||
|
<!DOCTYPE requests [
|
||||||
|
<!ELEMENT requests (internal | external)*>
|
||||||
|
<!ELEMENT internal (generic, (provides | requires)*)>
|
||||||
|
<!ELEMENT external (generic, cmdline?, input?, output?, (provides | requires)*)>
|
||||||
|
<!ELEMENT cmdline (binary, (option | infile | outfile)*)>
|
||||||
|
<!ELEMENT input (file)+>
|
||||||
|
<!ELEMENT output (file)+>
|
||||||
|
<!ELEMENT provides (file)+>
|
||||||
|
<!ELEMENT requires (file)+>
|
||||||
|
<!ELEMENT generic (#PCDATA)>
|
||||||
|
<!ELEMENT binary (#PCDATA)>
|
||||||
|
<!ELEMENT option (#PCDATA)>
|
||||||
|
<!ELEMENT infile (#PCDATA)>
|
||||||
|
<!ELEMENT outfile (#PCDATA)>
|
||||||
|
<!ELEMENT file (#PCDATA)>
|
||||||
|
<!ATTLIST requests
|
||||||
|
version CDATA #REQUIRED
|
||||||
|
>
|
||||||
|
<!ATTLIST internal
|
||||||
|
package CDATA #REQUIRED
|
||||||
|
priority (9) #REQUIRED
|
||||||
|
active (0 | 1) #REQUIRED
|
||||||
|
>
|
||||||
|
<!ATTLIST external
|
||||||
|
package CDATA #REQUIRED
|
||||||
|
priority (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8) #REQUIRED
|
||||||
|
active (0 | 1) #REQUIRED
|
||||||
|
>
|
||||||
|
<!ATTLIST provides
|
||||||
|
type (static | dynamic | editable) #REQUIRED
|
||||||
|
>
|
||||||
|
<!ATTLIST requires
|
||||||
|
type (static | dynamic | editable) #REQUIRED
|
||||||
|
>
|
||||||
|
<!ATTLIST file
|
||||||
|
type CDATA #IMPLIED
|
||||||
|
>
|
||||||
|
]>
|
||||||
|
<requests version="1.0">
|
||||||
|
<internal package="biblatex" priority="9" active="0">
|
||||||
|
<generic>latex</generic>
|
||||||
|
<provides type="dynamic">
|
||||||
|
<file>verslag.bcf</file>
|
||||||
|
</provides>
|
||||||
|
<requires type="dynamic">
|
||||||
|
<file>verslag.bbl</file>
|
||||||
|
</requires>
|
||||||
|
<requires type="static">
|
||||||
|
<file>blx-dm.def</file>
|
||||||
|
<file>apa.dbx</file>
|
||||||
|
<file>blx-compat.def</file>
|
||||||
|
<file>biblatex.def</file>
|
||||||
|
<file>standard.bbx</file>
|
||||||
|
<file>apa.bbx</file>
|
||||||
|
<file>apa.cbx</file>
|
||||||
|
<file>biblatex.cfg</file>
|
||||||
|
<file>english.lbx</file>
|
||||||
|
<file>american.lbx</file>
|
||||||
|
<file>american-apa.lbx</file>
|
||||||
|
<file>english-apa.lbx</file>
|
||||||
|
</requires>
|
||||||
|
</internal>
|
||||||
|
<external package="biblatex" priority="5" active="0">
|
||||||
|
<generic>biber</generic>
|
||||||
|
<cmdline>
|
||||||
|
<binary>biber</binary>
|
||||||
|
<infile>verslag</infile>
|
||||||
|
</cmdline>
|
||||||
|
<input>
|
||||||
|
<file>verslag.bcf</file>
|
||||||
|
</input>
|
||||||
|
<output>
|
||||||
|
<file>verslag.bbl</file>
|
||||||
|
</output>
|
||||||
|
<provides type="dynamic">
|
||||||
|
<file>verslag.bbl</file>
|
||||||
|
</provides>
|
||||||
|
<requires type="dynamic">
|
||||||
|
<file>verslag.bcf</file>
|
||||||
|
</requires>
|
||||||
|
<requires type="editable">
|
||||||
|
<file>./references.bib</file>
|
||||||
|
</requires>
|
||||||
|
</external>
|
||||||
|
</requests>
|
||||||
BIN
Reports/February/verslag.synctex.gz
Normal file
213
Reports/February/verslag.tex
Normal file
@@ -0,0 +1,213 @@
|
|||||||
|
\documentclass[12pt,a4paper,faculty=ea,language=en,doctype=article]{ugent-doc}
|
||||||
|
|
||||||
|
% Optional: margins and spacing
|
||||||
|
%-------------------------------
|
||||||
|
% Uncomment and adjust to change the default values set by the template
|
||||||
|
% Note: the defaults are suggested values by Ghent University
|
||||||
|
%\geometry{bottom=2.5cm,top=2.5cm,left=3cm,right=2cm}
|
||||||
|
%\renewcommand{\baselinestretch}{1.15} % line spacing
|
||||||
|
|
||||||
|
% Font
|
||||||
|
%------
|
||||||
|
\usepackage[T1]{fontenc}
|
||||||
|
\usepackage[utf8]{inputenc} % allows non-ascii input characters
|
||||||
|
% Comment or remove the two lines below to use the default Computer Modern font
|
||||||
|
\usepackage{libertine}
|
||||||
|
\usepackage{libertinust1math}
|
||||||
|
\usepackage{enumitem}
|
||||||
|
% NOTE: because the UGent font Panno is proprietary, it is not possible to use it
|
||||||
|
% in Overleaf. But UGent does not suggest to use Panno for documents (or maybe only for
|
||||||
|
% the titlepage). For the body, the UGent suggestion is to use a good serif font (for
|
||||||
|
% LaTeX this could be libertine or Computer Modern).
|
||||||
|
|
||||||
|
% Proper word splitting
|
||||||
|
%-----------------------
|
||||||
|
\usepackage[english]{babel}
|
||||||
|
|
||||||
|
% Mathematics
|
||||||
|
%-------------
|
||||||
|
\usepackage{amsmath}
|
||||||
|
|
||||||
|
% Figures
|
||||||
|
%---------
|
||||||
|
\usepackage{graphicx} % optional: the package is already loaded by the template
|
||||||
|
\graphicspath{{./figures/}}
|
||||||
|
|
||||||
|
% Bibliography settings
|
||||||
|
%-----------------------
|
||||||
|
\usepackage[backend=biber, style=apa, sorting=nyt, hyperref=true]{biblatex}
|
||||||
|
\addbibresource{./references.bib}
|
||||||
|
\usepackage{csquotes} % Suggested when using babel+biblatex
|
||||||
|
|
||||||
|
% Hyperreferences
|
||||||
|
%-----------------
|
||||||
|
\usepackage[colorlinks=true, allcolors=ugentblue]{hyperref}
|
||||||
|
|
||||||
|
% Whitespace between paragraphs and no indentation
|
||||||
|
%--------------------------------------------------
|
||||||
|
\usepackage[parfill]{parskip}
|
||||||
|
|
||||||
|
% Input for title page
|
||||||
|
%----------------------
|
||||||
|
|
||||||
|
% The title
|
||||||
|
\thesubtitle{February Intermediate Report}
|
||||||
|
|
||||||
|
%% Note: a stricter UGent style could be achieved with, e.g.:
|
||||||
|
\usepackage{ulem} % for colored underline
|
||||||
|
\renewcommand{\ULthickness}{2pt} % adjust thickness of underline
|
||||||
|
\thetitle{Forecasting and generative modeling of the Belgian electricity market}
|
||||||
|
% Note: do not forget to reset the \ULthickness to 1pt after invoking \maketitle
|
||||||
|
% (otherwise all underlines in the rest of your document will be too thick):
|
||||||
|
%\renewcommand{\ULthickness}{1pt}
|
||||||
|
|
||||||
|
% The first (top) infobox at bottom of titlepage
|
||||||
|
\infoboxa{\bfseries\large Master Thesis}
|
||||||
|
|
||||||
|
% The second infobox at bottom of titlepage
|
||||||
|
\infoboxb{Name:
|
||||||
|
\begin{tabular}[t]{l}
|
||||||
|
Victor Mylle
|
||||||
|
\end{tabular}
|
||||||
|
}
|
||||||
|
|
||||||
|
% The third infobox at bottom of titlepage
|
||||||
|
\infoboxc{
|
||||||
|
Promotors:
|
||||||
|
\begin{tabular}[t]{l}
|
||||||
|
prof. dr. ir. Chris Develder \\
|
||||||
|
prof. Bert Claessens
|
||||||
|
\end{tabular}
|
||||||
|
\\\\
|
||||||
|
Supervisor:
|
||||||
|
\begin{tabular}[t]{l}
|
||||||
|
Jonas Van Gompel
|
||||||
|
\end{tabular}
|
||||||
|
}
|
||||||
|
|
||||||
|
% The last (bottom) infobox at bottom of titlepage
|
||||||
|
\infoboxd{Academic year: 2023--2024} % note dash, not hyphen
|
||||||
|
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
|
||||||
|
% =====================================================================
|
||||||
|
% Cover
|
||||||
|
% =====================================================================
|
||||||
|
|
||||||
|
% ------------ TITLE PAGE ---------
|
||||||
|
\maketitle
|
||||||
|
\renewcommand{\ULthickness}{1pt}
|
||||||
|
|
||||||
|
% =====================================================================
|
||||||
|
% Front matter
|
||||||
|
% =====================================================================
|
||||||
|
|
||||||
|
% ------------ TABLE OF CONTENTS ---------
|
||||||
|
% {\hypersetup{hidelinks}\tableofcontents} % hide link color in toc
|
||||||
|
% \newpage
|
||||||
|
% \begin{titlepage}
|
||||||
|
|
||||||
|
% \centering % Centers everything on the page
|
||||||
|
|
||||||
|
% % Logo or Image (Optional)
|
||||||
|
% % \includegraphics[width=0.5\textwidth]{path_to_logo.jpg}
|
||||||
|
|
||||||
|
% \vspace*{2cm} % Add vertical space
|
||||||
|
|
||||||
|
% {\large Title: Forecasting and generative modeling of the Belgian electricity market\par}
|
||||||
|
|
||||||
|
% \vspace{2cm}
|
||||||
|
% {\Large Victor Mylle\par}
|
||||||
|
|
||||||
|
% \vspace{1cm}
|
||||||
|
% {\large Period of Internship: 3 July 2023 - 31 August 2023\par}
|
||||||
|
|
||||||
|
% \vspace{1cm}
|
||||||
|
% {\large Mentor: dr. ir. Femke De Backere\par}
|
||||||
|
% {\large TechWolf supervisor: ir. Jens-Joris Decorte}
|
||||||
|
|
||||||
|
% \end{titlepage}
|
||||||
|
|
||||||
|
\newpage
|
||||||
|
|
||||||
|
\section{Intermediate Results}
|
||||||
|
|
||||||
|
\subsection{Net Regulation Volume Modeling}
|
||||||
|
Using a generative model, we try to predict the NRV for the next day. The model is trained on historical data and uses multiple input features to model the NRV. The data for the input features can all be downloaded from \href{https://www.elia.be/en/grid-data/open-data}{Elia Open Data}.
|
||||||
|
|
||||||
|
\subsubsection{Input Features}
|
||||||
|
The generative model uses multiple input features to predict the NRV.
|
||||||
|
|
||||||
|
\begin{itemize}[noitemsep]
|
||||||
|
\item NRV History (NRV of yesterday)
|
||||||
|
\item Load Forecast (Forecasted load of tomorrow)
|
||||||
|
\item Load History (Load of yesterday)
|
||||||
|
\item Wind Forecast (Forecasted wind of tomorrow)
|
||||||
|
\item Wind History (Wind of yesterday)
|
||||||
|
\item Implicit net position (Nominal net position of tomorrow)
|
||||||
|
\item Time features (Day of the week + quarter of the day)
|
||||||
|
\item Photovoltaic Forecast\textsuperscript{*}
|
||||||
|
\item Photovoltaic History\textsuperscript{*}
|
||||||
|
\end{itemize}
|
||||||
|
\textsuperscript{*} These features are not used currently, the data was not available. These features can easily be added without changing any code.
|
||||||
|
|
||||||
|
\subsubsection{Models}
|
||||||
|
In the intermediate report of November, baselines were discussed. Now, other more advanced models are used. Samples must be generated using the model, this means the model can't just output one value but a distribution is needed. Quantile Regression can be used for this task. The model then outputs the values of multiple quantiles. For example, the model outputs the value for which 10\% of the data is lower, the value for which 50\% of the data is lower, etc. This way, the model outputs a distribution which can be used to sample from. The NRV predicitons are done in a quarter-hourly resolution. To predict the NRV for the next day, 96 values need to be sampled. This can be done in an autoregressive manner. The model outputs the quantiles for the first quarter-hour, a sample is drawn from this distribution and this sample is used as input for the next quarter-hour. This process is repeated 96 times.
|
||||||
|
|
||||||
|
\begin{table}[h]
|
||||||
|
\centering
|
||||||
|
\begin{tabular}{lcc}
|
||||||
|
\hline
|
||||||
|
\textbf{Model} & \textbf{test\_L1Loss} & \textbf{test\_CRPSLoss} \\
|
||||||
|
\hline
|
||||||
|
Linear Model & 101.639 & 68.485 \\
|
||||||
|
Non Linear Model & 102.031 & 68.968 \\
|
||||||
|
LSTM/GRU Model & 104.261 & 66.052 \\
|
||||||
|
\hline
|
||||||
|
\end{tabular}
|
||||||
|
\caption{Performance of Autoregressive Models}
|
||||||
|
\label{tab:general_models}
|
||||||
|
\end{table}
|
||||||
|
|
||||||
|
At the moment, I am experimenting with a diffusion model to generatively model the NRV but more research and expermimenting needs to be done.
|
||||||
|
|
||||||
|
\subsubsection{Charging Policy}
|
||||||
|
Using the predicted NRV, a policy can be implemented to charge and discharge a battery. The goal of the policy is to maximize the profit made by selling the stored electricity. A simple policy is implemented to charge and discharge the battery based on 2 thresholds determined by the predicted NRV. The policy is evaluated on historical data and the profit is calculated. To determine the charge and discharge threshold, 1000 full NRV predictions are done for the next day and for each of these predicitions, the thresholds are determined. Next, the mean of these thresholds is used as the final threshold.
|
||||||
|
|
||||||
|
\begin{table}[h]
|
||||||
|
\centering
|
||||||
|
\begin{tabular}{lccc}
|
||||||
|
\hline
|
||||||
|
\textbf{Policy} & \textbf{Total Profit (€)} & \textbf{Charge Cycles} \\
|
||||||
|
\hline
|
||||||
|
Baseline (charge: €150, discharge: €175) & 251,202.59 & 725 \\
|
||||||
|
Baseline (yesterday imbalance price) & 342,980.09 & 903 \\
|
||||||
|
GRU Predicted NRV (mean thresholds) & 339,846.91 & 842 \\
|
||||||
|
Diffusion Predicted NRV (mean thresholds) & 338,168.03 & 886 \\
|
||||||
|
\hline
|
||||||
|
\end{tabular}
|
||||||
|
\caption{Comparison of Energy Storage Policies Using Predicted NRV. Battery of 2MWh with 1MW charge/discharge power. Evaluated on data from 01-01-2023 until 08-10-2023.}
|
||||||
|
\label{table:energy_storage_policies}
|
||||||
|
\end{table}
|
||||||
|
|
||||||
|
The recommended charge cycles for a battery is <400 cycles per year. The policy also needs to take this into account. A penalty parameter can be introduced and determined so that the policy is penalized for every charge cycle above 400. The policy can then be optimized using this penalty parameter. I am currenlty experimenting with this.
|
||||||
|
|
||||||
|
|
||||||
|
\newpage
|
||||||
|
\section{Schedule next months}
|
||||||
|
\begin{itemize}
|
||||||
|
\item Baselines with penalties for charge cycles above 400
|
||||||
|
\item Better visualizations of the policy profit results.
|
||||||
|
\item Case studies of days with extreme thresholds
|
||||||
|
|
||||||
|
\item Finetuning of models and hyperparametres based on model errors and profits of the policy
|
||||||
|
\item Ablation study of input features
|
||||||
|
|
||||||
|
\item Experiment further with diffusion models
|
||||||
|
|
||||||
|
\item During the experimenting, I will write my thesis and update the results and conclusions chapters.
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
\end{document}
|
||||||
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
\relax
|
|
||||||
\providecommand\babel@aux[2]{}
|
|
||||||
\@nameuse{bbl@beforestart}
|
|
||||||
\abx@aux@refcontext{nyt/global//global/global}
|
|
||||||
\providecommand\hyper@newdestlabel[2]{}
|
|
||||||
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
|
|
||||||
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
|
|
||||||
\global\let\oldnewlabel\newlabel
|
|
||||||
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
|
|
||||||
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
|
|
||||||
\AtEndDocument{\ifx\hyper@anchor\@undefined
|
|
||||||
\let\newlabel\oldnewlabel
|
|
||||||
\fi}
|
|
||||||
\fi}
|
|
||||||
\global\let\hyper@last\relax
|
|
||||||
\gdef\HyperFirstAtBeginDocument#1{#1}
|
|
||||||
\providecommand\HyField@AuxAddToFields[1]{}
|
|
||||||
\providecommand\HyField@AuxAddToCoFields[2]{}
|
|
||||||
\babel@aux{english}{}
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {1}Intermediate Results}{1}{section.1}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {1.1}Previous day as forecast}{1}{subsection.1.1}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2}All Zeros}{1}{subsection.1.2}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {1.3}Linear Model}{1}{subsection.1.3}\protected@file@percent }
|
|
||||||
\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Results of the linear model with different ranges of training data}}{2}{table.1}\protected@file@percent }
|
|
||||||
\newlabel{tab:linear_model}{{1}{2}{Results of the linear model with different ranges of training data}{table.1}{}}
|
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {2}Schedule next months}{3}{section.2}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Other input features}{3}{subsection.2.1}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}More complex models}{3}{subsection.2.2}\protected@file@percent }
|
|
||||||
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3}Reinforcement learning}{3}{subsection.2.3}\protected@file@percent }
|
|
||||||
\abx@aux@read@bbl@mdfivesum{nobblfile}
|
|
||||||
\gdef \@abspage@last{4}
|
|
||||||
20
Reports/November/verslag.bbl
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
% $ biblatex auxiliary file $
|
||||||
|
% $ biblatex bbl format version 3.2 $
|
||||||
|
% Do not modify the above lines!
|
||||||
|
%
|
||||||
|
% This is an auxiliary file used by the 'biblatex' package.
|
||||||
|
% This file may safely be deleted. It will be recreated by
|
||||||
|
% biber as required.
|
||||||
|
%
|
||||||
|
\begingroup
|
||||||
|
\makeatletter
|
||||||
|
\@ifundefined{ver@biblatex.sty}
|
||||||
|
{\@latex@error
|
||||||
|
{Missing 'biblatex' package}
|
||||||
|
{The bibliography requires the 'biblatex' package.}
|
||||||
|
\aftergroup\endinput}
|
||||||
|
{}
|
||||||
|
\endgroup
|
||||||
|
|
||||||
|
\endinput
|
||||||
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
\BOOKMARK [1][-]{section.1}{\376\377\000I\000n\000t\000e\000r\000m\000e\000d\000i\000a\000t\000e\000\040\000R\000e\000s\000u\000l\000t\000s}{}% 1
|
|
||||||
\BOOKMARK [2][-]{subsection.1.1}{\376\377\000P\000r\000e\000v\000i\000o\000u\000s\000\040\000d\000a\000y\000\040\000a\000s\000\040\000f\000o\000r\000e\000c\000a\000s\000t}{section.1}% 2
|
|
||||||
\BOOKMARK [2][-]{subsection.1.2}{\376\377\000A\000l\000l\000\040\000Z\000e\000r\000o\000s}{section.1}% 3
|
|
||||||
\BOOKMARK [2][-]{subsection.1.3}{\376\377\000L\000i\000n\000e\000a\000r\000\040\000M\000o\000d\000e\000l}{section.1}% 4
|
|
||||||
\BOOKMARK [1][-]{section.2}{\376\377\000S\000c\000h\000e\000d\000u\000l\000e\000\040\000n\000e\000x\000t\000\040\000m\000o\000n\000t\000h\000s}{}% 5
|
|
||||||
\BOOKMARK [2][-]{subsection.2.1}{\376\377\000O\000t\000h\000e\000r\000\040\000i\000n\000p\000u\000t\000\040\000f\000e\000a\000t\000u\000r\000e\000s}{section.2}% 6
|
|
||||||
\BOOKMARK [2][-]{subsection.2.2}{\376\377\000M\000o\000r\000e\000\040\000c\000o\000m\000p\000l\000e\000x\000\040\000m\000o\000d\000e\000l\000s}{section.2}% 7
|
|
||||||
\BOOKMARK [2][-]{subsection.2.3}{\376\377\000R\000e\000i\000n\000f\000o\000r\000c\000e\000m\000e\000n\000t\000\040\000l\000e\000a\000r\000n\000i\000n\000g}{section.2}% 8
|
|
||||||
BIN
Reports/Thesis/MP2324_verslag2_Mylle_Victor.pdf
Normal file
95
Reports/Thesis/acronyms.tex
Normal file
@@ -0,0 +1,95 @@
|
|||||||
|
% Training methods
|
||||||
|
\DeclareAcronym{QR}{
|
||||||
|
short = QR,
|
||||||
|
long = Quantile Regression
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{AQR}{
|
||||||
|
short = AQR,
|
||||||
|
long = Autoregressive Quantile Regression
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{NAQR}{
|
||||||
|
short = NAQR,
|
||||||
|
long = Non-Autoregressive Quantile Regression
|
||||||
|
}
|
||||||
|
|
||||||
|
% Metrics
|
||||||
|
\DeclareAcronym{MSE}{
|
||||||
|
short = MSE,
|
||||||
|
long = Mean Squared Error
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{MAE}{
|
||||||
|
short = MAE,
|
||||||
|
long = Mean Absolute Error
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{CRPS}{
|
||||||
|
short = CRPS,
|
||||||
|
long = Continuous Ranked Probability Score
|
||||||
|
}
|
||||||
|
|
||||||
|
% Electricity Market Terms
|
||||||
|
\DeclareAcronym{NRV}{
|
||||||
|
short = NRV,
|
||||||
|
long = Net Regulation Volume
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{PV}{
|
||||||
|
short = PV,
|
||||||
|
long = Photovoltaic
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{NP}{
|
||||||
|
short = NP,
|
||||||
|
long = Implicit Net Position
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{TSO}{
|
||||||
|
short = TSO,
|
||||||
|
long = Transmission System Operator
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{DSO}{
|
||||||
|
short = DSO,
|
||||||
|
long = Distribution System Operator
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{BRP}{
|
||||||
|
short = BRP,
|
||||||
|
long = Balance Responsible Party,
|
||||||
|
short-plural = s,
|
||||||
|
long-plural = ies
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{BSP}{
|
||||||
|
short = BSP,
|
||||||
|
long = Balancing Service Provider,
|
||||||
|
short-plural = s,
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{SI}{
|
||||||
|
short = SI,
|
||||||
|
long = System Imbalance
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{FCR}{
|
||||||
|
short = FCR,
|
||||||
|
long = Frequency Containment Reserve
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{aFRR}{
|
||||||
|
short = aFRR,
|
||||||
|
long = Automatic Frequency Restoration
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{mFRR}{
|
||||||
|
short = mFRR,
|
||||||
|
long = Manual Frequency Restoration
|
||||||
|
}
|
||||||
|
|
||||||
|
\DeclareAcronym{MW}{
|
||||||
|
short = MW,
|
||||||
|
long = Megawatt
|
||||||
|
}
|
||||||
67
Reports/Thesis/diagrams/.$RNN_diagram.drawio.bkp
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
<mxfile host="Electron" modified="2024-04-21T19:27:00.133Z" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/21.6.8 Chrome/114.0.5735.289 Electron/25.5.0 Safari/537.36" etag="iP2ZMkiDESp7J3viivZF" version="21.6.8" type="device">
|
||||||
|
<diagram name="Page-1" id="FePbCUh0FgINugyzgCKY">
|
||||||
|
<mxGraphModel dx="1834" dy="806" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="0" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
|
||||||
|
<root>
|
||||||
|
<mxCell id="0" />
|
||||||
|
<mxCell id="1" parent="0" />
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-3" value="" style="group" vertex="1" connectable="0" parent="1">
|
||||||
|
<mxGeometry x="-40" y="280" width="200" height="140" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-1" value="<div style="text-align: left;"><span style="background-color: initial;">- Real NRV <b>(T-96)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- Real Load <b>(T-95)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- Real PV <b>(T-95)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- Real Wind <b>(T-95)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- Real Net Position <b>(T-95)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- QE <b>(T-96)</b></span></div>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=default;strokeWidth=2;" vertex="1" parent="XPfo9y-A51sPOulxTgxz-3">
|
||||||
|
<mxGeometry y="30" width="200" height="110" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-2" value="<font style="font-size: 14px;">Quarter T-96</font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="XPfo9y-A51sPOulxTgxz-3">
|
||||||
|
<mxGeometry x="52.941764705882356" width="94.11764705882354" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-4" value="" style="group" vertex="1" connectable="0" parent="1">
|
||||||
|
<mxGeometry x="400" y="280" width="200" height="140" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-5" value="<div style="text-align: left;"><div style="border-color: var(--border-color);">- Real NRV (T-1)</div><div style="border-color: var(--border-color);"><span style="border-color: var(--border-color); background-color: initial;">- Forecast Load (T)</span></div><div style="border-color: var(--border-color);"><span style="border-color: var(--border-color); background-color: initial;">- Forecast&nbsp;PV (T)</span></div><div style="border-color: var(--border-color);"><span style="border-color: var(--border-color); background-color: initial;">- Forecast&nbsp;Wind (T)</span></div><div style="border-color: var(--border-color);">- Forecast&nbsp;Net Position <b>(T)</b></div><div style="border-color: var(--border-color);"><span style="background-color: initial;">- QE <b>(T-1)</b></span><br></div></div>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=default;strokeWidth=2;" vertex="1" parent="XPfo9y-A51sPOulxTgxz-4">
|
||||||
|
<mxGeometry y="30" width="200" height="110" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-6" value="<font style="font-size: 14px;">Quarter T-1</font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="XPfo9y-A51sPOulxTgxz-4">
|
||||||
|
<mxGeometry x="38.46153846153845" width="123.07692307692304" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-7" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=4;rounded=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="XPfo9y-A51sPOulxTgxz-1" target="XPfo9y-A51sPOulxTgxz-5">
|
||||||
|
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||||
|
<mxPoint x="110" y="410" as="sourcePoint" />
|
||||||
|
<mxPoint x="160" y="360" as="targetPoint" />
|
||||||
|
</mxGeometry>
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-15" value="RNN" style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=2;fontStyle=1;fontSize=14;" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="-40" y="190" width="640" height="40" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-16" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.156;entryY=1.075;entryDx=0;entryDy=0;entryPerimeter=0;strokeWidth=2;" edge="1" parent="1" source="XPfo9y-A51sPOulxTgxz-2" target="XPfo9y-A51sPOulxTgxz-15">
|
||||||
|
<mxGeometry relative="1" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-17" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.844;entryY=1.05;entryDx=0;entryDy=0;entryPerimeter=0;strokeWidth=2;" edge="1" parent="1" source="XPfo9y-A51sPOulxTgxz-6" target="XPfo9y-A51sPOulxTgxz-15">
|
||||||
|
<mxGeometry relative="1" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-18" value="" style="endArrow=classic;html=1;rounded=0;strokeWidth=2;" edge="1" parent="1">
|
||||||
|
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||||
|
<mxPoint x="61" y="190" as="sourcePoint" />
|
||||||
|
<mxPoint x="61" y="140" as="targetPoint" />
|
||||||
|
</mxGeometry>
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-19" value="NRV Quantiles <b>(T-95)</b>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=14;" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="10" y="100" width="100" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-20" value="Inputs" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=15;fontStyle=1" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="-150" y="350" width="60" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-21" value="Outputs" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=15;fontStyle=1" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="-150" y="100" width="60" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-22" value="" style="endArrow=classic;html=1;rounded=0;strokeWidth=2;exitX=0.844;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="1" source="XPfo9y-A51sPOulxTgxz-15">
|
||||||
|
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||||
|
<mxPoint x="500" y="180" as="sourcePoint" />
|
||||||
|
<mxPoint x="500" y="140" as="targetPoint" />
|
||||||
|
</mxGeometry>
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-24" value="NRV Quantiles <b>(T)</b>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=14;" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="450" y="100" width="100" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
</root>
|
||||||
|
</mxGraphModel>
|
||||||
|
</diagram>
|
||||||
|
</mxfile>
|
||||||
67
Reports/Thesis/diagrams/.$RNN_diagram.drawio.dtmp
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
<mxfile host="Electron" modified="2024-04-21T19:39:13.066Z" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/21.6.8 Chrome/114.0.5735.289 Electron/25.5.0 Safari/537.36" etag="Yo_Te6-BRO91UZdKIgwU" version="21.6.8" type="device">
|
||||||
|
<diagram name="Page-1" id="FePbCUh0FgINugyzgCKY">
|
||||||
|
<mxGraphModel dx="1834" dy="806" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="0" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
|
||||||
|
<root>
|
||||||
|
<mxCell id="0" />
|
||||||
|
<mxCell id="1" parent="0" />
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-3" value="" style="group" vertex="1" connectable="0" parent="1">
|
||||||
|
<mxGeometry x="-40" y="280" width="200" height="140" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-1" value="<div style="text-align: left;"><span style="background-color: initial;">- Real NRV <b>(T-96)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- Real Load <b>(T-95)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- Real PV <b>(T-95)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- Real Wind <b>(T-95)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- Real Net Position <b>(T-95)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- QE <b>(T-96)</b></span></div>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=default;strokeWidth=2;" vertex="1" parent="XPfo9y-A51sPOulxTgxz-3">
|
||||||
|
<mxGeometry y="30" width="200" height="110" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-2" value="<font style="font-size: 14px;">Quarter T-96</font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="XPfo9y-A51sPOulxTgxz-3">
|
||||||
|
<mxGeometry x="52.941764705882356" width="94.11764705882354" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-4" value="" style="group" vertex="1" connectable="0" parent="1">
|
||||||
|
<mxGeometry x="400" y="280" width="200" height="140" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-5" value="<div style="text-align: left;"><div style="border-color: var(--border-color);">- Real NRV <b>(T-1)</b></div><div style="border-color: var(--border-color);"><span style="border-color: var(--border-color); background-color: initial;">- Forecast Load <b>(T)</b></span></div><div style="border-color: var(--border-color);"><span style="border-color: var(--border-color); background-color: initial;">- Forecast&nbsp;PV <b>(T)</b></span></div><div style="border-color: var(--border-color);"><span style="border-color: var(--border-color); background-color: initial;">- Forecast&nbsp;Wind <b>(T)</b></span></div><div style="border-color: var(--border-color);">- Forecast&nbsp;Net Position <b>(T)</b></div><div style="border-color: var(--border-color);"><span style="background-color: initial;">- QE <b>(T-1)</b></span><br></div></div>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=default;strokeWidth=2;" vertex="1" parent="XPfo9y-A51sPOulxTgxz-4">
|
||||||
|
<mxGeometry y="30" width="200" height="110" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-6" value="<font style="font-size: 14px;">Quarter T-1</font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="XPfo9y-A51sPOulxTgxz-4">
|
||||||
|
<mxGeometry x="38.46153846153845" width="123.07692307692304" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-7" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=4;rounded=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="XPfo9y-A51sPOulxTgxz-1" target="XPfo9y-A51sPOulxTgxz-5">
|
||||||
|
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||||
|
<mxPoint x="110" y="410" as="sourcePoint" />
|
||||||
|
<mxPoint x="160" y="360" as="targetPoint" />
|
||||||
|
</mxGeometry>
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-15" value="RNN" style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=2;fontStyle=1;fontSize=14;" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="-40" y="190" width="640" height="40" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-16" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.156;entryY=1.075;entryDx=0;entryDy=0;entryPerimeter=0;strokeWidth=2;" edge="1" parent="1" source="XPfo9y-A51sPOulxTgxz-2" target="XPfo9y-A51sPOulxTgxz-15">
|
||||||
|
<mxGeometry relative="1" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-17" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.844;entryY=1.05;entryDx=0;entryDy=0;entryPerimeter=0;strokeWidth=2;" edge="1" parent="1" source="XPfo9y-A51sPOulxTgxz-6" target="XPfo9y-A51sPOulxTgxz-15">
|
||||||
|
<mxGeometry relative="1" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-18" value="" style="endArrow=classic;html=1;rounded=0;strokeWidth=2;" edge="1" parent="1">
|
||||||
|
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||||
|
<mxPoint x="61" y="190" as="sourcePoint" />
|
||||||
|
<mxPoint x="61" y="140" as="targetPoint" />
|
||||||
|
</mxGeometry>
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-19" value="NRV Quantiles <b>(T-95)</b>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=14;" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="10" y="100" width="100" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-20" value="Inputs" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=15;fontStyle=1" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="-150" y="350" width="60" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-21" value="Outputs" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=15;fontStyle=1" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="-150" y="100" width="60" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-22" value="" style="endArrow=classic;html=1;rounded=0;strokeWidth=2;exitX=0.844;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="1" source="XPfo9y-A51sPOulxTgxz-15">
|
||||||
|
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||||
|
<mxPoint x="500" y="180" as="sourcePoint" />
|
||||||
|
<mxPoint x="500" y="140" as="targetPoint" />
|
||||||
|
</mxGeometry>
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-24" value="NRV Quantiles <b>(T)</b>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=14;" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="450" y="100" width="100" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
</root>
|
||||||
|
</mxGraphModel>
|
||||||
|
</diagram>
|
||||||
|
</mxfile>
|
||||||
67
Reports/Thesis/diagrams/RNN_diagram.drawio
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
<mxfile host="Electron" modified="2024-04-21T19:39:08.279Z" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/21.6.8 Chrome/114.0.5735.289 Electron/25.5.0 Safari/537.36" etag="UVK9ORhi1HUABHBPMAua" version="21.6.8" type="device">
|
||||||
|
<diagram name="Page-1" id="FePbCUh0FgINugyzgCKY">
|
||||||
|
<mxGraphModel dx="1834" dy="806" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="0" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
|
||||||
|
<root>
|
||||||
|
<mxCell id="0" />
|
||||||
|
<mxCell id="1" parent="0" />
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-3" value="" style="group" vertex="1" connectable="0" parent="1">
|
||||||
|
<mxGeometry x="-40" y="280" width="200" height="140" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-1" value="<div style="text-align: left;"><span style="background-color: initial;">- Real NRV <b>(T-96)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- Real Load <b>(T-95)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- Real PV <b>(T-95)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- Real Wind <b>(T-95)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- Real Net Position <b>(T-95)</b></span></div><div style="text-align: left;"><span style="background-color: initial;">- QE <b>(T-96)</b></span></div>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=default;strokeWidth=2;" vertex="1" parent="XPfo9y-A51sPOulxTgxz-3">
|
||||||
|
<mxGeometry y="30" width="200" height="110" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-2" value="<font style="font-size: 14px;">Quarter T-96</font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="XPfo9y-A51sPOulxTgxz-3">
|
||||||
|
<mxGeometry x="52.941764705882356" width="94.11764705882354" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-4" value="" style="group" vertex="1" connectable="0" parent="1">
|
||||||
|
<mxGeometry x="400" y="280" width="200" height="140" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-5" value="<div style="text-align: left;"><div style="border-color: var(--border-color);">- Real NRV <b>(T-1)</b></div><div style="border-color: var(--border-color);"><span style="border-color: var(--border-color); background-color: initial;">- Forecast Load <b>(T)</b></span></div><div style="border-color: var(--border-color);"><span style="border-color: var(--border-color); background-color: initial;">- Forecast&nbsp;PV <b>(T)</b></span></div><div style="border-color: var(--border-color);"><span style="border-color: var(--border-color); background-color: initial;">- Forecast&nbsp;Wind <b>(T)</b></span></div><div style="border-color: var(--border-color);">- Forecast&nbsp;Net Position <b>(T)</b></div><div style="border-color: var(--border-color);"><span style="background-color: initial;">- QE <b>(T-1)</b></span><br></div></div>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=default;strokeWidth=2;" vertex="1" parent="XPfo9y-A51sPOulxTgxz-4">
|
||||||
|
<mxGeometry y="30" width="200" height="110" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-6" value="<font style="font-size: 14px;">Quarter T-1</font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="XPfo9y-A51sPOulxTgxz-4">
|
||||||
|
<mxGeometry x="38.46153846153845" width="123.07692307692304" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-7" value="" style="endArrow=none;dashed=1;html=1;dashPattern=1 3;strokeWidth=4;rounded=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="XPfo9y-A51sPOulxTgxz-1" target="XPfo9y-A51sPOulxTgxz-5">
|
||||||
|
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||||
|
<mxPoint x="110" y="410" as="sourcePoint" />
|
||||||
|
<mxPoint x="160" y="360" as="targetPoint" />
|
||||||
|
</mxGeometry>
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-15" value="RNN" style="rounded=1;whiteSpace=wrap;html=1;strokeWidth=2;fontStyle=1;fontSize=14;" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="-40" y="190" width="640" height="40" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-16" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.156;entryY=1.075;entryDx=0;entryDy=0;entryPerimeter=0;strokeWidth=2;" edge="1" parent="1" source="XPfo9y-A51sPOulxTgxz-2" target="XPfo9y-A51sPOulxTgxz-15">
|
||||||
|
<mxGeometry relative="1" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-17" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.844;entryY=1.05;entryDx=0;entryDy=0;entryPerimeter=0;strokeWidth=2;" edge="1" parent="1" source="XPfo9y-A51sPOulxTgxz-6" target="XPfo9y-A51sPOulxTgxz-15">
|
||||||
|
<mxGeometry relative="1" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-18" value="" style="endArrow=classic;html=1;rounded=0;strokeWidth=2;" edge="1" parent="1">
|
||||||
|
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||||
|
<mxPoint x="61" y="190" as="sourcePoint" />
|
||||||
|
<mxPoint x="61" y="140" as="targetPoint" />
|
||||||
|
</mxGeometry>
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-19" value="NRV Quantiles <b>(T-95)</b>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=14;" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="10" y="100" width="100" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-20" value="Inputs" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=15;fontStyle=1" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="-150" y="350" width="60" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-21" value="Outputs" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=15;fontStyle=1" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="-150" y="100" width="60" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-22" value="" style="endArrow=classic;html=1;rounded=0;strokeWidth=2;exitX=0.844;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="1" source="XPfo9y-A51sPOulxTgxz-15">
|
||||||
|
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||||
|
<mxPoint x="500" y="180" as="sourcePoint" />
|
||||||
|
<mxPoint x="500" y="140" as="targetPoint" />
|
||||||
|
</mxGeometry>
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="XPfo9y-A51sPOulxTgxz-24" value="NRV Quantiles <b>(T)</b>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=14;" vertex="1" parent="1">
|
||||||
|
<mxGeometry x="450" y="100" width="100" height="30" as="geometry" />
|
||||||
|
</mxCell>
|
||||||
|
</root>
|
||||||
|
</mxGraphModel>
|
||||||
|
</diagram>
|
||||||
|
</mxfile>
|
||||||
BIN
Reports/Thesis/ea-en.pdf
Normal file
BIN
Reports/Thesis/ea-nl.pdf
Normal file
BIN
Reports/Thesis/eb-en.pdf
Normal file
BIN
Reports/Thesis/images/diffusion/0*a6FugiEl0J6768W8.png
Normal file
|
After Width: | Height: | Size: 388 KiB |
|
After Width: | Height: | Size: 1.0 MiB |
BIN
Reports/Thesis/images/diffusion/diffusion_graphical_model.png
Normal file
|
After Width: | Height: | Size: 214 KiB |
|
After Width: | Height: | Size: 92 KiB |
|
After Width: | Height: | Size: 90 KiB |
|
After Width: | Height: | Size: 84 KiB |
|
After Width: | Height: | Size: 78 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 71 KiB |
|
After Width: | Height: | Size: 70 KiB |
|
After Width: | Height: | Size: 70 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 69 KiB |
|
After Width: | Height: | Size: 204 KiB |
|
After Width: | Height: | Size: 176 KiB |
|
After Width: | Height: | Size: 165 KiB |
|
After Width: | Height: | Size: 215 KiB |
|
After Width: | Height: | Size: 207 KiB |
|
After Width: | Height: | Size: 307 KiB |
|
After Width: | Height: | Size: 290 KiB |
|
After Width: | Height: | Size: 270 KiB |
|
After Width: | Height: | Size: 300 KiB |
|
After Width: | Height: | Size: 303 KiB |
|
After Width: | Height: | Size: 178 KiB |
|
After Width: | Height: | Size: 176 KiB |
|
After Width: | Height: | Size: 165 KiB |
|
After Width: | Height: | Size: 192 KiB |
|
After Width: | Height: | Size: 189 KiB |
|
After Width: | Height: | Size: 178 KiB |
|
After Width: | Height: | Size: 180 KiB |
|
After Width: | Height: | Size: 168 KiB |
|
After Width: | Height: | Size: 198 KiB |
|
After Width: | Height: | Size: 189 KiB |
|
After Width: | Height: | Size: 51 KiB |
BIN
Reports/Thesis/images/quantile_regression/crps_visualization.png
Normal file
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 196 KiB |
|
After Width: | Height: | Size: 188 KiB |
|
After Width: | Height: | Size: 185 KiB |
|
After Width: | Height: | Size: 192 KiB |
|
After Width: | Height: | Size: 201 KiB |
|
After Width: | Height: | Size: 327 KiB |
|
After Width: | Height: | Size: 342 KiB |
|
After Width: | Height: | Size: 296 KiB |
|
After Width: | Height: | Size: 346 KiB |
|
After Width: | Height: | Size: 336 KiB |
|
After Width: | Height: | Size: 243 KiB |
|
After Width: | Height: | Size: 225 KiB |
|
After Width: | Height: | Size: 214 KiB |
|
After Width: | Height: | Size: 246 KiB |
|
After Width: | Height: | Size: 242 KiB |
|
After Width: | Height: | Size: 196 KiB |
|
After Width: | Height: | Size: 188 KiB |
|
After Width: | Height: | Size: 184 KiB |
|
After Width: | Height: | Size: 196 KiB |
|
After Width: | Height: | Size: 185 KiB |
|
After Width: | Height: | Size: 103 KiB |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 89 KiB |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 89 KiB |
|
After Width: | Height: | Size: 87 KiB |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 89 KiB |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 88 KiB |
BIN
Reports/Thesis/images/quantile_regression/reconstructed_cdf.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
Reports/Thesis/images/quantile_regression/rnn/RNN_diagram.png
Normal file
|
After Width: | Height: | Size: 46 KiB |