Payload name - not going through function node

If all the data is in the same row you don’t need to create three paths and eventually do a join. You could do the calculation in just one function node.

let l = msg.payload.col6;
node.warn("col6="+l);

let t = msg.payload.col10;
node.warn("col10="+t);

let h = msg.payload.col11;
node.warn("col11="+h);

let LSVP = (Math.pow(2.71828,(l / (l +238.3) * 17.2694))* 610.78)/1000;
let SVP  = (Math.pow(2.71828,(t / (t +238.3) * 17.2694))* 610.78)/1000;
    h    = Math.round(h * 100*10)/10;
let DDP = LSVP-(SVP*h/100);

msg.lsvp = LSVP;
msg.svp  = SVP;
msg.h    = h;

msg.payload=DDP
return msg;

send the output of the csv to a function node with the above code and send the putput to a debug node to see the results.

Here is some reading that might make things clearer

Canned replies:

There’s a great page in the docs (Working with messages : Node-RED) that will explain how to use the debug panel to find the right path to any data item.

Pay particular attention to the part about the buttons that appear under your mouse pointer when you over hover a debug message property in the sidebar.

BX00Cy7yHi

I recommend watching this playlist: Node-RED Essentials. The videos are done by the developers of node-red. They're nice & short and to the point. You will understand a whole lot more in about 1 hour. A small investment for a lot of gain.