MCPcopy Create free account
hub / github.com/NatLabRockies/OpenStudio / pathDeltaP

Method pathDeltaP

src/airflow/contam/SimFile.cpp:323–330  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls 2

indexOfFunction · 0.85
convertDataFunction · 0.85

Tested by

no test coverage detected