Main Content

hougen

Hougen–Watson model

Description

rate = hougen(beta,X) returns predicted reaction rates as a function of the Hougen–Watson model coefficients beta and reactant concentrations X. The Hougen–Watson model has the form

rate=β1X2X3/β51+β2X1+β3X2+β4X3

where X1, X2, and X3 are the concentrations of hydrogen, n-pentane, and isopentane, respectively.

hougen is a utility function for the Response Surface Demonstration Tool.

example

Examples

collapse all

Compute a predicted reaction rate according to a Hougen–Watson model with coefficients β = [1.2, 0.1, 0.01, 0.1, 1.5] and the following reactant concentrations: hydrogen = 100, n-pentane = 80, and isopentane = 120.

rate = hougen([1.2 0.1 0.01 0.1 1.5],[100 80 120])
rate =

    0.6723

The predicted reaction rate is 0.6723 grams per hour.

Input Arguments

collapse all

Hougen–Watson model coefficients, specified as a numeric vector with five elements.

Data Types: single | double

Reactant concentrations, specified as a numeric vector with three columns. The columns of X contain the concentrations of hydrogen, n-pentane, and isopentane, in that order.

Data Types: single | double

Output Arguments

collapse all

Reaction rates, returned as a numeric vector.

References

[1] Bates, D. M., and D. G. Watts. Nonlinear Regression Analysis and Its Applications. Hoboken, NJ: John Wiley & Sons, Inc., 1988.

Version History

Introduced before R2006a