多体机械系统基本原理及其附加说明

多体机械系统基本原理及其附加说明

我需要绘制以下图片:

在此处输入图片描述 在此处输入图片描述

我尝试学习如何绘制必要的元素,重点关注这个主题的方法,因为。我以前从未在 LaTeX 中画过如此复杂的东西:在 LaTeX 中绘制机械系统

我不知道这种绘图需要哪些库。代码应该尽可能简单。请教我基础知识,我会尝试自己绘制其余部分。非常感谢!

答案1

嗯,机械零件的 3D 表示可能不是 Ti 的强项Z. 我猜想使用 CAD 软件绘制这些东西要容易得多。也许以下内容可以作为起点:

\documentclass[border=10pt]{standalone}
\usepackage{tikz}

\begin{document}
\begin{tikzpicture}[>=latex]

\draw[->] (0:0) node[above left] {$O$} -- (0:1);
\draw[->] (90:0) -- (90:1);
\draw[->] (225:0) -- (225:1);

\draw[->] (-45:0) -- (-45:5) node[below] {$W_i$};
\draw[->, dashed] (-60:0) -- (-60:5) node[below] {$W^\prime_i$};

\begin{scope}[shift={(-60:3.5)}, rotate=120]
    \fill[white] (0,0.3) -- +(0.5,0) 
        arc[start angle=90, end angle=-90, x radius=0.15, y radius=0.3] 
        -- (0,-0.3) -- (0,-0.2)
        arc[start angle=-90, end angle=90, x radius=0.1, y radius=0.2]
        --(0,0.3) -- cycle;
    \draw (0,0) circle[x radius=0.1, y radius=0.2];
    \draw (0,0) circle[x radius=0.15, y radius=0.3];
    \draw (0,0.3) -- +(0.5,0) arc[start angle=90, end angle=-90, x radius=0.15, y radius=0.3] -- (0,-0.3);
\end{scope}

\begin{scope}[shift={(20:3.5)}, rotate=210]
    \draw (0,0) circle[x radius=0.1, y radius=0.2];
    \draw (0,0) circle[x radius=0.15, y radius=0.3];
    \draw (0,0.3) -- +(0.5,0) arc[start angle=90, end angle=-90, x radius=0.15, y radius=0.3] -- (0,-0.3);
\end{scope}

\draw[fill=white] (-55:3) arc[start angle=-55, end angle=15, radius=3]
    to[in=95, out=95] (15:3.35)
    arc[start angle=15, end angle=-55, radius=3.35]
    to[in=-145, out=-145] (-55:3);

\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容