diff --git a/Cantera/src/transport/SimpleTransport.h b/Cantera/src/transport/SimpleTransport.h index b82d6120b..2d7c2734d 100644 --- a/Cantera/src/transport/SimpleTransport.h +++ b/Cantera/src/transport/SimpleTransport.h @@ -32,7 +32,7 @@ namespace Cantera { class LiquidTransportParams; - //! Class LiquidTransport implements mixture-averaged transport + //! Class SimpleTransport implements mixture-averaged transport //! properties for liquid phases. /*! * The model is based on that @@ -116,8 +116,46 @@ namespace Cantera { * * The viscosity calculation may be broken down into two parts. * In the first part, the viscosity of the pure species are calculated - * In the second part, a mixing rule is applied, based on the - * Wilkes correlation, to yield the mixture viscosity. + * In the second part, a mixing rule is applied. There are two mixing rules. + * Solvent-only and mixture-averaged. + * + * For the solvent-only mixing rule, we use the pure species viscosity calculated for + * the solvent as the viscosity of the entire mixture. For the mixture averaged rule + * we do a mole fraction based average of the pure species viscosities: + * + * Solvent-only: + * \f[ + * \mu = \mu_0 + * \f] + * Mixture-average: + * \f[ + * \mu = \sum_k {\mu_k X_k} + * \f] + * + * + *