First time here? Check our help page!
2

Current tools for Co-simulation

Dear Community!

Please update me which are the current tools used by the community for co-simulations. I wish to concurrently run EnergyPlus, Radiance, and Matlab models with some data fetched from real sensor data loggers.

Has there been other options similar to BCVTB in the recent past? Thank you!

Best regards, Vaibhav

Vaibhav's avatar
21
Vaibhav
asked 2023-12-13 22:40:27 -0500
Aaron Boranian's avatar
14.1k
Aaron Boranian
updated 2023-12-14 12:17:16 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

2 Answers

1

For the coupling of these three tools I suggest you use the BCVTB.

Michael Wetter's avatar
1.7k
Michael Wetter
answered 2023-12-15 08:13:59 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments
1

You can do runtime callback with EnergyPlus and Radiance using frads in Python.

A simple example goes something like this, here is a more detailed example.

import frads as fr

emodel = fr.load_energyplus_model("model.idf")
with fr.EnergyPlusSetup(emodel, weather_file="weather.epw", enable_radiance=True) as ep:
    ep.set_callback(controller)
    ep.run()
Taoning Wang's avatar
21
Taoning Wang
answered 2023-12-16 23:01:28 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments