@@ -248,48 +248,50 @@ class ReactorBase
248
248
// ! Set the ReactorNet that this reactor belongs to.
249
249
void setNetwork (ReactorNet* net);
250
250
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
+ // !
259
259
virtual double temperatureDerivative () {
260
260
throw NotImplementedError (" Reactor::temperatureDerivative" );
261
261
}
262
262
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
+ // !
271
273
virtual double temperatureRadiationDerivative () {
272
274
throw NotImplementedError (" Reactor::temperatureRadiationDerivative" );
273
275
}
274
276
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
+ // !
282
284
virtual double moleDerivative (size_t index) {
283
285
throw NotImplementedError (" Reactor::moleDerivative" );
284
286
}
285
287
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
+ // !
293
295
virtual double moleRadiationDerivative (size_t index) {
294
296
throw NotImplementedError (" Reactor::moleRadiationDerivative" );
295
297
}
0 commit comments