@@ -248,48 +248,50 @@ class ReactorBase
248248 // ! Set the ReactorNet that this reactor belongs to.
249249 void setNetwork (ReactorNet* net);
250250
251- /* ! Calculate the derivative of temperature with respect to the temperature in the
252- * heat transfer equation based on the reactor specific equation of state.
253- * This function should also transform the state of the derivative to that
254- * appropriate for the jacobian's state/
255- * @warning This function is an experimental part of the %Cantera API and may be changed
256- * or removed without notice.
257- * @since New in %Cantera 3.0.
258- */
251+ // ! Calculate the derivative of temperature with respect to the temperature in the
252+ // ! heat transfer equation based on the reactor specific equation of state.
253+ // ! This function should also transform the state of the derivative to that
254+ // ! appropriate for the jacobian's state/
255+ // ! @warning This function is an experimental part of the %Cantera API and may be changed
256+ // ! or removed without notice.
257+ // ! @since New in %Cantera 3.0.
258+ // !
259259 virtual double temperatureDerivative () {
260260 throw NotImplementedError (" Reactor::temperatureDerivative" );
261261 }
262262
263- /* ! Calculate the derivative of temperature with respect to the temperature in the
264- * heat transfer radiation equation based on the reactor specific equation of state.
265- * This function should also transform the state of the derivative to that
266- * appropriate for the jacobian's state/
267- * @warning This function is an experimental part of the %Cantera API and may be changed
268- * or removed without notice.
269- * @since New in %Cantera 3.0.
270- */
263+ // ! Calculate the derivative of temperature with respect to the temperature in the
264+ // ! heat transfer radiation equation based on the reactor specific equation of
265+ // ! state.
266+ // ! This function should also transform the state of the derivative to that
267+ // ! appropriate for the jacobian's state/
268+ // ! @warning This function is an experimental part of the %Cantera API and may be
269+ // ! changed
270+ // ! or removed without notice.
271+ // ! @since New in %Cantera 3.0.
272+ // !
271273 virtual double temperatureRadiationDerivative () {
272274 throw NotImplementedError (" Reactor::temperatureRadiationDerivative" );
273275 }
274276
275- /* ! Calculate the derivative of T with respect to the ith species in the heat
276- * transfer equation based on the reactor specific equation of state.
277- * @param index index of the species the derivative is with respect too
278- * @warning This function is an experimental part of the %Cantera API and may be changed
279- * or removed without notice.
280- * @since New in %Cantera 3.0.
281- */
277+ // ! Calculate the derivative of T with respect to the ith species in the heat
278+ // ! transfer equation based on the reactor specific equation of state.
279+ // ! @param index index of the species the derivative is with respect too
280+ // ! @warning This function is an experimental part of the %Cantera API and may be changed
281+ // ! or removed without notice.
282+ // ! @since New in %Cantera 3.0.
283+ // !
282284 virtual double moleDerivative (size_t index) {
283285 throw NotImplementedError (" Reactor::moleDerivative" );
284286 }
285287
286- /* ! Calculate the derivative of T with respect to the ith species in the heat
287- * transfer radiation equation based on the reactor specific equation of state.
288- * @param index index of the species the derivative is with respect too
289- * @warning This function is an experimental part of the %Cantera API and may be changed
290- * or removed without notice.
291- * @since New in %Cantera 3.0.
292- */
288+ // ! Calculate the derivative of T with respect to the ith species in the heat
289+ // ! transfer radiation equation based on the reactor specific equation of state.
290+ // ! @param index index of the species the derivative is with respect too
291+ // ! @warning This function is an experimental part of the %Cantera API and may be changed
292+ // ! or removed without notice.
293+ // ! @since New in %Cantera 3.0.
294+ // !
293295 virtual double moleRadiationDerivative (size_t index) {
294296 throw NotImplementedError (" Reactor::moleRadiationDerivative" );
295297 }
0 commit comments