3

How do I change the boiler curve type from Cubic to Quadratic?

image description

Ranjani's avatar
499
Ranjani
asked 2018-10-26 20:13:01 -0500
shorowit's avatar
11.8k
shorowit
updated 2018-10-27 10:53:11 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

1

While EnergyPlus plus supports most curve types for Normalized Boiler Efficiency, and the OpenStudio API method to create a Boiler accepts any type of curve, the OpenStudio Application currently doesn't let you change the curve type for an existing Boiler.

The boilers in the default library for the OpenStudio application uses Biquadratic, and you have found one that uses Cubic. Here are two possible approaches to use a different curve type.


1. Find another OSM that uses your desired curve type, and load the OSM as a library and then drag in the Boiler, and modify settings as needed.
2. Write a measure to change the curve type for existing boilers. Code would like something like what is below. Then you would could modify the curve values in the GUI, or make them measure arguments.

model.getBoilerHotWaters.each do |boiler|
  curve = OpenStudio::Model::CurveQuadratic.new(model)
  boiler.setNormalizedBoilerEfficiencyCurve(curve)
end
David Goldwasser's avatar
20.4k
David Goldwasser
answered 2018-11-01 17:44:14 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments