用三角函数绘制矢量场

用三角函数绘制矢量场

我正在尝试使用 tikz 绘制矢量场 $F(x,y) = \cos (x+y) \vec{i} + x \vec{j}$。我按照这里看到的另一个关于绘制矢量场的主题进行操作,用于绘制其他一些矢量场,效果还不错,但这个让我抓狂。目标是这个

在此处输入图片描述

但我得到的是这个

在此处输入图片描述

使用此代码

\begin{tikzpicture}[trig format = rad]
\begin{axis}[ticks=none,
  view     = {0}{90},
  domain   = -1:1,
  y domain = -1:1,
  samples  = 21,
]

  \addplot3 [cyan, quiver={u={cos (x + y)}, v={x}, scale 
   arrows=0.1},samples=10, -latex] (x,y,0);
\end{axis}
\end{tikzpicture}

我甚至没有尝试放置代表 $x$ 和 $y$ 轴的线。一开始我没有使用,trig format = rad而且不太正确。然后我尝试更改 $x$ 和 $y$ 域,但这只会让情况变得更糟。然后我尝试使用trig format = rad,但在那里我得到了一条随机线,而矢量场甚至不是我想要的。有人能帮忙吗?提前谢谢!

答案1

为了获得网格坐标中心的箭头,需要(x,y)减去箭头长度的一半。

\documentclass[tikz, border=1cm]{standalone}
\usetikzlibrary{arrows.meta}
\usepackage{pgfplots}
\pgfplotsset{compat=1.18}
\begin{document}
\begin{tikzpicture}
\clip[rounded corners] (-3.2,-3.2) rectangle (3.2,3.2);
\begin{axis}[
x=1cm, y=1cm, z=0cm,
view={0}{90},
anchor=center,
trig format plots=rad,
xmin=-3, xmax=3,
ymin=-3, ymax=3,
axis lines=center,
domain=-3:3,
y domain=-3:3,
enlargelimits=0.1,
ticks=none,
]
\addplot3[
cyan, thick,
point meta={sqrt((cos(x+y))^2+x^2)},
quiver={
  u={cos(x+y)}, v={x},
  scale arrows=0.2,
  every arrow/.append style={-{Triangle[scale=0.2+0.8*\pgfplotspointmetatransformed/1000]}},
},
samples=10,
] (x-0.1*cos(x+y),y-0.1*x,0);
\end{axis}
\draw[cyan, ultra thick, rounded corners] (-3.2,-3.2) rectangle (3.2,3.2);
\end{tikzpicture}
\end{document}

框架中的箭筒图

编辑:更正确的图是从这个新位置计算箭头矢量,如下图红色部分所示

\documentclass[tikz, border=1cm]{standalone}
\usetikzlibrary{arrows.meta}
\usepackage{pgfplots}
\pgfplotsset{compat=1.18}
\begin{document}
\begin{tikzpicture}
\clip[rounded corners] (-3.2,-3.2) rectangle (3.2,3.2);
\begin{axis}[
x=1cm, y=1cm, z=0cm,
view={0}{90},
anchor=center,
trig format plots=rad,
xmin=-3, xmax=3,
ymin=-3, ymax=3,
axis lines=center,
domain=-3:3,
y domain=-3:3,
enlargelimits=0.1,
ticks=none,
]
\addplot3[
cyan, thick,
point meta={sqrt((cos(x+y))^2+x^2)},
quiver={
  u={cos(x+y)}, v={x},
  scale arrows=0.2,
  every arrow/.append style={-{Triangle[scale=0.2+0.8*\pgfplotspointmetatransformed/1000]}},
},
samples=10,
] (x-0.1*cos(x+y),y-0.1*x,0);
\addplot3[
red, thick,
point meta={sqrt((cos((x-0.1*cos(x+y))+y))^2+(x-0.1*cos(x+y))^2)},
quiver={
  u={cos((x-0.1*cos(x+y))+y)}, v={x-0.1*cos(x+y)},
  scale arrows=0.2,
  every arrow/.append style={-{Triangle[scale=0.2+0.8*\pgfplotspointmetatransformed/1000]}},
},
samples=10,
] (x-0.1*cos(x+y),y-0.1*x,0);\end{axis}
\draw[cyan, ultra thick, rounded corners] (-3.2,-3.2) rectangle (3.2,3.2);
\end{tikzpicture}
\end{document}

带有修改箭头的箭筒图

相关内容