| 371 | } |
| 372 | |
| 373 | boost::optional<openstudio::TimeSeries> SimFile::nodePressure(int nr) const { |
| 374 | int index = indexOf(m_nodeNr, nr); |
| 375 | if (index == -1) { |
| 376 | return {}; |
| 377 | } |
| 378 | openstudio::TimeSeries series = convertData(m_dateTimes, m_P[index], "Pa"); |
| 379 | return boost::optional<openstudio::TimeSeries>(series); |
| 380 | } |
| 381 | |
| 382 | boost::optional<openstudio::TimeSeries> SimFile::nodeDensity(int nr) const { |
| 383 | int index = indexOf(m_nodeNr, nr); |
nothing calls this directly
no test coverage detected