| 578 | } |
| 579 | |
| 580 | void ReactorNet::getStateDae(double* y, double* ydot) |
| 581 | { |
| 582 | for (size_t n = 0; n < m_reactors.size(); n++) { |
| 583 | m_reactors[n]->getStateDae(y + m_start[n], ydot + m_start[n]); |
| 584 | } |
| 585 | } |
| 586 | |
| 587 | size_t ReactorNet::globalComponentIndex(const string& component, size_t reactor) |
| 588 | { |
no test coverage detected