Report for BUG Wolfram. Make new thread in Dashboard and titled it "Calculation order BUG in Mathematica 9..." They'll respond. Give link to these topic too.
If Mathematica 9 really have a such "calculation order bug", they will be grateful to you - because this is such a big problem that you can not even comprehend it.
I guess this problem is related to an undefined variable s that you use in function sysCL[] in some way.
Can you please make to me these 4 examples and show me results here:
T1 = 180*10^-6;
K1 = 1.;
sysCL[Kpi_, Kii_, R_, L_] := K1/(T1 s + 1)*(Kpi + Kii/s)*1/(R + L s)
sysCL[3, 427.5, 0.285, 2*10^-3]
and
T1 = 180*10^-6;
K1 = 1.;
sysCL[Kpi_, Kii_, R_, L_] := K1/(T1 s + 1)*((Kpi + Kii)/s)*1/(R + L s)
sysCL[3, 427.5, 0.285, 2*10^-3]
and
T1 = 180*10^-6;
K1 = 1;
sysCL[Kpi_, Kii_, R_, L_] := K1/(T1 s + 1)*(Kpi + Kii/s)*1/(R + L s)
sysCL[3, 427.5, 0.285, 2*10^-3]
and
T1 = 180*10^-6;
K1 = 1;
sysCL[Kpi_, Kii_, R_, L_] := K1/(T1 s + 1)*((Kpi + Kii)/s)*1/(R + L s)
sysCL[3, 427.5, 0.285, 2*10^-3]