4

How to input Glycol Concentration in Open Studio?

I'm having trouble getting the input for Glycol Concentration in OS:PlantLoop to work. The Input-Output Reference for FluidProperties:GlycolConcentration indicates that the value should be a number between 0 and 1.

However, when trying to enter the input in the plant loop in OS v2.7, regardless of what fluid type is selected, it does not allow values with a decimal point to be entered.

nsimhai's avatar
105
nsimhai
asked 2019-08-06 14:48:47 -0500, updated 2019-08-07 10:31:14 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

7

In OpenStudio, the Glycol Conentration in the PlantLoop object is wrapped by the glycolConcentration parameter, which you can see from the SDK, is a int value. I went into the source code on GitHub and found that the Forward translator multiplies this number to get is as a percentage. I wonder what was the decision behind this implementation.

Therefore, you have to input 50% glycol concentration as 50. When the model get's translated, it will be multiplied 50*0.01 and be passed to the IDF as 0.5.

Luis Lara's avatar
2.1k
Luis Lara
answered 2019-08-07 10:15:27 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments