我正在尝试用 tikz 绘制一些控制图,并且对此有几个问题:
- 如何才能消除边境的干扰?
- 如何左右定位 Cost 和 Constraints 节点?
\tikzstyle{controller} = [draw, fill=blue!20, rectangle,
minimum height=3em, minimum width=6em]
\tikzstyle{block} = [draw, fill=yellow!20, rectangle,
minimum height=3em, minimum width=6em]
\tikzstyle{disturbance} = [draw, node distance=1.5cm, line width=0pt]
\tikzstyle{sum} = [draw, circle, node distance=1.5cm]
\tikzstyle{input} = [coordinate]
\tikzstyle{output} = [coordinate]
\begin{figure}[!]
\centering
\begin{tikzpicture}[auto, node distance=3cm,>=latex', scale=0.5 ,every
node/.style={transform shape}]
% We start by placing the blocks
\node [input, name=input] {};
\node [sum, right of=input] (sum) {};
\node [controller, right of=sum] (controller) {Controller};
\node [block, right of=controller, node distance=4cm] (system) {System};
\node [disturbance, name=disturbance, above of=system] {Disturbance};
\node [disturbance, name=costfunc, below of=system,] {Cost};
\node [disturbance, name=constraint, below of=system] {Constraints};
% We draw an edge between the controller and system block to
% calculate the coordinate u. We need it to place the measurement block.
\draw [->] (controller) -- node[name=u] {$u(n)$} (system);
\node [output, right of=system] (output) {};
% Once the nodes are placed, connecting them is easy.
\draw [draw,->] (input) -- node {$r(n)$} (sum);
\draw [->] (sum) -- node {$e(n)$} (controller);
\draw [->] (disturbance) -- (system);
\draw [->] (system) -- node [name=y] {$y(n)$}(output);
\draw [->] (y) |- ($(y.south) + (0,-2)$) -| node[pos=0.99]
{$-$} node [near end] {$y(n)$} (sum);
\end{tikzpicture}
\label{fig:mpc_bloc_diagram}
\end{figure}
已编辑
我怎样才能将y(n)
其移近Predict rectangle
,以与之对齐u(n)
我尝试了以下操作,得到了上述结果。
\draw [->] (y) |- node [near end] {$y(n)$} ($(predict.east)+(0,0.35)$);
\draw [->] (u) |- node [near end] {$u(n)$} ($(predict.east)+(0,-0.35)$);
答案1
draw=none
。或者,定义一种不绘制边框的新节点样式?这里有很多可能性,取决于所需的结果。例如,您可以使用,
below right
并below left
使用锚点、移位来微调定位。如果positioning
库已加载,您可以使用类似的方法below left=10pt and 20pt of <name>
(参见下面的第二个示例代码)。
代码:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{calc,arrows}
\begin{document}
\tikzstyle{controller} = [draw, fill=blue!20, rectangle,
minimum height=3em, minimum width=6em]
\tikzstyle{block} = [draw, fill=yellow!20, rectangle,
minimum height=3em, minimum width=6em]
\tikzstyle{disturbance} = [draw, node distance=1.5cm, line width=0pt]
\tikzstyle{sum} = [draw, circle, node distance=1.5cm]
\tikzstyle{input} = [coordinate]
\tikzstyle{output} = [coordinate]
\begin{figure}
\centering
\begin{tikzpicture}[auto, node distance=3cm,>=latex', scale=1.5 ,every
node/.style={transform shape}]
% We start by placing the blocks
\node [input, name=input] {};
\node [sum, right of=input] (sum) {};
\node [controller, right of=sum] (controller) {Controller};
\node [block, right of=controller, node distance=4cm] (system) {System};
\node [disturbance, draw=none,name=disturbance, above of=system] {Disturbance};
\node [disturbance, name=costfunc, below left of=system,] {Cost};
\node [disturbance, name=constraint, below right of=system] {Constraints};
% We draw an edge between the controller and system block to
% calculate the coordinate u. We need it to place the measurement block.
\draw [->] (controller) -- node[name=u] {$u(n)$} (system);
\node [output, right of=system] (output) {};
% Once the nodes are placed, connecting them is easy.
\draw [draw,->] (input) -- node {$r(n)$} (sum);
\draw [->] (sum) -- node {$e(n)$} (controller);
\draw [->] (disturbance) -- (system);
\draw [->] (system) -- node [name=y] {$y(n)$}(output);
\draw [->] (y) |- ($(y.south) + (0,-2)$) -| node[pos=0.99]
{$-$} node [near end] {$y(n)$} (sum);
\end{tikzpicture}
\label{fig:mpc_bloc_diagram}
\end{figure}
\end{document}
一些评论:
请从 更改
of=
为=of
使用positioning
图书馆。从 更改
\tikzstyle
为\tikzset
。figure
您不能像在里面那样放置浮子tikzpicture
;您可以用另一种方式来做。您的缩放因子似乎有点低。
代码:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{calc,arrows,positioning}
\tikzset{
controller/.style={
draw,
fill=blue!20,
rectangle,
minimum height=3em,
minimum width=6em
},
block/.style={
draw,
fill=yellow!20,
rectangle,
minimum height=3em,
minimum width=6em
},
disturbance/.style={
draw,
line width=0pt
},
sum/.style={
draw,
circle,
node distance=1.5cm
},
input/.style={coordinate},
output/.style={coordinate}
}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}[
auto,
node distance=1.5cm,
>=latex',
scale=0.5 ,
every node/.style={transform shape}
]
% We start by placing the blocks
\node [input, name=input] {};
\node [sum, right =of input] (sum) {};
\node [controller, right =of sum] (controller) {Controller};
\node [block, right =of controller, node distance=4cm] (system) {System};
\node [disturbance, draw=none,name=disturbance, above = 20pt of system] {Disturbance};
\node [disturbance,draw=none,name=costfunc, below left = 20pt and 0pt of system,anchor=east] {Cost};
\node [disturbance,draw=none,name=constraint, below right = 20pt and 15pt of system,anchor=east] {Constraints};
% We draw an edge between the controller and system block to
% calculate the coordinate u. We need it to place the measurement block.
\draw [->] (controller) -- node[name=u] {$u(n)$} (system);
\node [output, right =of system] (output) {};
% Once the nodes are placed, connecting them is easy.
\draw [draw,->] (input) -- node {$r(n)$} (sum);
\draw [->] (sum) -- node {$e(n)$} (controller);
\draw [->] (disturbance) -- (disturbance|-system.north);
\draw [->] (system) -- node [name=y] {$y(n)$}(output);
\draw [->] (y) |- ($(y.south) + (0,-2)$) -| node[pos=0.99]
{$-$} node [near end] {$y(n)$} (sum);
\end{tikzpicture}
\label{fig:mpc_bloc_diagram}
\end{figure}
\end{document}
对于原始问题编辑后的新问题:想法是将一个节点命名为第一个标签,然后使用垂直坐标系将另一个标签放置在相同的 x 坐标处。以下示例代码说明了这一点:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{calc,arrows,positioning}
\tikzset{
controller/.style={
draw,
fill=blue!20,
rectangle,
minimum height=3em,
minimum width=6em
},
block/.style={
draw,
fill=yellow!20,
rectangle,
minimum height=3em,
minimum width=6em
},
disturbance/.style={
draw,
line width=0pt
},
sum/.style={
draw,
circle,
node distance=1.5cm
},
input/.style={coordinate},
output/.style={coordinate}
}
\begin{document}
\begin{tikzpicture}[
auto,
node distance=1.5cm,
>=latex',
every node/.style={transform shape}
]
\node [controller] (nodea) {Some node a};
\node [controller, right =of nodea] (nodeb) {Some node b};
\node [controller, above left =of nodea] (nodec) {Some node c};
\draw [->]
(nodea) |-
node [near end] (un) {$u(n)$}
($(nodec.east)+(0,-0.35)$);
\draw [->]
(nodeb) |-
coordinate[near end] (aux)
($(nodec.east)+(0,0.35)$) node[above] at (un|-aux) {$y(n)$};
\end{tikzpicture}
\end{document}