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
It does not work when I try to access the hydraulic residence time of a node. That might be caused by the name changes of features of NodeResults (hrt). It works after I changed the code in node.py return self._model.getNodeResult(self._nodeid, NodeResults.hrt.value) to return self._model.getNodeResult(self._nodeid, NodeResults.hyd_res_time.value). Is it a suitable way to fix it or any other ways to correct it?
The text was updated successfully, but these errors were encountered:
It does not work when I try to access the hydraulic residence time of a node. That might be caused by the name changes of features of NodeResults (hrt). It works after I changed the code in node.py
return self._model.getNodeResult(self._nodeid, NodeResults.hrt.value)
toreturn self._model.getNodeResult(self._nodeid, NodeResults.hyd_res_time.value)
. Is it a suitable way to fix it or any other ways to correct it?The text was updated successfully, but these errors were encountered: