Thesis update

This commit is contained in:
Radu C. Martin 2021-06-22 12:00:40 +02:00
parent 4bdc12f802
commit f0daedb69f
3 changed files with 4 additions and 17 deletions

View file

@ -33,21 +33,8 @@ The Simulink model is then completed by adding a \textit{Weather Data File}
containing weather measurements for a whole year, and a \textit{Weather containing weather measurements for a whole year, and a \textit{Weather
Prediction} block responsible for sending weather predictions to the MPC.\@ The Prediction} block responsible for sending weather predictions to the MPC.\@ The
controller itself is defined in Python and is connected to Simulink via three controller itself is defined in Python and is connected to Simulink via three
TCP/IP sockets: one for sending the control signal, one for reading the TCP/IP sockets. Details on the implementation are presented in
temperature measurement, and one for reading the weather forecast. Section~\ref{sec:implementation}.
The final Simulink schema is presented in Figure~\ref{fig:CARNOT_complete}:
\begin{figure}[ht]
\centering
\includegraphics[width = \textwidth]{Images/polydome_python.pdf}
\caption{Simulink Schema of the Complete Simulation}
\label{fig:CARNOT_complete}
\end{figure}
% TODO: [CARNOT] Redo this part
\clearpage
\subsection{Physical dimensions}\label{sec:Physical_dimensions} \subsection{Physical dimensions}\label{sec:Physical_dimensions}

View file

@ -393,7 +393,7 @@ data, validating the model by analyzing its multi-step prediction performance
ensures the model was able to learn the correct dynamics and is useful in ensures the model was able to learn the correct dynamics and is useful in
simulation scenarios. simulation scenarios.
The following subsections analyze the performance of the trained \arcshort{gp} The following subsections analyze the performance of the trained \acrshort{gp}
and \acrshort{svgp} models over 20-step ahead predictions. For the \acrshort{gp} and \acrshort{svgp} models over 20-step ahead predictions. For the \acrshort{gp}
model the final choice of parameters is made according to the simulation model the final choice of parameters is made according to the simulation
performance. The simulation performance of the \acrshort{svgp} model is compared performance. The simulation performance of the \acrshort{svgp} model is compared

View file

@ -1,4 +1,4 @@
\section{Implementation} \section{Implementation}\label{sec:implementation}
This section goes into the details of the implementation of the Simulink plant This section goes into the details of the implementation of the Simulink plant
and Python controller setup. and Python controller setup.