add ESF submit file and change current calculation

This commit is contained in:
2025-03-15 19:32:50 +01:00
parent 49e165a1af
commit efb583d513
6 changed files with 396 additions and 12 deletions

Binary file not shown.

View File

@ -0,0 +1,91 @@
\documentclass[paper=A4]{article}
\usepackage[utf8]{inputenc}
\usepackage[a4paper, left=2cm, right=2cm, top=2cm, bottom=2cm]{geometry}
\usepackage{tikz}
\usetikzlibrary{}
\usetikzlibrary{calc,shapes.geometric, arrows}
\usepackage[european, rotatelabels]{circuitikz}
\usepackage{siunitx}
\sisetup{
group-separator = {.},
input-decimal-markers={.},
output-decimal-marker = {,},
group-minimum-digits=4}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{lastpage}
\usepackage{subfigure}
\usepackage{float}
\usepackage{multicol}
\usepackage{amsmath, amssymb}
\pagestyle{fancy}
\fancyhf{}
\rhead{\includegraphics*[scale=0.03]{bilder/Fasttube-Logo.png}}
\rfoot{Page \thepage \hspace{1pt} of \pageref{LastPage}}
% Circuitikz settings:
\ctikzset{bipole annotation style/.style={color=black}}
\ctikzset{bipole label style/.style={color=black}}
\tikzset{
block/.style = {rectangle, draw, text centered, minimum height=2em},
sensor/.style = {rectangle, draw, thick, blue, line width=2pt, text centered, minimum height=2em},
arrow/.style = {thick,->,>=stealth}
}
\begin{document}
\lhead{\large Car 313, 06.03.2025, Rev. 1}
\chead{\large BSPD Schematic}
\begin{figure}[H]
\centering
\includegraphics[width=\textwidth]{./bilder/output.pdf}
\caption{Schematic of BSPD}
\end{figure}
The BSPD PCB is located in the front "Sensor-Node" (mainly there to transfer the analog data to CAN), in which a separate compartment is created to ensure the BSPD can be separated sealed without affecting other parts in the same housing.
\begin{multicols}{2}
\textbf{Test Procedure}
\begin{enumerate}
\item apply external test current
\item brake hard (with brake pressure $\geq 30 \unit{\bar}$)
\end{enumerate}
\textbf{Test Current Calculation}
\begin{align*}
I_{test} & = 5 \unit{kW} / V_{max} = 5 \unit{kW} / 403.2 \unit{V} \\
& = 12.401 \unit{A}
\end{align*}
\quad \quad 12 windings $\longrightarrow$ test current $\approx 1.034 \unit{A}$
\end{multicols}
\begin{tikzpicture}[node distance=1cm]
% Nodes
\node (current) [block] {Current source};
\node (sensor) [sensor, right of=current, xshift=3cm] {Lem HO-100s sensor};
\node (bpressure) [block, below of=sensor, yshift=-2cm] {Brake Pressure Sensor};
\node (bspd) [block, right of=sensor, xshift=4cm, yshift=-1cm] {BSPD PCB};
\node (lvms) [circle, draw, above of=bspd, yshift=2cm] {+12V LVMS};
% Connections
\draw [arrow] (current.east) -- (sensor.west);
\draw [arrow] (sensor.east) -- ++(2, 0) node[midway, above] {sen\_1} -- (bspd.west);
\draw [arrow] (bpressure.east) -- ++(5, 0) node[midway, above] {sen\_2} -- (bspd.west);
\draw [arrow] (lvms.south) -- (bspd.north);
\draw [arrow] (bspd.east) -- ++(1, 0) node[midway, above] {SDC\_OUT};
\draw [arrow] (bspd.west) ++(0, -0.5) -- ++(-1, 0) node[midway, above] {SDC\_IN};
% Ground symbol
\node (ground) [below of=bspd, yshift=-1cm] {};
\draw (bspd.south) -- (ground) node[midway, right] {};
\end{tikzpicture}
\end{document}

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.