I have this...
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning,shapes.geometric,decorations.pathmorphing,decorations.pathreplacing,decorations.shapes,decorations.markings,patterns,calc,fit,arrows}
\begin{document}
\begin{tikzpicture}[>=latex',auto,inner sep=2mm,node distance=2cm and 3cm,scale=1]
%set styles for the axis between turbine and pump and for the boxes
\tikzset{box1/.style={draw,minimum width=2.5cm,rectangle,thick}}
\tikzset{deco/.style={decoration={markings,
mark=at position #1 with {\arrow{>}}},
postaction={decorate}}}
\tikzset{turb/.style={draw,trapezium,shape border rotate=90,inner sep=1pt,minimum width=2.5cm,trapezium stretches=true,trapezium angle=80,on grid}}
% draw nodes
\node[turb] (turbine) {Turbine};
\node[box1,on grid,below left=of turbine] (condenser){Condenser};
%connections
\begin{scope}[>=triangle 45]
\draw [deco=0.6] (turbine.bottom left corner) |- (condenser);
\end{scope}
%
\end{tikzpicture}
\end{document}

But i need this way...new pink connection

Is it possible to connect near the end (Red line). say 1 or 2 mm away from turbine.bottom left corner...



