chore: add tables with graph datapoints + plot4

This commit is contained in:
surtur 2020-11-27 02:04:53 +01:00
parent d96f002fc5
commit 397ce6a419
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

@ -140,6 +140,34 @@ Vyvedené elektrody se nazývají emitor, báze, kolektor.
\item Naměřené hodnoty proudů $I_C$ a $I_B$ zapisujeme do tabulky ze které se vytvoří graf
(převodová charakteristika).
\end{enumerate}
\newpage
\subsection{Tabulka}
\begin{table}[!hbt]
\centering
\begin{tabular}{||c|c||}
\hline
\[\textbf{U_{CE} [V]}\] & \[\textbf{I_{c_{\{1,2\}}} [mA]}\] \\
\hline\hline
0 & 0 \\
2 & 0.3 \\
4 & 0.6 \\
8 & 1.2 \\
11 & 1.65 \\
13 & 1.95 \\
15 & 2.25 \\
16 & 2.4 \\
21 & 3.15 \\
25 & 3.75 \\
31 & 4.65 \\
35 & 5.25 \\
37 & 5.55 \\
40 & 6 \\
50 & 7.5 \\
\hline
\end{tabular}
\caption{Převodová charakteristika}
\label{tableprev}
\end{table}
\subsection{Graf}
\begin{figure}[!hbt]
@ -191,6 +219,31 @@ Vyvedené elektrody se nazývají emitor, báze, kolektor.
vytvoří graf (výstupní charakteristika).
\end{enumerate}
\newpage
\subsection{Tabulka}
\begin{table}[!hbt]
\centering
\begin{tabular}{||c|cc||}
\hline
\[\textbf{U_{CE} [V]}\] & \[\textbf{I_{c_1} [mA]}\] & \[\textbf{I_{c_2} [mA]}\] \\
\hline\hline
0 & 0 & 0 \\
0.05 & 0.093 & 0.188 \\
0.1 & 0.694 & 1.388 \\
0.15 & 2.05 & 4.1 \\
0.2 & 2.812 & 5.625 \\
0.25 & 2.971 & 5.943 \\
0.275 & 2.989 & 5.978 \\
0.3 & 2.996 & 5.992 \\
0.4 & 3 & 6 \\
1 & 3 & 6 \\
2 & 3 & 6 \\
\hline
\end{tabular}
\caption{Výstupní charakteristika}
\label{tablevystupni}
\end{table}
\subsection{Graf}
\begin{figure}[!hbt]
\centering
@ -257,6 +310,42 @@ Vyvedené elektrody se nazývají emitor, báze, kolektor.
zanikne potřebný rozdíl potenciálu a tranzistor se uzavře.
\end{enumerate}
\newpage
\subsection{Graf}
\begin{figure}[!hbt]
\centering
\begin{tikzpicture}
\begin{axis}[
xlabel={$R_{b}$ [k$\Omega$]},
ylabel={$I_c$ [mA]},
xmin=0, xmax=1200,
ymin=0, ymax=10,
xtick={0,200,400,600,800,1000,1200},
ytick={0,1,2,3,4,5,6,7,8,9,10},
legend pos=north east,
ymajorgrids=true,
grid style=dashed,
line width=1.0pt,
mark size=2.0pt,
]
\addplot[
color=black,
dotted,
mark=*,
mark options={solid},
smooth
]
coordinates {
(1,9.498)(100,6.534)(200,3.28)(220,2.984)(300,2.192)(400,1.647)(500,1.3)(600,1.1)(700,0.944)(800,0.826)(900,0.735)(1000,0.662)
};
\addlegendentry{Světelnost diody}
\end{axis}
\end{tikzpicture}
\caption{Výstupní charakteristika NPN tranzistoru}
\end{figure}
\newpage
\section{Závěr}