Based on this answer from marmot I am thinking about how to design a turbulent flow regime along a stream line within coarsed soil.
Minimum Working Example (MWE):
\documentclass[border=5mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{decorations.markings,decorations.pathmorphing}
\tikzset{gluon/.style={decorate, draw=magenta,
decoration={coil,amplitude=20pt, segment length=25pt}}}
\begin{document}
\begin{tikzpicture}
\draw[gluon, blue] (0,0) -- (10,0);%
\end{tikzpicture}
\end{document}
Screenshot of the result:
Description of the issue:
Maybe it would be possible to let those coils appear a bit more "fragmented", so they could visualize a turbulent flow regime like seen below. One could add several coil lines along the stream line and clip out random fragments of the coils, so somethink like this could appear:
What do you guys think about this? Would it be possible to remove random fragments anyhow?


