| 62 | } |
| 63 | |
| 64 | string Solution::transportModel() |
| 65 | { |
| 66 | if (!m_transport) { |
| 67 | throw CanteraError("Solution::transportModel", |
| 68 | "The Transport object is not initialized."); |
| 69 | } |
| 70 | return m_transport->transportModel(); |
| 71 | } |
| 72 | |
| 73 | void Solution::setTransport(shared_ptr<Transport> transport) { |
| 74 | if (transport == m_transport) { |