scruti-documents/TS-DC-schematic/TS-DC-schematic.tex

89 lines
4.2 KiB
TeX

\documentclass[paper=A4]{article}
\usepackage[utf8]{inputenc}
\usepackage[a4paper, left=2cm, right=2cm, top=2cm, bottom=2cm]{geometry}
\usepackage{siunitx}
\sisetup{
group-separator = {.},
input-decimal-markers={.},
output-decimal-marker = {.},
group-minimum-digits=9}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{lastpage}
\usepackage{subfigure}
\usepackage{float}
\usepackage{wrapfig}
\usepackage{multicol}
\usepackage{amsmath, amssymb}
\usepackage{hyperref}
\hyphenpenalty=10000 %to stop cutting words in a paragraph
\pagestyle{fancy}
\fancyhf{}
\rhead{\includegraphics*[scale=0.013]{./Pictures/FaSTTUBe_Logo_ohneAuto.png}}
\rfoot{Page \thepage \hspace{1pt} of \pageref{LastPage}}
\lhead{Car 313, 23.04, Rev. 1}
\chead{\large TS Discharge Circuit Schematic}
\begin{document}
\begin{figure}[H]
\centering
\includegraphics[width=0.98\textwidth]{./Documents/DC.pdf}
\caption{Schematic of the Discharge Circuit PCB}
\end{figure}
\section*{Discharge Time}
As seen in the Schematic, for our discharge circuitry a PTC (PTCEL13R251NxE) is used. The total capacitance of the DC-link capacitor from the two inverters that we are using is \SI{200}{\micro\farad}, and the maximum voltage of the accumulator is 403.2V. Using the RC discharging circuit equation, we obtain the highest resistance that the PTC can have so that we are still within the 5s discharge limit.
\begin{align}
V_C = & V_0 \cdot e^{-t/RC} \\
\SI{60}{\volt} = & \SI{403.2}{\volt} \cdot e^{-\SI{5}{\second}/(R_{PTC} \cdot \SI{200}{\micro\farad})} \\
R_{PTC} \approx & \SI{13123}{\ohm}
\end{align}
\begin{wrapfigure}{r}{0.4\textwidth}
\includegraphics[width=1\linewidth]{./Pictures/PTC-R-T.png}
\caption{Resistance vs. Temperature for PTCEL13 (typical)}
\label{fig:PTC_T_R}
\end{wrapfigure}
To Calculate how much discharge attempts we can have before the discharge reaches 5s, we first see at what temperature the PTC the resistance of \SI{13123}{\ohm} have. We can get this from the datasheet of the PTC (fig. \ref{fig:PTC_T_R}).
As seen in the datasheet, the temperature is about \SI{165}{\celsius}. Assuming that the temperature rises instantly after the discharge, and the heat dissipation is negligible (since the thermal time constant $\tau_{th}$ is \SI{130}{\second}). As we are calculating the lest amount of precharge allowed, we assume the temperature of the environment to be \SI{45}{\celsius}. Since the thermal capacity $C_{th}$ is \SI{1.45}{\joule/\kelvin}, we can see that the total energy that we can generate from discharge is $E = \SI{120}{\kelvin} \cdot \SI{1.45}{\joule/\kelvin} = \SI{174}{\joule}$.
We then calculate how much energy in produced in one discharge:
\begin{align}
E = & \frac{1}{2} \cdot C \cdot V^2 \\
= & \SI{16.26}{\joule}
\end{align}
Therefore, the total amount of discharge we can carry out before the time exceeds \SI{5}{\second} is $\SI{174}{\joule} / \SI{16.26}{\joule} = 10.7$ --- ten times.
\section*{Permanent TS Voltage}
We can find the equilibrium temperature by finding the temperature at which the heat loss is equal to the power emitted. Using the model for LTSpice from Vishay, we can see what the heat loss is at equilibrium. (fig. ) We can see that it is about \SI{2.56}{\watt} Since the dissipation factor is \SI{19.5}{\milli\watt/\kelvin}, we can calculate what the temperature difference $\Delta T$ is.
\begin{align}
(T_{eq} - \SI{45}{\celsius}) & \cdot \SI{19.5}{\milli\watt/\kelvin} = \SI{2.56}{\watt} \\
T_{eq} & \approx \SI{176.3}{\celsius}
\end{align}
\bibliographystyle{plain}
\renewcommand\refname{Reference}
\begin{thebibliography}{00}
\bibitem{lem_datasheet} \textit{Current Transducer HO-S series}. \href{https://www.lem.com/sites/default/files/products_datasheets/ho-50__250-s_v7.pdf}{https://www.lem.com/sites/default/files/products\_datasheets/ho-50\_\_250-s\_v7.pdf}, 03.2022
\bibitem{adz_datasheet} \textit{ADZ SME 200bar}. \href{https://www.adz.de/fileadmin/user_upload/downloads/produkte/SME/ADZ_SME_OperatingManual_DE-EN_A.pdf}{https://www.adz.de/fileadmin/user\_upload/downloads/produkte/SME/ADZ\_SME\_
OperatingManual\_DE-EN\_A.pdf}, 12.2010
\end{thebibliography}
\end{document}