ControlSystems
CSI
Q5blockdiagram5

Description

The code above is a LaTeX document that uses the "standalone" document class to create a diagram using the "blox" and "tikz" packages. The diagram is a block diagram of a control system with one input, one output, and a single block with a transfer function represented by a complex expression. The "amsmath" and "amssymb" packages are also used to enable mathematical notation.

The diagram consists of four main elements created with the "blox" package: an input labeled "A" using the "\bXInput" command, an output labeled "E" using the "\bXOutput" command, a block labeled "C" using the "\bXBloc" command, and two arrows connecting the input and output to the block using the "\bXLink" command. The transfer function of the block is given as a complex expression using LaTeX notation in the second argument of the "\bXBloc" command.

Keywords

standalone, amsmath, amssymb, blox, tikz, tikzpicture, bXInput, bXBloc, cfrac, bXOutput, bXLink.

Source Code

ControlSystems/CSI

\documentclass{standalone}
\usepackage{amsmath}  % For math
\usepackage{amssymb}  % For more math
 
\usepackage{blox}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\bXInput{A}
\bXBloc[4]{C}{$\cfrac{G_1G_2G_3+G_1G_3H_1}{1+G_2H_2+H_3G_2G_3+H_1H_2G_3+G_1G_2G_3+G_1G_3H_1}$}{A}
\bXOutput[4]{E}{C}
\bXLink[$R(s) \quad $]{A}{C}
\bXLink[$\quad C(s)$]{C}{E}
\end{tikzpicture}
 
\end{document}
Deploy to Overleaf