Possible Duplicate:
How to draw a Sankey Diagram using TikZ
I want to have an arrow which splits up and one end is pointing then downwards. When you compile the code below you should see my progress by far. I couldn't upload an image and ascii art is not my field of talent.

But when you see the picture, you can obviously see my problem. My code looks like this:
\documentclass[tightpage]{standalone}
\usepackage[pdftex,active,tightpage]{preview}
\usepackage{varwidth}
\usepackage{tikz}
\usetikzlibrary{positioning}
\usetikzlibrary{calc}
\usetikzlibrary{arrows}
\begin{document}
\begin{preview}
\begin{varwidth}{20\linewidth}
\newcommand{\splitarrow}[3] {
\node[inner sep=0pt] (thirdnode) at ($ (#1.east)!.333!(#2.west) $) {};
\node (twothirdnode) at ($ (#1.east)!.666!(#2.west) $) {};
\node (twothirdbelownode) [below=2em of twothirdnode] {#3};
\draw[line width=2ex] (#1.east) -- (thirdnode.center);
\draw[line width=1.5ex,-triangle 90 cap]
([yshift=0.25ex]thirdnode.center) -- ([yshift=0.25ex]#2.west);
\draw[line width=0.5ex,-fast cap,draw=red]
([yshift=-0.75ex]thirdnode.center) to[bend angle=45,bend left]
(twothirdbelownode.north);
}
\begin{tikzpicture}
\node (nodeleft) {};
\node (noderight) [right=3em of nodeleft.west] {};
\splitarrow{nodeleft}{noderight}{$\eta$};
\end{tikzpicture}
\end{varwidth}
\end{preview}
\end{document}
Thanks for any help! Cheers Reza
Edit:
Did some better picture:

here the code:
\newcommand{\splitarrow}[3] {
\node (twothirdnode) at ($ (#1.east)!.666!(#2.west) $) {};
\node (twothirdbelownode) [below=2cm of twothirdnode] {#3};
\draw[line width=1cm,-triangle 90 cap] ([yshift=0.75cm]#1.east) --
([yshift=0.75cm]#2.west);
\draw[line width=0.5cm,rounded corners=20pt,-fast cap] (#1.east) -|
(twothirdbelownode);
}
out=0, in=90instead ofbend angle=45,bend left. Is that what you're trying to achieve? – Jake Nov 06 '12 at 12:58!in the markup inserted, someone with edit privilege would put the!back. – David Carlisle Nov 06 '12 at 13:01