0

Creat Simple Thermostat in Openstudio C#

I want to make a thermostat to control the cooling and heating temperature and schedule each. I cannot find the desired class by searching the word "thermostat". Thank you for your help

Masoud's avatar
100
Masoud
asked 2022-07-07 01:51:54 -0500
Aaron Boranian's avatar
14.1k
Aaron Boranian
updated 2022-07-07 12:54:28 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

2

The OpenStudio SDK documentation is located at https://openstudio-sdk-documentation.... and the search box does work fine.

image description

Anyways, you want to use a ThermostatSetpointDualSetpoint

A very good starting point to see how to create a heating and a cooling schedule, create a thermostat, assign the schedules, and add it to a zone is this Ruby test: https://github.com/NREL/OpenStudio-re.... Porting it to C# should be straightforward.

Julien Marrec's avatar
29.7k
Julien Marrec
answered 2022-07-11 02:25:01 -0500
edit flag offensive 0 remove flag delete link

Comments

thank you Julien, If I want to set a constant temperature thermostat, what class should I use?

Masoud's avatar Masoud (2022-07-11 10:35:51 -0500) edit
1

Same class, just use a Schedule that has the same value all the time.

Julien Marrec's avatar Julien Marrec (2022-07-16 05:26:39 -0500) edit

Thank you julien 🙏🙏

Masoud's avatar Masoud (2022-09-23 16:51:05 -0500) edit
add a comment see more comments