Updated thesis

This commit is contained in:
Victor Mylle
2024-05-09 20:46:54 +00:00
parent fa03debf86
commit 2db604d2da
25 changed files with 500 additions and 282 deletions

View File

@@ -0,0 +1,47 @@
% 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
}

View File

@@ -180,4 +180,13 @@
\setcounter{Item}{0}
\setcounter{Hfootnote}{0}
\setcounter{bookmark@seq@number}{14}
\setcounter{g@acro@QR@int}{0}
\setcounter{g@acro@AQR@int}{0}
\setcounter{g@acro@NAQR@int}{0}
\setcounter{g@acro@MSE@int}{0}
\setcounter{g@acro@MAE@int}{0}
\setcounter{g@acro@CRPS@int}{0}
\setcounter{g@acro@NRV@int}{0}
\setcounter{g@acro@PV@int}{0}
\setcounter{g@acro@NP@int}{0}
}

View File

@@ -152,4 +152,13 @@
\setcounter{Item}{0}
\setcounter{Hfootnote}{0}
\setcounter{bookmark@seq@number}{1}
\setcounter{g@acro@QR@int}{0}
\setcounter{g@acro@AQR@int}{0}
\setcounter{g@acro@NAQR@int}{0}
\setcounter{g@acro@MSE@int}{0}
\setcounter{g@acro@MAE@int}{0}
\setcounter{g@acro@CRPS@int}{0}
\setcounter{g@acro@NRV@int}{0}
\setcounter{g@acro@PV@int}{0}
\setcounter{g@acro@NP@int}{0}
}

View File

@@ -154,4 +154,13 @@
\setcounter{Item}{0}
\setcounter{Hfootnote}{0}
\setcounter{bookmark@seq@number}{20}
\setcounter{g@acro@QR@int}{0}
\setcounter{g@acro@AQR@int}{0}
\setcounter{g@acro@NAQR@int}{0}
\setcounter{g@acro@MSE@int}{0}
\setcounter{g@acro@MAE@int}{0}
\setcounter{g@acro@CRPS@int}{0}
\setcounter{g@acro@NRV@int}{0}
\setcounter{g@acro@PV@int}{0}
\setcounter{g@acro@NP@int}{0}
}

View File

@@ -155,4 +155,13 @@
\setcounter{Item}{0}
\setcounter{Hfootnote}{0}
\setcounter{bookmark@seq@number}{17}
\setcounter{g@acro@QR@int}{0}
\setcounter{g@acro@AQR@int}{0}
\setcounter{g@acro@NAQR@int}{0}
\setcounter{g@acro@MSE@int}{0}
\setcounter{g@acro@MAE@int}{0}
\setcounter{g@acro@CRPS@int}{0}
\setcounter{g@acro@NRV@int}{0}
\setcounter{g@acro@PV@int}{0}
\setcounter{g@acro@NP@int}{0}
}

View File

@@ -55,6 +55,8 @@ A lot of data is available but only the most relevant data needs to be used. Exp
\section{Policies for battery optimization}
The goal of this thesis is to model the NRV data and use this to optimize the buying and selling of electricity to make a profit. Different models and methods can be used to model the NRV data which can all result in different results. To evaluate the performance of the models, the generated profit on the test set can be used as a metric. First of all, baselines are needed to be able to compare the models to if adding NRV predictions to the policies improves the profit. The baselines are already discussed in the background section. It is very important to compare the baselines and other policies fairly. The profit depends on the number of charge cycles that are used. The more charge cycles a policy uses, the more profit it will be able to make. Using too many charge cycles is bad for the health of the battery. A penalty parameter can be used to penalize the policy when too many charge cycles are used in a day. To fairly compare the policies with different models and baselines, a maximum number of charge cycles is determined for the test period. The test period starts on 01-01-2023 and ends on (TODO: check the end date). Assuming a maximum of 400 charge cycles can be used in a year, only 293 charge cycles can be used during the test period. The penalty parameter is optimized using a simple gradient descent approach to make sure only 293 charge cycles are used during the test period. The profit is then calculated using the optimized penalty parameter.
To evaluate the policies, a battery of 2 MWh is used with a maximum charge and discharge power of 1 MW. The battery is charged and discharged in quarter-hour intervals at the price of that quarter-hour.
\input{sections/results/policies/baselines}
\input{sections/results/policies/nrv_samples_policy}

View File

@@ -1 +1,40 @@
\subsection{Comparison}
After training the different models and experimenting with various hyperparameters, the performance differences between the model architectures and methods can be compared using the \ac{MSE}, \ac{MAE}, and \ac{CRPS} metrics. Visual comparisons of some examples are also provided.
% Updated table using acronyms
\begin{table}[H]
\centering
\begin{adjustbox}{width=\textwidth}
\begin{tabular}{@{}clcccccc@{}}
\toprule
Features & Method & Model & \ac{MSE} & \ac{MAE} & \ac{CRPS} & Parameters \\
\midrule
NRV & & & & & \\
& \acs{AQR} & Linear & 39222.41 & 152.49 & 91.56 & 1,261 \\
& \acs{NAQR} & Linear & 41219.98 & 152.26 & 73.97 & 121,056 \\
& & & & & \\
& \acs{AQR} & Non-Linear & 36346.57 & 144.80 & 84.51 & 422,925 \\
& \acs{NAQR} & Non-Linear & 40200.92 & 152.00 & 74.37 & 501,728 \\
& & & & & \\
& \acs{AQR} & GRU & 37681.71 & 146.62 & 83.08 & 11,829,261 \\
& \acs{NAQR} & GRU & 40917.24 & 152.04 & 76.06 & 3,007,200 \\
\midrule
NRV + Load + Wind + PV + NP (+ QE) & & & & & \\
& \acs{AQR} & Linear & 34031.71 & 142.29 & 79.99 & 6,850 \\
& \acs{NAQR} & Linear & 49132.26 & 167.37 & 78.75 & 1,079,520 \\
& & & & & \\
& \acs{AQR} & Non-Linear & 32447.41 & 137.24 & 79.22 & 524,013 \\
& \acs{NAQR} & Non-Linear & 42588.16 & 157.20 & 73.75 & 673,760 \\
& Diffusion & Non-Linear & 46448.90 & 164.50 & 81.06 & 14,229,344 \\
& & & & & \\
& \acs{AQR} & GRU & 35238.98 & 141.02 & 80.92 & 11,843,565 \\
& \acs{NAQR} & GRU & 40613.54 & 151.17 & 75.33 & 6,165,216 \\
\bottomrule
\end{tabular}
\end{adjustbox}
\caption{Comparison of the different models using the \ac{MSE}, \ac{MAE} and \ac{CRPS} metrics. The best-performing models for a certain type are selected based on the \ac{CRPS}.}
\label{tab:model_comparison}
\end{table}
A first recurring conclusion that can be made is that the \ac{NAQR} models have higher \ac{MSE} and \ac{MAE} errors but higher \ac{CRPS}. The reason for this behavior is not immediately clear. One reason for this could be the way the autoregressive quantile regression works. Autoregressive models use the previous predicted value as input to predict the next value. The autoregressive model does not know that it will be used to predict multiple values in the future. In the case of NRV modeling, a value is sampled as input for the next day. The sampling introduces an error which the model is not trained for. Because of this, the NRV distribution outputted by the model will be further away from the expected distribution. This error propagates further in the full-day NRV samples which results in a higher CRPS. The non-autoregressive models do not have this problem because they predict all values at once. The non-autoregressive models, however, have a higher \ac{MSE} and \ac{MAE} error. The model outputs a distribution for each quarter of the day. The full-day NRV sample is then generated by sampling from each of the distributions. The sampled values are independent of each other. This can result in unrealistic samples with large peaks which impact the \ac{MSE} and \ac{MAE} metrics.

View File

@@ -56,7 +56,7 @@ In Figure \ref{fig:diffusion_intermediates}, multiple intermediate steps of the
& 300 & 3 & 1024 & 47815.13 & 167.22 & 81.16 \\
& 300 & 3 & 2048 & 46448.90 & 164.50 & 81.06 \\
& 300 & 4 & 1024 & 47483.05 & 166.97 & 81.32 \\
& 300 & 4 & 2048 & 47076.77 & 166.06 & 81.05 \\
& 300 & 4 & 2048 & 47076.77 & 166.06 & 81.06 \\
\bottomrule
\end{tabular}

View File

@@ -1,18 +1,18 @@
\subsection{Baselines}
As discussed earlier, the most simple baseline that can be used is choosing two fixed thresholds. One threshold is used to buy electricity and the other threshold is used to sell electricity. The thresholds can be chosen based on the available historical data. A simple grid search is done over multiple combinations of thresholds. For each combination, the penalty parameter is optimized to make sure only 400 charge cycles are used in a year. The thresholds that achieve the highest profit on the training set are then used to evaluate the policy on the test set. The thresholds found that maximize the profit on the training set are 100€/MWh for buying and 200€/MWh for selling. Evaluating these thresholds on the test set results in a profit of €266,294.15 but using 492.0 charge cycles. This can not be used to fairly compare other policies. The thresholds can also be determined on the test set itself to find what the maximum possible profit is for the fixed thresholds policy. This can not be used in practice because the thresholds are determined on future data. It is, however, useful for the comparison of the other policies. The best thresholds found on the test set are 200€/MWh for buying and 250€/MWh for selling. The profit achieved using these thresholds is €143,004.34 with 287.12 charge cycles.
Another baseline that can be used is using the real NRV data of the previous day to determine the buying and selling thresholds for the next day. The NRV data of the previous day can be seen as a prediction for the NRV data of the next day. Now, the thresholds are not fixed anymore but are determined based on the NRV predictions. The thresholds are determined separately for each day using a simple grid search which allows the policy to adapt to the changing NRV data. The penalty parameter is also optimized to make sure only around 283 charge cycles are used. The profit achieved using this policy is €198,807.09 using 283.5 charge cycles.
Another baseline that can be used is using the real \ac{NRV} data of the previous day to determine the buying and selling thresholds for the next day. The \ac{NRV} data of the previous day can be seen as a prediction for the \ac{NRV} data of the next day. Now, the thresholds are not fixed anymore but are determined based on the \ac{NRV} predictions. The thresholds are determined separately for each day using a simple grid search which allows the policy to adapt to the changing \ac{NRV} data. The penalty parameter is also optimized to make sure only around 283 charge cycles are used. The profit achieved using this policy is €198,807.09 using 283.5 charge cycles.
The baseline policy using the NRV data of the day before as a prediction can be adapted to use the real NRV data of the day that is being optimized. This policy can show the maximum profit that can be achieved if a perfect NRV prediction is made. The profit for the policy using a perfect prediction of the NRV is €230,317.84 using 282.5 charge cycles. This policy can be seen as the upper bound for the other policies. To achieve better profit results than this, more complex policies need to be used. \\
The baseline policy using the \ac{NRV} data of the day before as a prediction can be adapted to use the real \ac{NRV} data of the day that is being optimized. This policy can show the maximum profit that can be achieved if a perfect \ac{NRV} prediction is made. The profit for the policy using a perfect prediction of the \ac{NRV} is €230,317.84 using 282.5 charge cycles. This policy can be seen as the upper bound for the other policies. To achieve better profit results than this, more complex policies need to be used. \\
\begin{table}[H]
\centering
\begin{tabular}{|l|l|l|l|}
\begin{tabular}{|l|c|c|}
\hline
\textbf{Policy} & \textbf{Profit (€)} & \textbf{Charge cycles} \\ \hline
\textbf{Baseline Policy} & \textbf{Profit (€)} & \textbf{Charge cycles} \\ \hline
Fixed thresholds & 143,004.34 & 287.12\\ \hline
Yesterday NRV & 198,807.09 & 283.5\\ \hline
Perfect NRV & 230,317.84 & 282.5\\ \hline
Yesterday \ac{NRV} & 198,807.09 & 283.5\\ \hline
Perfect \ac{NRV} & 230,317.84 & 282.5\\ \hline
\end{tabular}
\caption{Results of the baseline policies on the test set. }

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -17,6 +17,9 @@
\providecommand\HyField@AuxAddToFields[1]{}
\providecommand\HyField@AuxAddToCoFields[2]{}
\providecommand \oddpage@label [2]{}
\@writefile{toc}{\acswitchoff }
\@writefile{lof}{\acswitchoff }
\@writefile{lot}{\acswitchoff }
\babel@aux{english}{}
\@input{sections/introduction.aux}
\@input{sections/background.aux}
@@ -85,19 +88,56 @@
\@writefile{lot}{\contentsline {table}{\numberline {9}{\ignorespaces Non-linear quantile regression model results. All the models used a dropout of 0.2 .\relax }}{38}{table.caption.24}\protected@file@percent }
\newlabel{tab:diffusion_results}{{9}{38}{Non-linear quantile regression model results. All the models used a dropout of 0.2 .\relax }{table.caption.24}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4}Comparison}{38}{subsection.6.4}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {7}Policies for battery optimization}{39}{section.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1}Baselines}{39}{subsection.7.1}\protected@file@percent }
\@writefile{lot}{\contentsline {table}{\numberline {10}{\ignorespaces Results of the baseline policies on the test set. \relax }}{40}{table.caption.25}\protected@file@percent }
\newlabel{tab:fixed_thresholds}{{10}{40}{Results of the baseline policies on the test set. \relax }{table.caption.25}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2}Policy using generated NRV samples}{40}{subsection.7.2}\protected@file@percent }
\abx@aux@page{6}{41}
\abx@aux@page{7}{41}
\abx@aux@page{8}{41}
\abx@aux@page{9}{41}
\ACRO{recordpage}{MSE}{39}{1}{38}
\ACRO{recordpage}{MAE}{39}{1}{38}
\ACRO{recordpage}{CRPS}{39}{1}{38}
\@writefile{lot}{\contentsline {table}{\numberline {10}{\ignorespaces Comparison of the different models using the \ac {MSE}, \ac {MAE} and \ac {CRPS} metrics. The best-performing models for a certain type are selected based on the \ac {CRPS}.\relax }}{39}{table.caption.25}\protected@file@percent }
\newlabel{tab:model_comparison}{{10}{39}{Comparison of the different models using the \ac {MSE}, \ac {MAE} and \ac {CRPS} metrics. The best-performing models for a certain type are selected based on the \ac {CRPS}.\relax }{table.caption.25}{}}
\ACRO{recordpage}{NAQR}{40}{1}{39}
\ACRO{recordpage}{MSE}{40}{1}{39}
\ACRO{recordpage}{MAE}{40}{1}{39}
\ACRO{recordpage}{CRPS}{40}{1}{39}
\ACRO{recordpage}{MSE}{40}{1}{39}
\ACRO{recordpage}{MAE}{40}{1}{39}
\ACRO{recordpage}{MSE}{40}{1}{39}
\ACRO{recordpage}{MAE}{40}{1}{39}
\@writefile{toc}{\contentsline {section}{\numberline {7}Policies for battery optimization}{40}{section.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1}Baselines}{40}{subsection.7.1}\protected@file@percent }
\ACRO{recordpage}{NRV}{41}{1}{40}
\ACRO{recordpage}{NRV}{41}{1}{40}
\ACRO{recordpage}{NRV}{42}{1}{41}
\ACRO{recordpage}{NRV}{42}{1}{41}
\ACRO{recordpage}{NRV}{42}{1}{41}
\ACRO{recordpage}{NRV}{42}{1}{41}
\ACRO{recordpage}{NRV}{42}{1}{41}
\ACRO{recordpage}{NRV}{42}{1}{41}
\ACRO{recordpage}{NRV}{42}{1}{41}
\@writefile{lot}{\contentsline {table}{\numberline {11}{\ignorespaces Results of the baseline policies on the test set. \relax }}{41}{table.caption.26}\protected@file@percent }
\newlabel{tab:fixed_thresholds}{{11}{41}{Results of the baseline policies on the test set. \relax }{table.caption.26}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2}Policy using generated NRV samples}{41}{subsection.7.2}\protected@file@percent }
\ACRO{total-barriers}{1}
\abx@aux@page{6}{43}
\abx@aux@page{7}{43}
\abx@aux@page{8}{43}
\abx@aux@page{9}{43}
\ACRO{usage}{QR=={0}}
\ACRO{usage}{AQR=={0}}
\ACRO{usage}{NAQR=={1}}
\ACRO{usage}{MSE=={4}}
\ACRO{usage}{MAE=={4}}
\ACRO{usage}{CRPS=={2}}
\ACRO{usage}{NRV=={9}}
\ACRO{usage}{PV=={0}}
\ACRO{usage}{NP=={0}}
\ACRO{pages}{NAQR=={40@1@39}}
\ACRO{pages}{CRPS=={39@1@38|40@1@39}}
\ACRO{pages}{MSE=={39@1@38|40@1@39}}
\ACRO{pages}{MAE=={39@1@38|40@1@39}}
\ACRO{pages}{NRV=={41@1@40|42@1@41}}
\abx@aux@read@bbl@mdfivesum{5DC935CC8C8FAB8A3CAF97A486ED2386}
\abx@aux@read@bblrerun
\abx@aux@defaultrefcontext{0}{dumas_deep_2022}{nyt/global//global/global}
\abx@aux@defaultrefcontext{0}{lu_scenarios_2022}{nyt/global//global/global}
\abx@aux@defaultrefcontext{0}{poggi_electricity_2023}{nyt/global//global/global}
\abx@aux@defaultrefcontext{0}{weron_electricity_2014}{nyt/global//global/global}
\gdef \@abspage@last{42}
\gdef \@abspage@last{44}

View File

@@ -1,4 +1,4 @@
This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023) (preloaded format=pdflatex 2023.9.17) 9 MAY 2024 13:55
This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023) (preloaded format=pdflatex 2023.9.17) 9 MAY 2024 18:19
entering extended mode
restricted \write18 enabled.
file:line:error style messages enabled.
@@ -620,18 +620,66 @@ File: pgfmodulematrix.code.tex 2023-01-15 v3.1.10 (3.1.10)
\tikz@expandcount=\count315
(/usr/local/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex
File: tikzlibrarytopaths.code.tex 2023-01-15 v3.1.10 (3.1.10)
))) (/usr/local/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypositioning.code.tex
))) (/usr/local/texlive/2023/texmf-dist/tex/latex/acro/acro.sty (/usr/local/texlive/2023/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty (/usr/local/texlive/2023/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2023-02-22 L3 programming layer (loader)
(/usr/local/texlive/2023/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
File: l3backend-pdftex.def 2023-01-16 L3 backend support: PDF output (pdfTeX)
\l__color_backend_stack_int=\count316
\l__pdf_internal_box=\box73
))
Package: l3keys2e 2023-02-02 LaTeX2e option processing using LaTeX3 keys
)
Package: acro 2022/04/01 v3.8 typeset acronyms and other abbreviations (CN)
\l__acro_tmpa_int=\count317
\l__acro_tmpb_int=\count318
\l__acro_tmpc_int=\count319
\l__acro_tmpd_int=\count320
Loading module `base' ...
Loading module `interface' ...
Loading module `aux' ...
Loading module `properties' ...
Loading module `acronyms' ...
Loading module `formatting' ...
Loading module `ppfixes' ...
Loading module `tools' ...
\l__acro_minimal_usage_int=\count321
\l__acro_nest_int=\count322
\g_acro_barrier_int=\count323
\g_acro_barrier_total_int=\count324
Loading module `commands' ...
\l_acro_nest_level_int=\count325
Loading module `templates' ...
Loading module `list' ...
Loading module `pages' ...
\l__acro_pages_seq_threshold_int=\count326
Loading module `locale' ...
(/usr/local/texlive/2023/texmf-dist/tex/latex/translations/translations.sty
Package: translations 2022/02/05 v1.12 internationalization of LaTeX2e packages (CN)
(/usr/local/texlive/2023/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO)
(/usr/local/texlive/2023/texmf-dist/tex/generic/infwarerr/infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
))
Loading module `pdfsupport' ...
Loading module `patch' ...
Loading module `definitions' ...
Loading module `upgrade' ...
) (/usr/local/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypositioning.code.tex
File: tikzlibrarypositioning.code.tex 2023-01-15 v3.1.10 (3.1.10)
) (/usr/local/texlive/2023/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarycalc.code.tex
File: tikzlibrarycalc.code.tex 2023-01-15 v3.1.10 (3.1.10)
) (/usr/local/texlive/2023/texmf-dist/tex/generic/babel/babel.sty
Package: babel 2023/02/13 3.86 The Babel package
\babel@savecnt=\count316
\babel@savecnt=\count327
\U@D=\dimen325
\l@unhyphenated=\language87
(/usr/local/texlive/2023/texmf-dist/tex/generic/babel/txtbabel.def)
\bbl@readstream=\read4
\bbl@dirlevel=\count317
\bbl@dirlevel=\count328
(/usr/local/texlive/2023/texmf-dist/tex/generic/babel-english/english.ldf
Language: english 2017/06/06 v3.3r English support from the babel system
Package babel Info: Hyphen rules for 'canadian' set to \l@english
@@ -645,17 +693,9 @@ Package babel Info: Importing font and identification data for english
(babel) from babel-en.ini. Reported on input line 11.
) (/usr/local/texlive/2023/texmf-dist/tex/latex/biblatex/biblatex.sty
Package: biblatex 2023/03/05 v3.19 programmable bibliographies (PK/MW)
(/usr/local/texlive/2023/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO)
(/usr/local/texlive/2023/texmf-dist/tex/generic/infwarerr/infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
) (/usr/local/texlive/2023/texmf-dist/tex/latex/logreq/logreq.sty
(/usr/local/texlive/2023/texmf-dist/tex/latex/logreq/logreq.sty
Package: logreq 2010/08/04 v1.0 xml request logger
\lrq@indent=\count318
\lrq@indent=\count329
(/usr/local/texlive/2023/texmf-dist/tex/latex/logreq/logreq.def
File: logreq.def 2010/08/04 v1.0 logreq spec v1.0
)) (/usr/local/texlive/2023/texmf-dist/tex/latex/base/ifthen.sty
@@ -664,49 +704,49 @@ Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC)
\Urlmuskip=\muskip17
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
\c@tabx@nest=\count319
\c@listtotal=\count320
\c@listcount=\count321
\c@liststart=\count322
\c@liststop=\count323
\c@citecount=\count324
\c@citetotal=\count325
\c@multicitecount=\count326
\c@multicitetotal=\count327
\c@instcount=\count328
\c@maxnames=\count329
\c@minnames=\count330
\c@maxitems=\count331
\c@minitems=\count332
\c@citecounter=\count333
\c@maxcitecounter=\count334
\c@savedcitecounter=\count335
\c@uniquelist=\count336
\c@uniquename=\count337
\c@refsection=\count338
\c@refsegment=\count339
\c@maxextratitle=\count340
\c@maxextratitleyear=\count341
\c@maxextraname=\count342
\c@maxextradate=\count343
\c@maxextraalpha=\count344
\c@abbrvpenalty=\count345
\c@highnamepenalty=\count346
\c@lownamepenalty=\count347
\c@maxparens=\count348
\c@parenlevel=\count349
\blx@tempcnta=\count350
\blx@tempcntb=\count351
\blx@tempcntc=\count352
\c@blx@maxsection=\count353
\blx@maxsegment@0=\count354
\blx@notetype=\count355
\blx@parenlevel@text=\count356
\blx@parenlevel@foot=\count357
\blx@sectionciteorder@0=\count358
\blx@sectionciteorderinternal@0=\count359
\blx@entrysetcounter=\count360
\blx@biblioinstance=\count361
\c@tabx@nest=\count330
\c@listtotal=\count331
\c@listcount=\count332
\c@liststart=\count333
\c@liststop=\count334
\c@citecount=\count335
\c@citetotal=\count336
\c@multicitecount=\count337
\c@multicitetotal=\count338
\c@instcount=\count339
\c@maxnames=\count340
\c@minnames=\count341
\c@maxitems=\count342
\c@minitems=\count343
\c@citecounter=\count344
\c@maxcitecounter=\count345
\c@savedcitecounter=\count346
\c@uniquelist=\count347
\c@uniquename=\count348
\c@refsection=\count349
\c@refsegment=\count350
\c@maxextratitle=\count351
\c@maxextratitleyear=\count352
\c@maxextraname=\count353
\c@maxextradate=\count354
\c@maxextraalpha=\count355
\c@abbrvpenalty=\count356
\c@highnamepenalty=\count357
\c@lownamepenalty=\count358
\c@maxparens=\count359
\c@parenlevel=\count360
\blx@tempcnta=\count361
\blx@tempcntb=\count362
\blx@tempcntc=\count363
\c@blx@maxsection=\count364
\blx@maxsegment@0=\count365
\blx@notetype=\count366
\blx@parenlevel@text=\count367
\blx@parenlevel@foot=\count368
\blx@sectionciteorder@0=\count369
\blx@sectionciteorderinternal@0=\count370
\blx@entrysetcounter=\count371
\blx@biblioinstance=\count372
\labelnumberwidth=\skip68
\labelalphawidth=\skip69
\biblabelsep=\skip70
@@ -718,9 +758,9 @@ Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
\blx@bcfin=\read5
\blx@bcfout=\write4
\blx@langwohyphens=\language88
\c@mincomprange=\count362
\c@maxcomprange=\count363
\c@mincompwidth=\count364
\c@mincomprange=\count373
\c@maxcomprange=\count374
\c@mincompwidth=\count375
Package biblatex Info: Trying to load biblatex default data model...
Package biblatex Info: ... file 'blx-dm.def' found.
(/usr/local/texlive/2023/texmf-dist/tex/latex/biblatex/blx-dm.def
@@ -733,84 +773,84 @@ File: apa.dbx 2022/06/22 v9.16 APA biblatex style data model
)
Package biblatex Info: Trying to load biblatex custom data model...
Package biblatex Info: ... file 'biblatex-dm.cfg' not found.
\c@afterword=\count365
\c@savedafterword=\count366
\c@annotator=\count367
\c@savedannotator=\count368
\c@author=\count369
\c@savedauthor=\count370
\c@bookauthor=\count371
\c@savedbookauthor=\count372
\c@commentator=\count373
\c@savedcommentator=\count374
\c@editor=\count375
\c@savededitor=\count376
\c@editora=\count377
\c@savededitora=\count378
\c@editorb=\count379
\c@savededitorb=\count380
\c@editorc=\count381
\c@savededitorc=\count382
\c@foreword=\count383
\c@savedforeword=\count384
\c@holder=\count385
\c@savedholder=\count386
\c@introduction=\count387
\c@savedintroduction=\count388
\c@namea=\count389
\c@savednamea=\count390
\c@nameb=\count391
\c@savednameb=\count392
\c@namec=\count393
\c@savednamec=\count394
\c@translator=\count395
\c@savedtranslator=\count396
\c@shortauthor=\count397
\c@savedshortauthor=\count398
\c@shorteditor=\count399
\c@savedshorteditor=\count400
\c@narrator=\count401
\c@savednarrator=\count402
\c@execproducer=\count403
\c@savedexecproducer=\count404
\c@execdirector=\count405
\c@savedexecdirector=\count406
\c@with=\count407
\c@savedwith=\count408
\c@labelname=\count409
\c@savedlabelname=\count410
\c@institution=\count411
\c@savedinstitution=\count412
\c@lista=\count413
\c@savedlista=\count414
\c@listb=\count415
\c@savedlistb=\count416
\c@listc=\count417
\c@savedlistc=\count418
\c@listd=\count419
\c@savedlistd=\count420
\c@liste=\count421
\c@savedliste=\count422
\c@listf=\count423
\c@savedlistf=\count424
\c@location=\count425
\c@savedlocation=\count426
\c@organization=\count427
\c@savedorganization=\count428
\c@origlocation=\count429
\c@savedoriglocation=\count430
\c@origpublisher=\count431
\c@savedorigpublisher=\count432
\c@publisher=\count433
\c@savedpublisher=\count434
\c@language=\count435
\c@savedlanguage=\count436
\c@origlanguage=\count437
\c@savedoriglanguage=\count438
\c@citation=\count439
\c@savedcitation=\count440
\c@pageref=\count441
\c@savedpageref=\count442
\c@afterword=\count376
\c@savedafterword=\count377
\c@annotator=\count378
\c@savedannotator=\count379
\c@author=\count380
\c@savedauthor=\count381
\c@bookauthor=\count382
\c@savedbookauthor=\count383
\c@commentator=\count384
\c@savedcommentator=\count385
\c@editor=\count386
\c@savededitor=\count387
\c@editora=\count388
\c@savededitora=\count389
\c@editorb=\count390
\c@savededitorb=\count391
\c@editorc=\count392
\c@savededitorc=\count393
\c@foreword=\count394
\c@savedforeword=\count395
\c@holder=\count396
\c@savedholder=\count397
\c@introduction=\count398
\c@savedintroduction=\count399
\c@namea=\count400
\c@savednamea=\count401
\c@nameb=\count402
\c@savednameb=\count403
\c@namec=\count404
\c@savednamec=\count405
\c@translator=\count406
\c@savedtranslator=\count407
\c@shortauthor=\count408
\c@savedshortauthor=\count409
\c@shorteditor=\count410
\c@savedshorteditor=\count411
\c@narrator=\count412
\c@savednarrator=\count413
\c@execproducer=\count414
\c@savedexecproducer=\count415
\c@execdirector=\count416
\c@savedexecdirector=\count417
\c@with=\count418
\c@savedwith=\count419
\c@labelname=\count420
\c@savedlabelname=\count421
\c@institution=\count422
\c@savedinstitution=\count423
\c@lista=\count424
\c@savedlista=\count425
\c@listb=\count426
\c@savedlistb=\count427
\c@listc=\count428
\c@savedlistc=\count429
\c@listd=\count430
\c@savedlistd=\count431
\c@liste=\count432
\c@savedliste=\count433
\c@listf=\count434
\c@savedlistf=\count435
\c@location=\count436
\c@savedlocation=\count437
\c@organization=\count438
\c@savedorganization=\count439
\c@origlocation=\count440
\c@savedoriglocation=\count441
\c@origpublisher=\count442
\c@savedorigpublisher=\count443
\c@publisher=\count444
\c@savedpublisher=\count445
\c@language=\count446
\c@savedlanguage=\count447
\c@origlanguage=\count448
\c@savedoriglanguage=\count449
\c@citation=\count450
\c@savedcitation=\count451
\c@pageref=\count452
\c@savedpageref=\count453
\shorthandwidth=\skip76
\shortjournalwidth=\skip77
\shortserieswidth=\skip78
@@ -834,19 +874,19 @@ Package biblatex Info: Trying to load generic definitions...
Package biblatex Info: ... file 'biblatex.def' found.
(/usr/local/texlive/2023/texmf-dist/tex/latex/biblatex/biblatex.def
File: biblatex.def 2023/03/05 v3.19 biblatex compatibility (PK/MW)
\c@textcitecount=\count443
\c@textcitetotal=\count444
\c@textcitemaxnames=\count445
\c@biburlbigbreakpenalty=\count446
\c@biburlbreakpenalty=\count447
\c@biburlnumpenalty=\count448
\c@biburlucpenalty=\count449
\c@biburllcpenalty=\count450
\c@textcitecount=\count454
\c@textcitetotal=\count455
\c@textcitemaxnames=\count456
\c@biburlbigbreakpenalty=\count457
\c@biburlbreakpenalty=\count458
\c@biburlnumpenalty=\count459
\c@biburlucpenalty=\count460
\c@biburllcpenalty=\count461
\biburlbigskip=\muskip18
\biburlnumskip=\muskip19
\biburlucskip=\muskip20
\biburllcskip=\muskip21
\c@smartand=\count451
\c@smartand=\count462
)
Package biblatex Info: Trying to load bibliography style 'apa'...
Package biblatex Info: ... file 'apa.bbx' found.
@@ -856,8 +896,8 @@ Package biblatex Info: Trying to load bibliography style 'standard'...
Package biblatex Info: ... file 'standard.bbx' found.
(/usr/local/texlive/2023/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
File: standard.bbx 2023/03/05 v3.19 biblatex bibliography style (PK/MW)
\c@bbx:relatedcount=\count452
\c@bbx:relatedtotal=\count453
\c@bbx:relatedcount=\count463
\c@bbx:relatedtotal=\count464
)
Package biblatex Info: Delimiter 'nameyeardelim' in context 'bib' already defined, overwriting.
Package biblatex Info: Delimiter 'nameyeardelim' in context 'biblist' already defined, overwriting.
@@ -893,13 +933,6 @@ File: biblatex.cfg
)
Package biblatex Info: Input encoding 'utf8' detected.
Package biblatex Info: Document encoding is UTF8 ....
(/usr/local/texlive/2023/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2023-02-22 L3 programming layer (loader)
(/usr/local/texlive/2023/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
File: l3backend-pdftex.def 2023-01-16 L3 backend support: PDF output (pdfTeX)
\l__color_backend_stack_int=\count454
\l__pdf_internal_box=\box73
))
Package biblatex Info: ... and expl3
(biblatex) 2023-02-22 L3 programming layer (loader)
(biblatex) is new enough (at least 2020/04/06),
@@ -910,12 +943,12 @@ Package: xparse 2023-02-02 L3 Experimental document command parser
Package: blx-case-expl3 2023/03/05 v3.19 expl3 case changing code for biblatex
)) (/usr/local/texlive/2023/texmf-dist/tex/latex/csquotes/csquotes.sty
Package: csquotes 2022-09-14 v5.2n context-sensitive quotations (JAW)
\csq@reset=\count455
\csq@gtype=\count456
\csq@glevel=\count457
\csq@qlevel=\count458
\csq@maxlvl=\count459
\csq@tshold=\count460
\csq@reset=\count465
\csq@gtype=\count466
\csq@glevel=\count467
\csq@qlevel=\count468
\csq@maxlvl=\count469
\csq@tshold=\count470
\csq@ltx@everypar=\toks48
(/usr/local/texlive/2023/texmf-dist/tex/latex/csquotes/csquotes.def
File: csquotes.def 2022-09-14 v5.2n csquotes generic definitions (JAW)
@@ -943,11 +976,11 @@ Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
) (/usr/local/texlive/2023/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
)
\c@section@level=\count461
\c@section@level=\count471
)
\@linkdim=\dimen326
\Hy@linkcounter=\count462
\Hy@pagecounter=\count463
\Hy@linkcounter=\count472
\Hy@pagecounter=\count473
(/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2023-02-07 v7.00v Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
@@ -957,7 +990,7 @@ Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
) (/usr/local/texlive/2023/texmf-dist/tex/generic/etexcmds/etexcmds.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count464
\Hy@SavedSpaceFactor=\count474
(/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2023-02-07 v7.00v Hyperref: PDF Unicode definition (HO)
Now handling font encoding PU ...
@@ -971,15 +1004,16 @@ Package hyperref Info: Plain pages OFF on input line 4192.
Package hyperref Info: Backreferencing OFF on input line 4197.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4425.
\c@Hy@tempcnt=\count465
\c@Hy@tempcnt=\count475
LaTeX Info: Redefining \url on input line 4763.
\XeTeXLinkMargin=\dimen327
(/usr/local/texlive/2023/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(/usr/local/texlive/2023/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
(/usr/local/texlive/2023/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO)
))
\Fld@menulength=\count466
\Fld@menulength=\count476
\Field@Width=\dimen328
\Fld@charsize=\dimen329
Package hyperref Info: Hyper figures OFF on input line 6042.
@@ -993,20 +1027,19 @@ Package hyperref Info: PDF/A mode OFF on input line 6072.
Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
package with kernel methods
)
\Hy@abspage=\count467
\c@Item=\count468
\c@Hfootnote=\count469
\Hy@abspage=\count477
\c@Item=\count478
\c@Hfootnote=\count479
)
Package hyperref Info: Driver (autodetected): hpdftex.
(/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2023-02-07 v7.00v Hyperref driver for pdfTeX
(/usr/local/texlive/2023/texmf-dist/tex/latex/base/atveryend-ltx.sty
(/usr/local/texlive/2023/texmf-dist/tex/latex/base/atveryend-ltx.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend package
with kernel methods
)
\Fld@listcount=\count470
\c@bookmark@seq@number=\count471
\Fld@listcount=\count480
\c@bookmark@seq@number=\count481
(/usr/local/texlive/2023/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)
(/usr/local/texlive/2023/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
@@ -1023,55 +1056,65 @@ Package: parskip 2021-03-14 v2.0h non-zero parskip adjustments
\UL@skip=\skip91
\UL@hook=\toks49
\UL@height=\dimen330
\UL@pe=\count472
\UL@pe=\count482
\UL@pixel=\dimen331
\ULC@box=\box76
Package: ulem 2019/11/18
\ULdepth=\dimen332
) (./acronyms.tex
\c@g@acro@QR@int=\count483
\c@g@acro@AQR@int=\count484
\c@g@acro@NAQR@int=\count485
\c@g@acro@MSE@int=\count486
\c@g@acro@MAE@int=\count487
\c@g@acro@CRPS@int=\count488
\c@g@acro@NRV@int=\count489
\c@g@acro@PV@int=\count490
\c@g@acro@NP@int=\count491
)
Package csquotes Info: Checking for multilingual support...
Package csquotes Info: ... found 'babel' package.
Package csquotes Info: Adjusting default style.
Package csquotes Info: Redefining alias 'default' -> 'english'.
LaTeX Font Info: Trying to load font information for T1+LinuxLibertineT-TLF on input line 129.
LaTeX Font Info: Trying to load font information for T1+LinuxLibertineT-TLF on input line 132.
(/usr/local/texlive/2023/texmf-dist/tex/latex/libertine/T1LinuxLibertineT-TLF.fd
File: T1LinuxLibertineT-TLF.fd 2017/03/20 (autoinst) Font definitions for T1/LinuxLibertineT-TLF.
)
LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be
(Font) scaled to size 12.0pt on input line 129.
(Font) scaled to size 12.0pt on input line 132.
(./verslag.aux (./sections/introduction.aux) (./sections/background.aux) (./sections/policies.aux) (./sections/literature_study.aux))
\openout1 = `verslag.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 129.
LaTeX Font Info: ... okay on input line 129.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 129.
LaTeX Font Info: ... okay on input line 129.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 129.
LaTeX Font Info: ... okay on input line 129.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 129.
LaTeX Font Info: ... okay on input line 129.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 129.
LaTeX Font Info: ... okay on input line 129.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 129.
LaTeX Font Info: ... okay on input line 129.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 129.
LaTeX Font Info: ... okay on input line 129.
LaTeX Font Info: Checking defaults for LS1/libertinust1math/m/n on input line 129.
LaTeX Font Info: Trying to load font information for LS1+libertinust1math on input line 129.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 132.
LaTeX Font Info: ... okay on input line 132.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 132.
LaTeX Font Info: ... okay on input line 132.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 132.
LaTeX Font Info: ... okay on input line 132.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 132.
LaTeX Font Info: ... okay on input line 132.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 132.
LaTeX Font Info: ... okay on input line 132.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 132.
LaTeX Font Info: ... okay on input line 132.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 132.
LaTeX Font Info: ... okay on input line 132.
LaTeX Font Info: Checking defaults for LS1/libertinust1math/m/n on input line 132.
LaTeX Font Info: Trying to load font information for LS1+libertinust1math on input line 132.
(/usr/local/texlive/2023/texmf-dist/tex/latex/libertinust1math/ls1libertinust1math.fd
File: ls1libertinust1math.fd 2016/03/23 Fontinst v1.933 font definitions for LS1/libertinust1math.
)
LaTeX Font Info: ... okay on input line 129.
LaTeX Font Info: Checking defaults for LS2/libertinust1mathsym/m/n on input line 129.
LaTeX Font Info: Trying to load font information for LS2+libertinust1mathsym on input line 129.
LaTeX Font Info: ... okay on input line 132.
LaTeX Font Info: Checking defaults for LS2/libertinust1mathsym/m/n on input line 132.
LaTeX Font Info: Trying to load font information for LS2+libertinust1mathsym on input line 132.
(/usr/local/texlive/2023/texmf-dist/tex/latex/libertinust1math/ls2libertinust1mathsym.fd
File: ls2libertinust1mathsym.fd 2015/04/17 v1.1.2-latex LibertinusT1Mathsym LS2 font definitions
)
LaTeX Font Info: ... okay on input line 129.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 129.
LaTeX Font Info: ... okay on input line 129.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 129.
LaTeX Font Info: ... okay on input line 129.
LaTeX Font Info: ... okay on input line 132.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 132.
LaTeX Font Info: ... okay on input line 132.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 132.
LaTeX Font Info: ... okay on input line 132.
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
@@ -1109,16 +1152,16 @@ LaTeX Font Info: ... okay on input line 129.
(/usr/local/texlive/2023/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count473
\scratchcounter=\count492
\scratchdimen=\dimen333
\scratchbox=\box77
\nofMPsegments=\count474
\nofMParguments=\count475
\nofMPsegments=\count493
\nofMParguments=\count494
\everyMPshowfont=\toks50
\MPscratchCnt=\count476
\MPscratchCnt=\count495
\MPscratchDim=\dimen334
\MPnumerator=\count477
\makeMPintoPDFobject=\count478
\MPnumerator=\count496
\makeMPintoPDFobject=\count497
\everyMPtoPDFconversion=\toks51
) (/usr/local/texlive/2023/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
@@ -1126,13 +1169,17 @@ Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 48
(/usr/local/texlive/2023/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live
))
\c@mv@tabular=\count479
\c@mv@boldtabular=\count480
LaTeX Info: Command `\dddot' is already robust on input line 129.
LaTeX Info: Command `\ddddot' is already robust on input line 129.
\c@mv@tabular=\count498
\c@mv@boldtabular=\count499
LaTeX Info: Command `\dddot' is already robust on input line 132.
LaTeX Info: Command `\ddddot' is already robust on input line 132.
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: hyperref package is loaded.
Package caption Info: End \AtBeginDocument code.
(/usr/local/texlive/2023/texmf-dist/tex/latex/translations/translations-basic-dictionary-english.trsl
File: translations-basic-dictionary-english.trsl (english translation file `translations-basic-dictionary')
)
Package translations Info: loading dictionary `translations-basic-dictionary' for `english'. on input line 132.
Package biblatex Info: Trying to load language 'english' -> 'english-apa'...
Package biblatex Info: ... file 'english-apa.lbx' found.
(/usr/local/texlive/2023/texmf-dist/tex/latex/biblatex-apa/english-apa.lbx
@@ -1163,9 +1210,9 @@ Package biblatex Info: Automatic encoding selection.
Package biblatex Info: Trying to load bibliographic data...
Package biblatex Info: ... file 'verslag.bbl' found.
(./verslag.bbl)
Package biblatex Info: Reference section=0 on input line 129.
Package biblatex Info: Reference segment=0 on input line 129.
Package hyperref Info: Link coloring ON on input line 129.
Package biblatex Info: Reference section=0 on input line 132.
Package biblatex Info: Reference segment=0 on input line 132.
Package hyperref Info: Link coloring ON on input line 132.
(./verslag.out) (./verslag.out)
\@outlinefile=\write5
\openout5 = `verslag.out'.
@@ -1202,85 +1249,85 @@ Package hyperref Info: Link coloring ON on input line 129.
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
LaTeX Font Info: Trying to load font information for T1+LinuxBiolinumT-TLF on input line 137.
LaTeX Font Info: Trying to load font information for T1+LinuxBiolinumT-TLF on input line 139.
(/usr/local/texlive/2023/texmf-dist/tex/latex/libertine/T1LinuxBiolinumT-TLF.fd
File: T1LinuxBiolinumT-TLF.fd 2017/03/20 (autoinst) Font definitions for T1/LinuxBiolinumT-TLF.
)
LaTeX Font Info: Font shape `T1/LinuxBiolinumT-TLF/m/n' will be
(Font) scaled to size 12.0pt on input line 137.
(Font) scaled to size 12.0pt on input line 139.
pdfTeX warning: pdflatex (file ./ea-en.pdf): PDF inclusion: found PDF version <1.7>, but at most version <1.5> allowed
<ea-en.pdf, id=131, 192.05753pt x 64.01918pt>
File: ea-en.pdf Graphic file (type pdf)
<use ea-en.pdf>
Package pdftex.def Info: ea-en.pdf used on input line 137.
Package pdftex.def Info: ea-en.pdf used on input line 139.
(pdftex.def) Requested size: 271.63632pt x 90.54071pt.
LaTeX Font Info: Font shape `T1/LinuxBiolinumT-TLF/b/n' will be
(Font) scaled to size 12.0pt on input line 137.
(Font) scaled to size 12.0pt on input line 139.
LaTeX Font Info: Font shape `T1/LinuxBiolinumT-TLF/b/n' will be
(Font) scaled to size 24.88pt on input line 137.
(Font) scaled to size 24.88pt on input line 139.
LaTeX Font Info: Font shape `T1/LinuxBiolinumT-TLF/b/n' will be
(Font) scaled to size 17.28pt on input line 137.
(Font) scaled to size 17.28pt on input line 139.
LaTeX Font Info: Font shape `LS1/libertinust1math/m/n' will be
(Font) scaled to size 12.0pt on input line 137.
(Font) scaled to size 12.0pt on input line 139.
LaTeX Font Info: Font shape `LS1/libertinust1math/m/n' will be
(Font) scaled to size 8.0pt on input line 137.
(Font) scaled to size 8.0pt on input line 139.
LaTeX Font Info: Font shape `LS1/libertinust1math/m/n' will be
(Font) scaled to size 6.0pt on input line 137.
(Font) scaled to size 6.0pt on input line 139.
LaTeX Font Info: Font shape `LS1/libertinust1math/m/it' will be
(Font) scaled to size 12.0pt on input line 137.
(Font) scaled to size 12.0pt on input line 139.
LaTeX Font Info: Font shape `LS1/libertinust1math/m/it' will be
(Font) scaled to size 8.0pt on input line 137.
(Font) scaled to size 8.0pt on input line 139.
LaTeX Font Info: Font shape `LS1/libertinust1math/m/it' will be
(Font) scaled to size 6.0pt on input line 137.
(Font) scaled to size 6.0pt on input line 139.
LaTeX Font Info: Font shape `LS2/libertinust1mathsym/m/n' will be
(Font) scaled to size 12.0pt on input line 137.
(Font) scaled to size 12.0pt on input line 139.
LaTeX Font Info: Font shape `LS2/libertinust1mathsym/m/n' will be
(Font) scaled to size 8.0pt on input line 137.
(Font) scaled to size 8.0pt on input line 139.
LaTeX Font Info: Font shape `LS2/libertinust1mathsym/m/n' will be
(Font) scaled to size 6.0pt on input line 137.
LaTeX Font Info: Trying to load font information for LS2+libertinust1mathex on input line 137.
(Font) scaled to size 6.0pt on input line 139.
LaTeX Font Info: Trying to load font information for LS2+libertinust1mathex on input line 139.
(/usr/local/texlive/2023/texmf-dist/tex/latex/libertinust1math/ls2libertinust1mathex.fd
File: ls2libertinust1mathex.fd 2016/03/15 v1.0.0-latex LibertinusMath extensions LS2 font definitions
)
LaTeX Font Info: Font shape `LS2/libertinust1mathex/m/n' will be
(Font) scaled to size 12.0pt on input line 137.
(Font) scaled to size 12.0pt on input line 139.
LaTeX Font Info: Font shape `LS2/libertinust1mathex/m/n' will be
(Font) scaled to size 8.0pt on input line 137.
(Font) scaled to size 8.0pt on input line 139.
LaTeX Font Info: Font shape `LS2/libertinust1mathex/m/n' will be
(Font) scaled to size 6.0pt on input line 137.
LaTeX Font Info: Trying to load font information for LS1+libertinust1mathbb on input line 137.
(Font) scaled to size 6.0pt on input line 139.
LaTeX Font Info: Trying to load font information for LS1+libertinust1mathbb on input line 139.
(/usr/local/texlive/2023/texmf-dist/tex/latex/libertinust1math/ls1libertinust1mathbb.fd
File: ls1libertinust1mathbb.fd 2016/08/22 latex LibertinusT1Mathbb LS1 font definitions
)
LaTeX Font Info: Font shape `LS1/libertinust1mathbb/m/n' will be
(Font) scaled to size 12.0pt on input line 137.
(Font) scaled to size 12.0pt on input line 139.
LaTeX Font Info: Font shape `LS1/libertinust1mathbb/m/n' will be
(Font) scaled to size 8.0pt on input line 137.
(Font) scaled to size 8.0pt on input line 139.
LaTeX Font Info: Font shape `LS1/libertinust1mathbb/m/n' will be
(Font) scaled to size 6.0pt on input line 137.
(Font) scaled to size 6.0pt on input line 139.
LaTeX Font Info: Font shape `LS1/libertinust1math/b/n' will be
(Font) scaled to size 12.0pt on input line 137.
(Font) scaled to size 12.0pt on input line 139.
LaTeX Font Info: Font shape `LS1/libertinust1math/b/n' will be
(Font) scaled to size 8.0pt on input line 137.
(Font) scaled to size 8.0pt on input line 139.
LaTeX Font Info: Font shape `LS1/libertinust1math/b/n' will be
(Font) scaled to size 6.0pt on input line 137.
(Font) scaled to size 6.0pt on input line 139.
LaTeX Font Info: Font shape `LS1/libertinust1math/b/it' will be
(Font) scaled to size 12.0pt on input line 137.
(Font) scaled to size 12.0pt on input line 139.
LaTeX Font Info: Font shape `LS1/libertinust1math/b/it' will be
(Font) scaled to size 8.0pt on input line 137.
(Font) scaled to size 8.0pt on input line 139.
LaTeX Font Info: Font shape `LS1/libertinust1math/b/it' will be
(Font) scaled to size 6.0pt on input line 137.
(Font) scaled to size 6.0pt on input line 139.
LaTeX Font Info: Font shape `T1/LinuxBiolinumT-TLF/b/n' will be
(Font) scaled to size 14.4pt on input line 137.
(Font) scaled to size 14.4pt on input line 139.
Underfull \hbox (badness 10000) in paragraph at lines 137--137
Underfull \hbox (badness 10000) in paragraph at lines 139--139
[]
Overfull \hbox (33.0pt too wide) in paragraph at lines 137--137
Overfull \hbox (33.0pt too wide) in paragraph at lines 139--139
[][][][][][][][]
[]
@@ -1290,17 +1337,17 @@ pdfTeX warning: pdflatex (file ./ugent-en.pdf): PDF inclusion: found PDF version
<ugent-en.pdf, id=132, 106.69862pt x 85.3589pt>
File: ugent-en.pdf Graphic file (type pdf)
<use ugent-en.pdf>
Package pdftex.def Info: ugent-en.pdf used on input line 137.
Package pdftex.def Info: ugent-en.pdf used on input line 139.
(pdftex.def) Requested size: 150.91232pt x 120.72095pt.
[1
{/usr/local/texlive/2023/texmf-var/fonts/map/pdftex/updmap/pdftex.map}{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertine/lbtn_25tcsq.enc} <./ea-en.pdf> <./ugent-en.pdf>]
LaTeX Font Info: Font shape `T1/LinuxBiolinumT-TLF/m/n' will be
(Font) scaled to size 17.28pt on input line 144.
(Font) scaled to size 17.28pt on input line 147.
(./verslag.toc
LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/b/n' will be
(Font) scaled to size 12.0pt on input line 2.
(Font) scaled to size 12.0pt on input line 3.
)
\tf@toc=\write6
\openout6 = `verslag.toc'.
@@ -1309,7 +1356,7 @@ LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/b/n' will be
pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has been already used, duplicate ignored
<to be read again>
\relax
l.145 \newpage
l.148 \newpage
[1
{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertine/lbtn_nh77jq.enc}{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertine/lbtn_76gpa5.enc}]
@@ -1681,14 +1728,14 @@ Package pdftex.def Info: images/diffusion/results/intermediates/Testing Intermed
LaTeX Warning: `h' float specifier changed to `ht'.
[37]) (./sections/results/models/comparison.tex) [38 <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 1_00000000.jpeg> <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 2_00000000.jpeg> <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 3_00000000.jpeg> <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg>] (./sections/results/policies/baselines.tex [39]
[37]) (./sections/results/models/comparison.tex [38 <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 1_00000000.jpeg> <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 2_00000000.jpeg> <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 3_00000000.jpeg> <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg>]) [39] (./sections/results/policies/baselines.tex [40]
Underfull \hbox (badness 10000) in paragraph at lines 6--7
[]
LaTeX Font Info: Font shape `TS1/LinuxLibertineT-TLF/b/n' will be
(Font) scaled to size 12.0pt on input line 12.
) (./sections/results/policies/nrv_samples_policy.tex)) [40{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertine/lbtn_7f4ce4.enc}] [41] (./verslag.aux (./sections/introduction.aux) (./sections/background.aux) (./sections/policies.aux) (./sections/literature_study.aux))
) (./sections/results/policies/nrv_samples_policy.tex)) [41{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertine/lbtn_7f4ce4.enc}] [42] [43] (./verslag.aux (./sections/introduction.aux) (./sections/background.aux) (./sections/policies.aux) (./sections/literature_study.aux))
LaTeX Warning: There were undefined references.
@@ -1704,18 +1751,18 @@ Package logreq Info: Writing requests to 'verslag.run.xml'.
)
Here is how much of TeX's memory you used:
37305 strings out of 476025
733954 string characters out of 5790017
41795 strings out of 476025
868671 string characters out of 5790017
1884388 words of memory out of 5000000
56927 multiletter control sequences out of 15000+600000
603918 words of font info for 90 fonts, out of 8000000 for 9000
61395 multiletter control sequences out of 15000+600000
606964 words of font info for 100 fonts, out of 8000000 for 9000
1141 hyphenation exceptions out of 8191
84i,16n,131p,2100b,5180s stack positions out of 10000i,1000n,20000p,200000b,200000s
</Users/victormylle/Library/texlive/2023/texmf-var/fonts/pk/ljfour/public/bbm/bbm12.600pk></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertinust1math/LibertinusT1Math.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinBiolinumT.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinBiolinumTB.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinLibertineT.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinLibertineTB.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinLibertineTI.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/stix/stix-mathcal.pfb>
Output written on verslag.pdf (42 pages, 8226971 bytes).
Output written on verslag.pdf (44 pages, 8230420 bytes).
PDF statistics:
610 PDF objects out of 1000 (max. 8388607)
450 compressed objects within 5 object streams
110 named destinations out of 1000 (max. 500000)
620 PDF objects out of 1000 (max. 8388607)
458 compressed objects within 5 object streams
113 named destinations out of 1000 (max. 500000)
526 words of extra memory for PDF output out of 10000 (max. 10000000)

Binary file not shown.

Binary file not shown.

View File

@@ -29,6 +29,7 @@
\usepackage{subcaption}
\usepackage{booktabs}
\usepackage{tikz}
\usepackage{acro}
\usetikzlibrary{positioning, calc}
% Electricity market
@@ -125,6 +126,8 @@
% The last (bottom) infobox at bottom of titlepage
\infoboxd{Academic year: 2023--2024} % note dash, not hyphen
% load acronyms file
\input{acronyms}
\begin{document}
@@ -183,6 +186,9 @@
\input{sections/results}
\newpage
\printacronyms
\newpage
% bibliography
\printbibliography

View File

@@ -1,3 +1,4 @@
\acswitchoff
\babel@toc {english}{}\relax
\contentsline {section}{\numberline {1}Introduction}{2}{section.1}%
\contentsline {section}{\numberline {2}Electricity market}{3}{section.2}%
@@ -27,6 +28,6 @@
\contentsline {subsubsection}{\numberline {6.2.3}GRU Model}{32}{subsubsection.6.2.3}%
\contentsline {subsection}{\numberline {6.3}Diffusion}{36}{subsection.6.3}%
\contentsline {subsection}{\numberline {6.4}Comparison}{38}{subsection.6.4}%
\contentsline {section}{\numberline {7}Policies for battery optimization}{39}{section.7}%
\contentsline {subsection}{\numberline {7.1}Baselines}{39}{subsection.7.1}%
\contentsline {subsection}{\numberline {7.2}Policy using generated NRV samples}{40}{subsection.7.2}%
\contentsline {section}{\numberline {7}Policies for battery optimization}{40}{section.7}%
\contentsline {subsection}{\numberline {7.1}Baselines}{40}{subsection.7.1}%
\contentsline {subsection}{\numberline {7.2}Policy using generated NRV samples}{41}{subsection.7.2}%