|
| 1 | +\documentclass{standalone} % run wit shell escape |
| 2 | + |
| 3 | +\usepackage{tikz} |
| 4 | +\usetikzlibrary{arrows} |
| 5 | +\usepackage{verbatim} |
| 6 | + |
| 7 | +\usepackage{tikz} |
| 8 | +\usepackage{color} |
| 9 | +\definecolor{honeydew}{rgb}{0.94, 1.0, 0.94} |
| 10 | +\definecolor{ivory}{rgb}{1.0, 1.0, 0.94} |
| 11 | + |
| 12 | + |
| 13 | +\usetikzlibrary{shapes,arrows} |
| 14 | +\begin{document} |
| 15 | + |
| 16 | + |
| 17 | +\tikzstyle{block} = [draw, fill=honeydew!70, rectangle, line width=0.5mm, |
| 18 | + minimum height=3em, minimum width=5em] |
| 19 | +\tikzstyle{sum} = [draw, fill=ivory!20, circle, node distance=1cm, line width=0.5mm] |
| 20 | +\tikzstyle{input} = [coordinate] |
| 21 | +\tikzstyle{output} = [coordinate] |
| 22 | +\tikzstyle{pinstyle} = [pin edge={to-,thick,black}] |
| 23 | + |
| 24 | +\tikzset{ |
| 25 | + circ/.style={draw, circle, fill=ivory!70} |
| 26 | +} |
| 27 | + |
| 28 | + |
| 29 | +% The block diagram code is probably more verbose than necessary |
| 30 | +\begin{tikzpicture}[auto, node distance=1cm,>=latex'] |
| 31 | + \node [block, node distance=3cm, label=closed loop process] (Gol) {$g_{ol}(s)$}; |
| 32 | + \node [circ, , line width=0.5mm, label={[label distance=-4.75mm]270:$-$},label={[label distance=-4.75mm]180:$+$}, minimum size=8mm, left of=Gol, node distance=2.5cm] (comparator) {}; |
| 33 | + \node [input, node distance=2cm, left of=comparator] (Ysp) {}; |
| 34 | + % \node [sum, right of=process, node distance=2.5cm] (sum) {}; |
| 35 | +% \node [block, right of=controller, pin={[pinstyle]above:D}, |
| 36 | +% node distance=3cm] (system) {System}; |
| 37 | + \node [output, name=output, right of=Gol, node distance=2.0cm] {}; |
| 38 | + \node [below of=comparator, node distance=1.5cm] (ptbelow) {}; |
| 39 | + |
| 40 | +% \draw [->] (input) -- node[name=u] {$u$} (system); |
| 41 | +% \node [output, right of=system] (output) {}; |
| 42 | +% |
| 43 | +% \draw [draw,->] (input) -- system {$r$} (sum); |
| 44 | + \draw [->, line width=0.5mm] (Gol) -- node[name=y] {$Y_m(s)$} (output); |
| 45 | + \draw [->, line width=0.5mm] (comparator) -- node {$E(s)$} (Gol); |
| 46 | + \draw [->, line width=0.5mm] (Ysp) -- node {$Y_{sp}(s)$} (comparator); |
| 47 | + |
| 48 | + \draw [-, line width=0.5mm] (y) |- (ptbelow); |
| 49 | + \draw [->, line width=0.5mm] (ptbelow) -| (comparator); |
| 50 | +% \draw [->] (system) -- node [name=y] {$y$}(output); |
| 51 | +\end{tikzpicture} |
| 52 | + |
| 53 | +\end{document} |
0 commit comments