Copyright © EDF 2002 - 2012
ThermoSysPro Version 3.0
function TableLinearInterpolation_i input Real TabP[:] "1st reference table"; input Real TabX[:] "2nd reference table"; input Real TabY[:, :] "Results table"; input Real P "1st reference value"; input Real X "2nd reference value"; output Real Y "Interpolated result"; output Real DeltaYX "Y step wrt. X"; output Real DeltaYP "Y step wrt. P"; end TableLinearInterpolation_i;
Author