diff --git a/include/cantera/zeroD/ReactorBase.h b/include/cantera/zeroD/ReactorBase.h index 650127015..d1e73030a 100644 --- a/include/cantera/zeroD/ReactorBase.h +++ b/include/cantera/zeroD/ReactorBase.h @@ -113,12 +113,9 @@ public: * Initialize the reactor. Called automatically by ReactorNet::initialize. */ virtual void initialize(doublereal t0 = 0.0) { - tilt(); + throw NotImplementedError("ReactorBase::initialize"); } - //! @deprecated Not used in any derived class. - virtual void start() {} - //@} //! Set the state of the Phase object associated with this reactor to the @@ -202,11 +199,6 @@ public: //@} - int error(const std::string& msg) const { - writelog("Error: "+msg); - return 1; - } - //! The ReactorNet that this reactor belongs to. ReactorNet& network(); @@ -235,12 +227,6 @@ protected: //! The ReactorNet that this reactor is part of ReactorNet* m_net; - -private: - void tilt(const std::string& method="") const { - throw CanteraError("ReactorBase::"+method, - "ReactorBase method called!"); - } }; }