I am using a conditional statement to calculate the U-value of heat exchanger. If conditions are not met, I would like to return a nan rather than 0. How can I do this?
if(
and((Q_warm < 13), (Q_warm > 11)),
(Q/(3.64*LMTD)),
0)
I am using a conditional statement to calculate the U-value of heat exchanger. If conditions are not met, I would like to return a nan rather than 0. How can I do this?
if(
and((Q_warm < 13), (Q_warm > 11)),
(Q/(3.64*LMTD)),
0)
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.