Hi,
Your problem is that the variables you are passing into the formula node are arrays and you are trying to access them as if they were simple scalar values. So, pl1..pl4, T and C all require you to specify the element you're using after the variable name, e.g. X=(pl4[1]*(T[1]**4)... etc. rather than just X=(pl4*(T**4)... In this way you are specifying which element of the array to use in your calculation.
Hope this helps,
Neil