| 321 | } |
| 322 | |
| 323 | boost::optional<openstudio::TimeSeries> SimFile::pathDeltaP(int nr) const { |
| 324 | int index = indexOf(m_pathNr, nr); |
| 325 | if (index == -1) { |
| 326 | return {}; |
| 327 | } |
| 328 | openstudio::TimeSeries series = convertData(m_dateTimes, m_dP[index], "Pa"); |
| 329 | return boost::optional<openstudio::TimeSeries>(series); |
| 330 | } |
| 331 | |
| 332 | boost::optional<openstudio::TimeSeries> SimFile::pathFlow0(int nr) const { |
| 333 | int index = indexOf(m_pathNr, nr); |
nothing calls this directly
no test coverage detected