4

Operating speed of OpenStudio

I am not an expert on this, but it seems the Openstudio is only using one of my cores, although I have assigned it to 4,

My problem is operating speed within the Openstudio, not the simulation.

s_pourm's avatar
775
s_pourm
asked 2018-10-15 11:34:42 -0500
shorowit's avatar
11.8k
shorowit
updated 2018-10-15 12:46:15 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

3

I'm no expert on this either, but OpenStudio Application is developed in Qt C++.

A single thread is generally used to render the application, which isn't something specific to OpenStudio, but rather because rendering actions aren't really parallelizable.

That being said, a few limited actions are spun into separate threads, especially when you launch the application: it starts the measure manager, and it uses the VersionTranslator to update your OSM model, and the OSM libraries you have set (defaults to office.osm and hvac_library.osm) to match the OS Application version[1]


[1] see source code in OpenStudioApp.cpp#L193:L199

Julien Marrec's avatar
29.7k
Julien Marrec
answered 2018-10-17 02:48:26 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments