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

Method pathFlow0

src/airflow/contam/SimFile.cpp:332–339  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

indexOfFunction · 0.85
convertDataFunction · 0.85

Tested by

no test coverage detected