| 330 | } |
| 331 | |
| 332 | boost::optional<openstudio::TimeSeries> SimFile::pathFlow0(int nr) const { |
| 333 | int index = indexOf(m_pathNr, nr); |
| 334 | if (index == -1) { |
| 335 | return {}; |
| 336 | } |
| 337 | openstudio::TimeSeries series = convertData(m_dateTimes, m_F0[index], "kg/s"); |
| 338 | return boost::optional<openstudio::TimeSeries>(series); |
| 339 | } |
| 340 | |
| 341 | boost::optional<openstudio::TimeSeries> SimFile::pathFlow1(int nr) const { |
| 342 | int index = indexOf(m_pathNr, nr); |
nothing calls this directly
no test coverage detected