You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like a way to export lots of values without publishing all of them when running with HELICS.
I see that you have the start of that ability in the helics_interface.py with an input argument to registering subscriptions, but there is no connection from that to the tomls which define the setup of the run.
Please let me know if I can help with this.
The text was updated successfully, but these errors were encountered:
I'm not sure how to give this function a pubs input so that it doesn't just publish all the exported values. In the initialization of helics_interface, it only registers pubs and subs if default, without a pubs input, so it always uses the export toml and within the toml there's no toggle to publish as a HELICS publication or not.
Line 179 of helics_interface.py from the Master branch:
<!--StartFragment--> def _registerFederatePublications(self, pubs):
if pubs is not None:
publicationList= pubs
else:
self._file_reader = pyExportReader(
os.path.join(
self._system_paths ["ExportLists"],
"ExportMode-byClass.toml",
),
)
I would like a way to export lots of values without publishing all of them when running with HELICS.
I see that you have the start of that ability in the helics_interface.py with an input argument to registering subscriptions, but there is no connection from that to the tomls which define the setup of the run.
Please let me know if I can help with this.
The text was updated successfully, but these errors were encountered: