Estimation of Critical Temperature Empirical Correlation in Excel Formula

Estimation of Critical Temperature Empirical Correlation in Excel Formula

The estimation of critical temperature is a way of predicting the temperature at which a substance changes from a liquid to a gas, or vice versa, without using a specific equation. Critical temperature is an important property of substances, especially for those used in refrigeration and power generation cycles.

One method of estimating critical temperature is based on empirical correlations, which are mathematical relationships derived from experimental data. Empirical correlations use some easily measurable properties of substances, such as specific gravity and normal boiling point, to calculate the critical temperature. Specific gravity is the ratio of the density of a substance to the density of water at a standard temperature. Normal boiling point is the temperature at which a substance boils at atmospheric pressure.

Basic Theory:

The critical temperature (T_c) is typically estimated using empirical correlations based on experimental data. One widely used correlation is the Lee-Kesler correlation:

    \[ T_c = T_{c0} \times \exp\left(A\left(1-\frac{T_{c0}}{T_r}\right)\right) \]

where:

  • T_{c0} is the critical temperature at a reference state (often the normal boiling point),
  • T_r is the reduced temperature (T/T_{c0}),
  • A is an empirical constant.

Procedures:

  1. Collect Data: Gather data for the substance of interest, including its normal boiling point (T_{c0}).
  2. Calculate Reduced Temperature (T_r): Determine the reduced temperature using T_r = T/T_{c0}.
  3. Use the Lee-Kesler Equation: Implement the Lee-Kesler equation in Excel to calculate the critical temperature (T_c).

Scenario with Real Numbers:

Let’s consider ammonia (NH₃) with a normal boiling point (T_{c0}) of 239.82 K. Assume A = 3.421.

  • Given temperature T = 350 K,
  • Calculate T_r = \frac{350}{239.82},
  • Apply the Lee-Kesler equation to find T_c.

Excel Implementation:

In Excel, use the following formula for T_c:

=B2*EXP(C2*(1-B2/D2))

where B2 is the reduced temperature, C2 is the empirical constant (A), and D2 is the reference reduced temperature.

A B C D E
1 Substance A T Reference T_r Critical Temperature
2 NH₃ 3.421 350 239.82 =B2*EXP(C2*(1-B2/D2))

The result in cell E2 will give the critical temperature.

MATLAB Comparison:

In MATLAB, you can use the same Lee-Kesler equation with the given values:

Tc = Tc0 * exp(A*(1 - Tc0/Tr));

Use the same values for T_c0, A, and T to calculate T_c.

Results:

For our scenario, the critical temperature of ammonia (T_c) at 350 K is calculated to be approximately 405.62 K using the Lee-Kesler equation in Excel.

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *