<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.physicsbook.gatech.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Chrisli</id>
	<title>Physics Book - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://www.physicsbook.gatech.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Chrisli"/>
	<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/Special:Contributions/Chrisli"/>
	<updated>2026-04-24T16:14:40Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.7</generator>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47644</id>
		<title>Boiling Point</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47644"/>
		<updated>2025-12-02T03:08:21Z</updated>

		<summary type="html">&lt;p&gt;Chrisli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by Chris Li (Fall 2025)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The boiling point of a liquid is the temperature at which its vapor pressure equals the external pressure acting on the liquid. At this point, bubbles of vapor can form throughout the liquid, not just at the surface, allowing the liquid to transition into a gas.&lt;br /&gt;
&lt;br /&gt;
Because vapor pressure changes rapidly with temperature, the boiling point is not a single fixed property. It depends on:&lt;br /&gt;
&lt;br /&gt;
* External pressure (higher pressure → higher boiling point; lower pressure → lower boiling point)&lt;br /&gt;
* Chemical composition (different liquids boil at different temperatures)&lt;br /&gt;
* Solutes dissolved in the liquid (which raise the boiling point; this is a colligative property)&lt;br /&gt;
&lt;br /&gt;
Boiling point is important in thermodynamics, cooking, meteorology, chemical engineering, distillation, and phase equilibrium.&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Boiling phenomena can be described mathematically using two major relationships:&lt;br /&gt;
&lt;br /&gt;
* Clausius–Clapeyron equation → relates vapor pressure and temperature  &lt;br /&gt;
* Boiling point elevation equation → describes how dissolved solutes raise the boiling point  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Clausius–Clapeyron Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This equation is used to calculate the boiling temperature at a new pressure when the heat of vaporization and a reference boiling point are known.&lt;br /&gt;
&lt;br /&gt;
In plain-text form:&lt;br /&gt;
&lt;br /&gt;
 ln(P / P0) = -(ΔH_vap / R) * (1 / T_B - 1 / T_0)&lt;br /&gt;
&lt;br /&gt;
where:&lt;br /&gt;
&lt;br /&gt;
* T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; = boiling temperature at pressure P  &lt;br /&gt;
* T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; = reference temperature at pressure P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;  &lt;br /&gt;
* P = vapor pressure at the new condition  &lt;br /&gt;
* P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; = vapor pressure at the reference condition  &lt;br /&gt;
* ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; = heat of vaporization  &lt;br /&gt;
* R = ideal gas constant (8.314 J·mol&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;·K&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;)  &lt;br /&gt;
&lt;br /&gt;
This equation captures how changing pressure shifts the boiling point.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Boiling Point Elevation Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Dissolving solute particles raises the boiling point of a solvent. This is described by:&lt;br /&gt;
&lt;br /&gt;
 ΔT_b = K_b · b_B&lt;br /&gt;
&lt;br /&gt;
where:&lt;br /&gt;
&lt;br /&gt;
* ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = boiling point elevation (T&amp;lt;sub&amp;gt;b,solution&amp;lt;/sub&amp;gt; − T&amp;lt;sub&amp;gt;b,solvent&amp;lt;/sub&amp;gt;)  &lt;br /&gt;
* K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = ebullioscopic constant  &lt;br /&gt;
* b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; = effective molality of solute particles = b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; · i  &lt;br /&gt;
* i = van’t Hoff factor (number of particles the solute breaks into in solution)  &lt;br /&gt;
&lt;br /&gt;
This equation is central in discussions of colligative properties.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Even without fancy math rendering, a simple computational model can show the same ideas.&lt;br /&gt;
&lt;br /&gt;
For example, here is plain Python-style code (shown as text) to compute a vapor pressure curve using the Clausius–Clapeyron relationship and then a boiling point elevation curve.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Clausius–Clapeyron vapor pressure curve (conceptual example)&lt;br /&gt;
&lt;br /&gt;
R = 8.314          # J/(mol*K)&lt;br /&gt;
Hv = 40000         # J/mol, example ΔHvap&lt;br /&gt;
T0 = 373.15        # K, example reference temperature (100°C)&lt;br /&gt;
P0 = 101325        # Pa, example reference pressure (1 atm)&lt;br /&gt;
&lt;br /&gt;
# For a range of temperatures, compute approximate vapor pressures:&lt;br /&gt;
# P(T) = P0 * exp( -Hv/R * (1/T - 1/T0) )&lt;br /&gt;
&lt;br /&gt;
# In a real script you would loop over T and plot P(T).&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A second conceptual example for boiling point elevation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Boiling point elevation for NaCl in water&lt;br /&gt;
&lt;br /&gt;
Kb = 0.512       # °C*kg/mol for water (approx)&lt;br /&gt;
m  = 1.0         # molality of solute&lt;br /&gt;
i  = 2           # van&#039;t Hoff factor for NaCl&lt;br /&gt;
&lt;br /&gt;
delta_Tb = Kb * m * i&lt;br /&gt;
Tb_solution = 100.0 + delta_Tb  # water&#039;s normal boiling point is 100°C&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Even if the wiki cannot run or highlight this code, it still serves as a clear computational model for how the equations are used.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Below are three example problems following the “Simple, Middling, Difficult” template.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
A 1.0 m NaCl solution (i = 2) is prepared in water with K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = 0.512 °C·kg/mol. What is its boiling point?&lt;br /&gt;
&lt;br /&gt;
Step 1: Use the boiling point elevation equation.&lt;br /&gt;
&lt;br /&gt;
 ΔT_b = K_b · b_B&lt;br /&gt;
 b_B = b_solute · i = 1.0 · 2 = 2.0&lt;br /&gt;
&lt;br /&gt;
So:&lt;br /&gt;
&lt;br /&gt;
 ΔT_b = 0.512 · 2.0 = 1.024 °C&lt;br /&gt;
&lt;br /&gt;
Step 2: Add this to the normal boiling point of water (100 °C):&lt;br /&gt;
&lt;br /&gt;
 T_b,solution = 100.0 °C + 1.024 °C = 101.024 °C&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
A liquid boils at 360 K under 0.80 atm. What is its new boiling temperature under 1.00 atm? Assume ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; = 32,000 J/mol.&lt;br /&gt;
&lt;br /&gt;
Use the Clausius–Clapeyron form:&lt;br /&gt;
&lt;br /&gt;
 ln(P / P0) = -(ΔH_vap / R) * (1 / T_B - 1 / T_0)&lt;br /&gt;
&lt;br /&gt;
Here:&lt;br /&gt;
&lt;br /&gt;
* P = 1.00 atm  &lt;br /&gt;
* P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; = 0.80 atm  &lt;br /&gt;
* T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; = 360 K  &lt;br /&gt;
* ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; = 32,000 J/mol  &lt;br /&gt;
* R = 8.314 J·mol&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;·K&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
Plug in:&lt;br /&gt;
&lt;br /&gt;
 ln(1.00 / 0.80) = -(32000 / 8.314) * (1 / T_B - 1 / 360)&lt;br /&gt;
&lt;br /&gt;
Solving this equation for T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; gives approximately:&lt;br /&gt;
&lt;br /&gt;
 T_B ≈ 372 K&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
A liquid has a vapor pressure of 0.50 atm at 300 K and 1.20 atm at an unknown temperature T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;. Assume ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; is constant. Find T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Use a two-point Clausius–Clapeyron form:&lt;br /&gt;
&lt;br /&gt;
 ln(P2 / P1) = -(ΔH_vap / R) * (1 / T2 - 1 / T1)&lt;br /&gt;
&lt;br /&gt;
Here:&lt;br /&gt;
&lt;br /&gt;
* P&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; = 0.50 atm, T&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; = 300 K  &lt;br /&gt;
* P&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; = 1.20 atm, T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; = ?  &lt;br /&gt;
&lt;br /&gt;
In practice, ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; could be estimated from data or a separate measurement, and then T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; can be solved numerically from the equation. A typical solution gives:&lt;br /&gt;
&lt;br /&gt;
 T2 ≈ 345 K&lt;br /&gt;
&lt;br /&gt;
More practice problems can be found here:  &lt;br /&gt;
[http://www.chemteam.info/Solutions/BP-elevation-probs1-to-10.html Boiling Point Elevation Problems]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
&lt;br /&gt;
Boiling point is important in many real-world contexts:&lt;br /&gt;
&lt;br /&gt;
* Cooking – Salt slightly raises water’s boiling temperature; pressure cookers increase pressure to cook food faster.  &lt;br /&gt;
* Chemical engineering – Distillation and separation processes rely on differences in boiling points between components.  &lt;br /&gt;
* Meteorology – Atmospheric pressure affects evaporation and boiling behavior (for example, water boils at a lower temperature at high altitude).  &lt;br /&gt;
* Food production – Sugar concentration in candy-making and syrup production is monitored via the boiling temperature.  &lt;br /&gt;
* Medicine – Autoclaves use high-pressure steam (and thus higher boiling temperature) to sterilize instruments.&lt;br /&gt;
&lt;br /&gt;
This topic connects physics, chemistry, engineering, and environmental science.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
* Ancient origins – Philo and Hero of Alexandria described early thermometric principles and simple steam devices.  &lt;br /&gt;
* 1741 – Anders Celsius defined his temperature scale using the boiling and melting points of water.  &lt;br /&gt;
* Modern Celsius scale – Originally, Celsius labeled boiling as 0 and freezing as 100, but the scale was later reversed to its current form (0 = freezing, 100 = boiling for water at 1 atm).  &lt;br /&gt;
* 19th century – Clapeyron and Clausius formalized the vapor-pressure–temperature relationship that underlies the Clausius–Clapeyron equation and modern thermodynamics.&lt;br /&gt;
&lt;br /&gt;
The study of boiling and vaporization played a key role in the development of steam engines, thermometers, and heat science.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [[Melting Point]]  &lt;br /&gt;
* [[Vapor Pressure]]  &lt;br /&gt;
* [[Phase Diagram]]  &lt;br /&gt;
* [[Colligative Properties]]  &lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* [https://www.chem.purdue.edu/gchelp/liquids/boil.html Boiling – Purdue Chemistry]  &lt;br /&gt;
* [http://www.britannica.com/science/boiling-point Boiling Point – Britannica]  &lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Boiling_point Boiling Point – Wikipedia]  &lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ehow.com/info_8344665_uses-boiling-point-elevation.html Uses of Boiling Point Elevation]  &lt;br /&gt;
* [http://www.chemteam.info/Solutions/BP-elevation.html Boiling Point Elevation]  &lt;br /&gt;
* [https://www.chem.tamu.edu/class/majors/tutorialnotefiles/intext.htm Chemistry Basics – TAMU]  &lt;br /&gt;
* [http://chemed.chem.purdue.edu/genchem/topicreview/bp/ch14/melting.php Melting, Freezing, Boiling – Purdue]  &lt;br /&gt;
* [http://didyouknow.org/celsius/ Boiling Point of Water]  &lt;br /&gt;
&lt;br /&gt;
[[Category:Properties of Matter]]&lt;/div&gt;</summary>
		<author><name>Chrisli</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:BoilingPointElevation.png&amp;diff=47643</id>
		<title>File:BoilingPointElevation.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:BoilingPointElevation.png&amp;diff=47643"/>
		<updated>2025-12-02T03:06:10Z</updated>

		<summary type="html">&lt;p&gt;Chrisli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Chrisli</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47642</id>
		<title>Boiling Point</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47642"/>
		<updated>2025-12-02T03:03:56Z</updated>

		<summary type="html">&lt;p&gt;Chrisli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by Chris Li (Fall 2025)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The boiling point of a liquid is the temperature at which its vapor pressure equals the external pressure acting on the liquid. At this point, bubbles of vapor can form throughout the liquid, not just at the surface, allowing the liquid to transition into a gas.&lt;br /&gt;
&lt;br /&gt;
Because vapor pressure changes rapidly with temperature, the boiling point is not a fixed property—rather, it depends on:&lt;br /&gt;
&lt;br /&gt;
* **External pressure** (higher pressure → higher boiling point; lower pressure → lower boiling point)&lt;br /&gt;
* **Chemical composition** (different liquids boil at different temperatures)&lt;br /&gt;
* **Solutes dissolved in the liquid**, which raise the boiling point (a colligative property)&lt;br /&gt;
&lt;br /&gt;
Boiling point is important in thermodynamics, cooking, meteorology, chemical engineering, distillation, and phase equilibrium.&lt;br /&gt;
&lt;br /&gt;
[[File:Boiling-water.jpg|center]]&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Boiling phenomena can be described mathematically using two major relationships:&lt;br /&gt;
&lt;br /&gt;
* **Clausius–Clapeyron Equation** → relates vapor pressure and temperature  &lt;br /&gt;
* **Boiling Point Elevation Equation** → describes how dissolved solutes raise the boiling point  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Clausius–Clapeyron Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Used to calculate the boiling temperature at a new pressure when ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; and a reference boiling point are known.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{P}{P_0}\right)&lt;br /&gt;
= -\frac{\Delta H_{vap}}{R} \left( \frac{1}{T_B} - \frac{1}{T_0} \right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
[[File:ClausiusClapeyron.png|center]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Variable definitions:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – boiling temperature at pressure P  &lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – known temperature at pressure P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;  &lt;br /&gt;
* &#039;&#039;&#039;P&#039;&#039;&#039; – new vapor pressure  &lt;br /&gt;
* &#039;&#039;&#039;P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – reference vapor pressure  &lt;br /&gt;
* &#039;&#039;&#039;ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – heat of vaporization  &lt;br /&gt;
* &#039;&#039;&#039;R&#039;&#039;&#039; – ideal gas constant (8.314 J·mol&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;·K&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Boiling Point Elevation Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Dissolving solute particles raises the boiling point of a solvent:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\Delta T_b = K_b \, b_B&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Where:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = T&amp;lt;sub&amp;gt;b,solution&amp;lt;/sub&amp;gt; − T&amp;lt;sub&amp;gt;b,solvent&amp;lt;/sub&amp;gt;  &lt;br /&gt;
* &#039;&#039;&#039;K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = ebullioscopic constant  &lt;br /&gt;
* &#039;&#039;&#039;b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = effective molality: b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; · i  &lt;br /&gt;
* &#039;&#039;&#039;i&#039;&#039;&#039; = van’t Hoff factor  &lt;br /&gt;
&lt;br /&gt;
[[File:BoilingPointElevation.png|center|350px|thumb|Boiling point elevation vs solute concentration.]]&lt;br /&gt;
&lt;br /&gt;
This equation is central in colligative property analysis.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
We can simulate boiling point elevation or vapor-pressure curves numerically. The following VPython/GlowScript code models the Clausius–Clapeyron equation to generate a vapor pressure vs temperature plot:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
import numpy as np&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
R = 8.314&lt;br /&gt;
Hv = 40000    # J/mol&lt;br /&gt;
T0 = 373.15   # K&lt;br /&gt;
P0 = 101325   # Pa&lt;br /&gt;
&lt;br /&gt;
T = np.linspace(320, 400, 200)&lt;br /&gt;
P = P0 * np.exp(-Hv/R * (1/T - 1/T0))&lt;br /&gt;
&lt;br /&gt;
plt.plot(T, P)&lt;br /&gt;
plt.xlabel(&amp;quot;Temperature (K)&amp;quot;)&lt;br /&gt;
plt.ylabel(&amp;quot;Vapor Pressure (Pa)&amp;quot;)&lt;br /&gt;
plt.title(&amp;quot;Vapor Pressure Curve via Clausius-Clapeyron&amp;quot;)&lt;br /&gt;
plt.show()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This simulation demonstrates how small temperature changes dramatically affect vapor pressure, explaining why boiling point shifts with altitude and pressure.&lt;br /&gt;
&lt;br /&gt;
A second computational model simulates boiling point elevation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
Kb = 0.512          # water&lt;br /&gt;
m = np.linspace(0, 5, 200)  # molality range&lt;br /&gt;
i = 2               # NaCl (approx)&lt;br /&gt;
Tb = 100 + Kb * m * i&lt;br /&gt;
&lt;br /&gt;
plt.plot(m, Tb)&lt;br /&gt;
plt.xlabel(&amp;quot;Molality (m)&amp;quot;)&lt;br /&gt;
plt.ylabel(&amp;quot;Boiling Point (°C)&amp;quot;)&lt;br /&gt;
plt.title(&amp;quot;Boiling Point Elevation for NaCl in Water&amp;quot;)&lt;br /&gt;
plt.show()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These visual models help make the equations intuitive.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Below are expanded, step-by-step examples.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
A 1.0 m NaCl solution (i = 2) is prepared in water with K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = 0.512 °C·kg/mol.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\Delta T_b = (0.512)(1.0)(2) = 1.024^\circ C&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
T_b = 100^\circ C + 1.024^\circ C = 101.024^\circ C&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
A liquid boils at 360 K under 0.80 atm. What is its boiling temperature under 1.00 atm?  &lt;br /&gt;
Given: ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; = 32 kJ/mol.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{1.00}{0.80}\right) &lt;br /&gt;
= -\frac{32000}{8.314}\left(\frac{1}{T_B} - \frac{1}{360}\right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Solving gives:  &lt;br /&gt;
\[&lt;br /&gt;
T_B \approx 372\ \text{K}&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
A liquid has vapor pressure 0.50 atm at 300 K and 1.20 atm at an unknown temperature T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;.  &lt;br /&gt;
Use the two-point Clausius–Clapeyron form:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{1.20}{0.50}\right)&lt;br /&gt;
= -\frac{\Delta H_{vap}}{R}\left(\frac{1}{T_2} - \frac{1}{300}\right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Solving:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
T_2 \approx 345\ \text{K}&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
More problems:  &lt;br /&gt;
[http://www.chemteam.info/Solutions/BP-elevation-probs1-to-10.html Boiling Point Elevation]&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
&lt;br /&gt;
Boiling point matters in many real-world contexts:&lt;br /&gt;
&lt;br /&gt;
* **Cooking:** Salt slightly raises water’s boiling temperature; pressure cookers increase pressure to cook food faster.  &lt;br /&gt;
* **Chemical engineering:** Distillation relies entirely on different boiling points.  &lt;br /&gt;
* **Meteorology:** Atmospheric pressure affects evaporation and cloud formation.  &lt;br /&gt;
* **Food production:** Sugar concentration is monitored via boiling temperature in candy-making.  &lt;br /&gt;
* **Medicine:** Autoclaves use high-pressure steam to sterilize tools.  &lt;br /&gt;
&lt;br /&gt;
Boiling point connects physics, chemistry, engineering, and environmental science.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
* **Ancient origins:** Philo and Hero of Alexandria described early thermometric principles and steam devices.  &lt;br /&gt;
* **1741:** Anders Celsius defined his temperature scale using the boiling and melting points of water (later reversed to the modern form).  &lt;br /&gt;
* **19th century:** Clapeyron and Clausius formalized the vapor‐pressure–temperature relationship, laying the foundation for phase diagrams and thermodynamics.  &lt;br /&gt;
&lt;br /&gt;
The study of boiling was central to the development of thermometers, steam engines, and modern heat science.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [[Melting Point]]  &lt;br /&gt;
* [[Vapor Pressure]]  &lt;br /&gt;
* [[Clausius–Clapeyron Equation]]  &lt;br /&gt;
* [[Phase Diagram]]  &lt;br /&gt;
* [[Colligative Properties]]  &lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* [https://www.chem.purdue.edu/gchelp/liquids/boil.html Purdue – Boiling]  &lt;br /&gt;
* [http://www.britannica.com/science/boiling-point Britannica – Boiling Point]  &lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Boiling_point Boiling Point – Wikipedia]  &lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ehow.com/info_8344665_uses-boiling-point-elevation.html Uses of Boiling Point Elevation]  &lt;br /&gt;
* [http://www.chemteam.info/Solutions/BP-elevation.html Boiling Point Elevation]  &lt;br /&gt;
* [https://www.chem.tamu.edu/class/majors/tutorialnotefiles/intext.htm Chemistry Basics]  &lt;br /&gt;
* [http://chemed.chem.purdue.edu/genchem/topicreview/bp/ch14/melting.php Melting / Freezing / Boiling]  &lt;br /&gt;
* [http://didyouknow.org/celsius/ Boiling Point of Water]  &lt;br /&gt;
&lt;br /&gt;
[[Category:Properties of Matter]]&lt;/div&gt;</summary>
		<author><name>Chrisli</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Boiling-water.jpg&amp;diff=47641</id>
		<title>File:Boiling-water.jpg</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Boiling-water.jpg&amp;diff=47641"/>
		<updated>2025-12-02T03:03:21Z</updated>

		<summary type="html">&lt;p&gt;Chrisli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Chrisli</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47640</id>
		<title>Boiling Point</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47640"/>
		<updated>2025-12-02T03:02:18Z</updated>

		<summary type="html">&lt;p&gt;Chrisli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by Chris Li (Fall 2025)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The boiling point of a liquid is the temperature at which its vapor pressure equals the external pressure acting on the liquid. At this point, bubbles of vapor can form throughout the liquid, not just at the surface, allowing the liquid to transition into a gas.&lt;br /&gt;
&lt;br /&gt;
Because vapor pressure changes rapidly with temperature, the boiling point is not a fixed property—rather, it depends on:&lt;br /&gt;
&lt;br /&gt;
* **External pressure** (higher pressure → higher boiling point; lower pressure → lower boiling point)&lt;br /&gt;
* **Chemical composition** (different liquids boil at different temperatures)&lt;br /&gt;
* **Solutes dissolved in the liquid**, which raise the boiling point (a colligative property)&lt;br /&gt;
&lt;br /&gt;
Boiling point is important in thermodynamics, cooking, meteorology, chemical engineering, distillation, and phase equilibrium.&lt;br /&gt;
&lt;br /&gt;
[[File:Boiling-water.png|center|350px|thumb|Boiling occurs when vapor pressure equals external pressure.]]&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Boiling phenomena can be described mathematically using two major relationships:&lt;br /&gt;
&lt;br /&gt;
* **Clausius–Clapeyron Equation** → relates vapor pressure and temperature  &lt;br /&gt;
* **Boiling Point Elevation Equation** → describes how dissolved solutes raise the boiling point  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Clausius–Clapeyron Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Used to calculate the boiling temperature at a new pressure when ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; and a reference boiling point are known.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{P}{P_0}\right)&lt;br /&gt;
= -\frac{\Delta H_{vap}}{R} \left( \frac{1}{T_B} - \frac{1}{T_0} \right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
[[File:ClausiusClapeyron.png|center]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Variable definitions:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – boiling temperature at pressure P  &lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – known temperature at pressure P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;  &lt;br /&gt;
* &#039;&#039;&#039;P&#039;&#039;&#039; – new vapor pressure  &lt;br /&gt;
* &#039;&#039;&#039;P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – reference vapor pressure  &lt;br /&gt;
* &#039;&#039;&#039;ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – heat of vaporization  &lt;br /&gt;
* &#039;&#039;&#039;R&#039;&#039;&#039; – ideal gas constant (8.314 J·mol&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;·K&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Boiling Point Elevation Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Dissolving solute particles raises the boiling point of a solvent:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\Delta T_b = K_b \, b_B&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Where:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = T&amp;lt;sub&amp;gt;b,solution&amp;lt;/sub&amp;gt; − T&amp;lt;sub&amp;gt;b,solvent&amp;lt;/sub&amp;gt;  &lt;br /&gt;
* &#039;&#039;&#039;K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = ebullioscopic constant  &lt;br /&gt;
* &#039;&#039;&#039;b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = effective molality: b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; · i  &lt;br /&gt;
* &#039;&#039;&#039;i&#039;&#039;&#039; = van’t Hoff factor  &lt;br /&gt;
&lt;br /&gt;
[[File:BoilingPointElevation.png|center|350px|thumb|Boiling point elevation vs solute concentration.]]&lt;br /&gt;
&lt;br /&gt;
This equation is central in colligative property analysis.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
We can simulate boiling point elevation or vapor-pressure curves numerically. The following VPython/GlowScript code models the Clausius–Clapeyron equation to generate a vapor pressure vs temperature plot:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
import numpy as np&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
R = 8.314&lt;br /&gt;
Hv = 40000    # J/mol&lt;br /&gt;
T0 = 373.15   # K&lt;br /&gt;
P0 = 101325   # Pa&lt;br /&gt;
&lt;br /&gt;
T = np.linspace(320, 400, 200)&lt;br /&gt;
P = P0 * np.exp(-Hv/R * (1/T - 1/T0))&lt;br /&gt;
&lt;br /&gt;
plt.plot(T, P)&lt;br /&gt;
plt.xlabel(&amp;quot;Temperature (K)&amp;quot;)&lt;br /&gt;
plt.ylabel(&amp;quot;Vapor Pressure (Pa)&amp;quot;)&lt;br /&gt;
plt.title(&amp;quot;Vapor Pressure Curve via Clausius-Clapeyron&amp;quot;)&lt;br /&gt;
plt.show()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This simulation demonstrates how small temperature changes dramatically affect vapor pressure, explaining why boiling point shifts with altitude and pressure.&lt;br /&gt;
&lt;br /&gt;
A second computational model simulates boiling point elevation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
Kb = 0.512          # water&lt;br /&gt;
m = np.linspace(0, 5, 200)  # molality range&lt;br /&gt;
i = 2               # NaCl (approx)&lt;br /&gt;
Tb = 100 + Kb * m * i&lt;br /&gt;
&lt;br /&gt;
plt.plot(m, Tb)&lt;br /&gt;
plt.xlabel(&amp;quot;Molality (m)&amp;quot;)&lt;br /&gt;
plt.ylabel(&amp;quot;Boiling Point (°C)&amp;quot;)&lt;br /&gt;
plt.title(&amp;quot;Boiling Point Elevation for NaCl in Water&amp;quot;)&lt;br /&gt;
plt.show()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These visual models help make the equations intuitive.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Below are expanded, step-by-step examples.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
A 1.0 m NaCl solution (i = 2) is prepared in water with K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = 0.512 °C·kg/mol.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\Delta T_b = (0.512)(1.0)(2) = 1.024^\circ C&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
T_b = 100^\circ C + 1.024^\circ C = 101.024^\circ C&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
A liquid boils at 360 K under 0.80 atm. What is its boiling temperature under 1.00 atm?  &lt;br /&gt;
Given: ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; = 32 kJ/mol.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{1.00}{0.80}\right) &lt;br /&gt;
= -\frac{32000}{8.314}\left(\frac{1}{T_B} - \frac{1}{360}\right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Solving gives:  &lt;br /&gt;
\[&lt;br /&gt;
T_B \approx 372\ \text{K}&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
A liquid has vapor pressure 0.50 atm at 300 K and 1.20 atm at an unknown temperature T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;.  &lt;br /&gt;
Use the two-point Clausius–Clapeyron form:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{1.20}{0.50}\right)&lt;br /&gt;
= -\frac{\Delta H_{vap}}{R}\left(\frac{1}{T_2} - \frac{1}{300}\right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Solving:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
T_2 \approx 345\ \text{K}&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
More problems:  &lt;br /&gt;
[http://www.chemteam.info/Solutions/BP-elevation-probs1-to-10.html Boiling Point Elevation]&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
&lt;br /&gt;
Boiling point matters in many real-world contexts:&lt;br /&gt;
&lt;br /&gt;
* **Cooking:** Salt slightly raises water’s boiling temperature; pressure cookers increase pressure to cook food faster.  &lt;br /&gt;
* **Chemical engineering:** Distillation relies entirely on different boiling points.  &lt;br /&gt;
* **Meteorology:** Atmospheric pressure affects evaporation and cloud formation.  &lt;br /&gt;
* **Food production:** Sugar concentration is monitored via boiling temperature in candy-making.  &lt;br /&gt;
* **Medicine:** Autoclaves use high-pressure steam to sterilize tools.  &lt;br /&gt;
&lt;br /&gt;
Boiling point connects physics, chemistry, engineering, and environmental science.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
* **Ancient origins:** Philo and Hero of Alexandria described early thermometric principles and steam devices.  &lt;br /&gt;
* **1741:** Anders Celsius defined his temperature scale using the boiling and melting points of water (later reversed to the modern form).  &lt;br /&gt;
* **19th century:** Clapeyron and Clausius formalized the vapor‐pressure–temperature relationship, laying the foundation for phase diagrams and thermodynamics.  &lt;br /&gt;
&lt;br /&gt;
The study of boiling was central to the development of thermometers, steam engines, and modern heat science.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [[Melting Point]]  &lt;br /&gt;
* [[Vapor Pressure]]  &lt;br /&gt;
* [[Clausius–Clapeyron Equation]]  &lt;br /&gt;
* [[Phase Diagram]]  &lt;br /&gt;
* [[Colligative Properties]]  &lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* [https://www.chem.purdue.edu/gchelp/liquids/boil.html Purdue – Boiling]  &lt;br /&gt;
* [http://www.britannica.com/science/boiling-point Britannica – Boiling Point]  &lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Boiling_point Boiling Point – Wikipedia]  &lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ehow.com/info_8344665_uses-boiling-point-elevation.html Uses of Boiling Point Elevation]  &lt;br /&gt;
* [http://www.chemteam.info/Solutions/BP-elevation.html Boiling Point Elevation]  &lt;br /&gt;
* [https://www.chem.tamu.edu/class/majors/tutorialnotefiles/intext.htm Chemistry Basics]  &lt;br /&gt;
* [http://chemed.chem.purdue.edu/genchem/topicreview/bp/ch14/melting.php Melting / Freezing / Boiling]  &lt;br /&gt;
* [http://didyouknow.org/celsius/ Boiling Point of Water]  &lt;br /&gt;
&lt;br /&gt;
[[Category:Properties of Matter]]&lt;/div&gt;</summary>
		<author><name>Chrisli</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47639</id>
		<title>Boiling Point</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47639"/>
		<updated>2025-12-02T03:00:17Z</updated>

		<summary type="html">&lt;p&gt;Chrisli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by Chris Li (Fall 2025)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The boiling point of a liquid is the temperature at which its vapor pressure equals the external pressure acting on the liquid. At this point, bubbles of vapor can form throughout the liquid, not just at the surface, allowing the liquid to transition into a gas.&lt;br /&gt;
&lt;br /&gt;
Because vapor pressure changes rapidly with temperature, the boiling point is not a fixed property—rather, it depends on:&lt;br /&gt;
&lt;br /&gt;
* **External pressure** (higher pressure → higher boiling point; lower pressure → lower boiling point)&lt;br /&gt;
* **Chemical composition** (different liquids boil at different temperatures)&lt;br /&gt;
* **Solutes dissolved in the liquid**, which raise the boiling point (a colligative property)&lt;br /&gt;
&lt;br /&gt;
Boiling point is important in thermodynamics, cooking, meteorology, chemical engineering, distillation, and phase equilibrium.&lt;br /&gt;
&lt;br /&gt;
[[File:Boiling-water.webp|center|350px|thumb|Boiling occurs when vapor pressure equals external pressure.]]&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Boiling phenomena can be described mathematically using two major relationships:&lt;br /&gt;
&lt;br /&gt;
* **Clausius–Clapeyron Equation** → relates vapor pressure and temperature  &lt;br /&gt;
* **Boiling Point Elevation Equation** → describes how dissolved solutes raise the boiling point  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Clausius–Clapeyron Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Used to calculate the boiling temperature at a new pressure when ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; and a reference boiling point are known.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{P}{P_0}\right)&lt;br /&gt;
= -\frac{\Delta H_{vap}}{R} \left( \frac{1}{T_B} - \frac{1}{T_0} \right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
[[File:ClausiusClapeyron.png|center|400px|thumb|Graph of vapor pressure vs temperature illustrating boiling point.]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Variable definitions:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – boiling temperature at pressure P  &lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – known temperature at pressure P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;  &lt;br /&gt;
* &#039;&#039;&#039;P&#039;&#039;&#039; – new vapor pressure  &lt;br /&gt;
* &#039;&#039;&#039;P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – reference vapor pressure  &lt;br /&gt;
* &#039;&#039;&#039;ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – heat of vaporization  &lt;br /&gt;
* &#039;&#039;&#039;R&#039;&#039;&#039; – ideal gas constant (8.314 J·mol&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;·K&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Boiling Point Elevation Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Dissolving solute particles raises the boiling point of a solvent:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\Delta T_b = K_b \, b_B&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Where:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = T&amp;lt;sub&amp;gt;b,solution&amp;lt;/sub&amp;gt; − T&amp;lt;sub&amp;gt;b,solvent&amp;lt;/sub&amp;gt;  &lt;br /&gt;
* &#039;&#039;&#039;K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = ebullioscopic constant  &lt;br /&gt;
* &#039;&#039;&#039;b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = effective molality: b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; · i  &lt;br /&gt;
* &#039;&#039;&#039;i&#039;&#039;&#039; = van’t Hoff factor  &lt;br /&gt;
&lt;br /&gt;
[[File:BoilingPointElevation.png|center|350px|thumb|Boiling point elevation vs solute concentration.]]&lt;br /&gt;
&lt;br /&gt;
This equation is central in colligative property analysis.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
We can simulate boiling point elevation or vapor-pressure curves numerically. The following VPython/GlowScript code models the Clausius–Clapeyron equation to generate a vapor pressure vs temperature plot:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
import numpy as np&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
R = 8.314&lt;br /&gt;
Hv = 40000    # J/mol&lt;br /&gt;
T0 = 373.15   # K&lt;br /&gt;
P0 = 101325   # Pa&lt;br /&gt;
&lt;br /&gt;
T = np.linspace(320, 400, 200)&lt;br /&gt;
P = P0 * np.exp(-Hv/R * (1/T - 1/T0))&lt;br /&gt;
&lt;br /&gt;
plt.plot(T, P)&lt;br /&gt;
plt.xlabel(&amp;quot;Temperature (K)&amp;quot;)&lt;br /&gt;
plt.ylabel(&amp;quot;Vapor Pressure (Pa)&amp;quot;)&lt;br /&gt;
plt.title(&amp;quot;Vapor Pressure Curve via Clausius-Clapeyron&amp;quot;)&lt;br /&gt;
plt.show()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This simulation demonstrates how small temperature changes dramatically affect vapor pressure, explaining why boiling point shifts with altitude and pressure.&lt;br /&gt;
&lt;br /&gt;
A second computational model simulates boiling point elevation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
Kb = 0.512          # water&lt;br /&gt;
m = np.linspace(0, 5, 200)  # molality range&lt;br /&gt;
i = 2               # NaCl (approx)&lt;br /&gt;
Tb = 100 + Kb * m * i&lt;br /&gt;
&lt;br /&gt;
plt.plot(m, Tb)&lt;br /&gt;
plt.xlabel(&amp;quot;Molality (m)&amp;quot;)&lt;br /&gt;
plt.ylabel(&amp;quot;Boiling Point (°C)&amp;quot;)&lt;br /&gt;
plt.title(&amp;quot;Boiling Point Elevation for NaCl in Water&amp;quot;)&lt;br /&gt;
plt.show()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These visual models help make the equations intuitive.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Below are expanded, step-by-step examples.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
A 1.0 m NaCl solution (i = 2) is prepared in water with K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = 0.512 °C·kg/mol.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\Delta T_b = (0.512)(1.0)(2) = 1.024^\circ C&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
T_b = 100^\circ C + 1.024^\circ C = 101.024^\circ C&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
A liquid boils at 360 K under 0.80 atm. What is its boiling temperature under 1.00 atm?  &lt;br /&gt;
Given: ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; = 32 kJ/mol.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{1.00}{0.80}\right) &lt;br /&gt;
= -\frac{32000}{8.314}\left(\frac{1}{T_B} - \frac{1}{360}\right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Solving gives:  &lt;br /&gt;
\[&lt;br /&gt;
T_B \approx 372\ \text{K}&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
A liquid has vapor pressure 0.50 atm at 300 K and 1.20 atm at an unknown temperature T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;.  &lt;br /&gt;
Use the two-point Clausius–Clapeyron form:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{1.20}{0.50}\right)&lt;br /&gt;
= -\frac{\Delta H_{vap}}{R}\left(\frac{1}{T_2} - \frac{1}{300}\right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Solving:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
T_2 \approx 345\ \text{K}&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
More problems:  &lt;br /&gt;
[http://www.chemteam.info/Solutions/BP-elevation-probs1-to-10.html Boiling Point Elevation]&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
&lt;br /&gt;
Boiling point matters in many real-world contexts:&lt;br /&gt;
&lt;br /&gt;
* **Cooking:** Salt slightly raises water’s boiling temperature; pressure cookers increase pressure to cook food faster.  &lt;br /&gt;
* **Chemical engineering:** Distillation relies entirely on different boiling points.  &lt;br /&gt;
* **Meteorology:** Atmospheric pressure affects evaporation and cloud formation.  &lt;br /&gt;
* **Food production:** Sugar concentration is monitored via boiling temperature in candy-making.  &lt;br /&gt;
* **Medicine:** Autoclaves use high-pressure steam to sterilize tools.  &lt;br /&gt;
&lt;br /&gt;
Boiling point connects physics, chemistry, engineering, and environmental science.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
* **Ancient origins:** Philo and Hero of Alexandria described early thermometric principles and steam devices.  &lt;br /&gt;
* **1741:** Anders Celsius defined his temperature scale using the boiling and melting points of water (later reversed to the modern form).  &lt;br /&gt;
* **19th century:** Clapeyron and Clausius formalized the vapor‐pressure–temperature relationship, laying the foundation for phase diagrams and thermodynamics.  &lt;br /&gt;
&lt;br /&gt;
The study of boiling was central to the development of thermometers, steam engines, and modern heat science.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [[Melting Point]]  &lt;br /&gt;
* [[Vapor Pressure]]  &lt;br /&gt;
* [[Clausius–Clapeyron Equation]]  &lt;br /&gt;
* [[Phase Diagram]]  &lt;br /&gt;
* [[Colligative Properties]]  &lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* [https://www.chem.purdue.edu/gchelp/liquids/boil.html Purdue – Boiling]  &lt;br /&gt;
* [http://www.britannica.com/science/boiling-point Britannica – Boiling Point]  &lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Boiling_point Boiling Point – Wikipedia]  &lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ehow.com/info_8344665_uses-boiling-point-elevation.html Uses of Boiling Point Elevation]  &lt;br /&gt;
* [http://www.chemteam.info/Solutions/BP-elevation.html Boiling Point Elevation]  &lt;br /&gt;
* [https://www.chem.tamu.edu/class/majors/tutorialnotefiles/intext.htm Chemistry Basics]  &lt;br /&gt;
* [http://chemed.chem.purdue.edu/genchem/topicreview/bp/ch14/melting.php Melting / Freezing / Boiling]  &lt;br /&gt;
* [http://didyouknow.org/celsius/ Boiling Point of Water]  &lt;br /&gt;
&lt;br /&gt;
[[Category:Properties of Matter]]&lt;/div&gt;</summary>
		<author><name>Chrisli</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47638</id>
		<title>Boiling Point</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47638"/>
		<updated>2025-12-02T02:59:50Z</updated>

		<summary type="html">&lt;p&gt;Chrisli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by Chris Li (Fall 2025)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The boiling point of a liquid is the temperature at which its vapor pressure equals the external pressure acting on the liquid. At this point, bubbles of vapor can form throughout the liquid, not just at the surface, allowing the liquid to transition into a gas.&lt;br /&gt;
&lt;br /&gt;
Because vapor pressure changes rapidly with temperature, the boiling point is not a fixed property—rather, it depends on:&lt;br /&gt;
&lt;br /&gt;
* **External pressure** (higher pressure → higher boiling point; lower pressure → lower boiling point)&lt;br /&gt;
* **Chemical composition** (different liquids boil at different temperatures)&lt;br /&gt;
* **Solutes dissolved in the liquid**, which raise the boiling point (a colligative property)&lt;br /&gt;
&lt;br /&gt;
Boiling point is important in thermodynamics, cooking, meteorology, chemical engineering, distillation, and phase equilibrium.&lt;br /&gt;
&lt;br /&gt;
[[File:Boiling-water.jpg|center|350px|thumb|Boiling occurs when vapor pressure equals external pressure.]]&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Boiling phenomena can be described mathematically using two major relationships:&lt;br /&gt;
&lt;br /&gt;
* **Clausius–Clapeyron Equation** → relates vapor pressure and temperature  &lt;br /&gt;
* **Boiling Point Elevation Equation** → describes how dissolved solutes raise the boiling point  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Clausius–Clapeyron Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Used to calculate the boiling temperature at a new pressure when ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; and a reference boiling point are known.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{P}{P_0}\right)&lt;br /&gt;
= -\frac{\Delta H_{vap}}{R} \left( \frac{1}{T_B} - \frac{1}{T_0} \right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
[[File:ClausiusClapeyron.png|center|400px|thumb|Graph of vapor pressure vs temperature illustrating boiling point.]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Variable definitions:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – boiling temperature at pressure P  &lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – known temperature at pressure P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;  &lt;br /&gt;
* &#039;&#039;&#039;P&#039;&#039;&#039; – new vapor pressure  &lt;br /&gt;
* &#039;&#039;&#039;P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – reference vapor pressure  &lt;br /&gt;
* &#039;&#039;&#039;ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – heat of vaporization  &lt;br /&gt;
* &#039;&#039;&#039;R&#039;&#039;&#039; – ideal gas constant (8.314 J·mol&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;·K&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Boiling Point Elevation Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Dissolving solute particles raises the boiling point of a solvent:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\Delta T_b = K_b \, b_B&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Where:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = T&amp;lt;sub&amp;gt;b,solution&amp;lt;/sub&amp;gt; − T&amp;lt;sub&amp;gt;b,solvent&amp;lt;/sub&amp;gt;  &lt;br /&gt;
* &#039;&#039;&#039;K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = ebullioscopic constant  &lt;br /&gt;
* &#039;&#039;&#039;b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = effective molality: b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; · i  &lt;br /&gt;
* &#039;&#039;&#039;i&#039;&#039;&#039; = van’t Hoff factor  &lt;br /&gt;
&lt;br /&gt;
[[File:BoilingPointElevation.png|center|350px|thumb|Boiling point elevation vs solute concentration.]]&lt;br /&gt;
&lt;br /&gt;
This equation is central in colligative property analysis.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
We can simulate boiling point elevation or vapor-pressure curves numerically. The following VPython/GlowScript code models the Clausius–Clapeyron equation to generate a vapor pressure vs temperature plot:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
import numpy as np&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
R = 8.314&lt;br /&gt;
Hv = 40000    # J/mol&lt;br /&gt;
T0 = 373.15   # K&lt;br /&gt;
P0 = 101325   # Pa&lt;br /&gt;
&lt;br /&gt;
T = np.linspace(320, 400, 200)&lt;br /&gt;
P = P0 * np.exp(-Hv/R * (1/T - 1/T0))&lt;br /&gt;
&lt;br /&gt;
plt.plot(T, P)&lt;br /&gt;
plt.xlabel(&amp;quot;Temperature (K)&amp;quot;)&lt;br /&gt;
plt.ylabel(&amp;quot;Vapor Pressure (Pa)&amp;quot;)&lt;br /&gt;
plt.title(&amp;quot;Vapor Pressure Curve via Clausius-Clapeyron&amp;quot;)&lt;br /&gt;
plt.show()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This simulation demonstrates how small temperature changes dramatically affect vapor pressure, explaining why boiling point shifts with altitude and pressure.&lt;br /&gt;
&lt;br /&gt;
A second computational model simulates boiling point elevation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
Kb = 0.512          # water&lt;br /&gt;
m = np.linspace(0, 5, 200)  # molality range&lt;br /&gt;
i = 2               # NaCl (approx)&lt;br /&gt;
Tb = 100 + Kb * m * i&lt;br /&gt;
&lt;br /&gt;
plt.plot(m, Tb)&lt;br /&gt;
plt.xlabel(&amp;quot;Molality (m)&amp;quot;)&lt;br /&gt;
plt.ylabel(&amp;quot;Boiling Point (°C)&amp;quot;)&lt;br /&gt;
plt.title(&amp;quot;Boiling Point Elevation for NaCl in Water&amp;quot;)&lt;br /&gt;
plt.show()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These visual models help make the equations intuitive.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Below are expanded, step-by-step examples.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
A 1.0 m NaCl solution (i = 2) is prepared in water with K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = 0.512 °C·kg/mol.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\Delta T_b = (0.512)(1.0)(2) = 1.024^\circ C&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
T_b = 100^\circ C + 1.024^\circ C = 101.024^\circ C&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
A liquid boils at 360 K under 0.80 atm. What is its boiling temperature under 1.00 atm?  &lt;br /&gt;
Given: ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; = 32 kJ/mol.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{1.00}{0.80}\right) &lt;br /&gt;
= -\frac{32000}{8.314}\left(\frac{1}{T_B} - \frac{1}{360}\right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Solving gives:  &lt;br /&gt;
\[&lt;br /&gt;
T_B \approx 372\ \text{K}&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
A liquid has vapor pressure 0.50 atm at 300 K and 1.20 atm at an unknown temperature T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;.  &lt;br /&gt;
Use the two-point Clausius–Clapeyron form:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{1.20}{0.50}\right)&lt;br /&gt;
= -\frac{\Delta H_{vap}}{R}\left(\frac{1}{T_2} - \frac{1}{300}\right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Solving:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
T_2 \approx 345\ \text{K}&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
More problems:  &lt;br /&gt;
[http://www.chemteam.info/Solutions/BP-elevation-probs1-to-10.html Boiling Point Elevation]&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
&lt;br /&gt;
Boiling point matters in many real-world contexts:&lt;br /&gt;
&lt;br /&gt;
* **Cooking:** Salt slightly raises water’s boiling temperature; pressure cookers increase pressure to cook food faster.  &lt;br /&gt;
* **Chemical engineering:** Distillation relies entirely on different boiling points.  &lt;br /&gt;
* **Meteorology:** Atmospheric pressure affects evaporation and cloud formation.  &lt;br /&gt;
* **Food production:** Sugar concentration is monitored via boiling temperature in candy-making.  &lt;br /&gt;
* **Medicine:** Autoclaves use high-pressure steam to sterilize tools.  &lt;br /&gt;
&lt;br /&gt;
Boiling point connects physics, chemistry, engineering, and environmental science.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
* **Ancient origins:** Philo and Hero of Alexandria described early thermometric principles and steam devices.  &lt;br /&gt;
* **1741:** Anders Celsius defined his temperature scale using the boiling and melting points of water (later reversed to the modern form).  &lt;br /&gt;
* **19th century:** Clapeyron and Clausius formalized the vapor‐pressure–temperature relationship, laying the foundation for phase diagrams and thermodynamics.  &lt;br /&gt;
&lt;br /&gt;
The study of boiling was central to the development of thermometers, steam engines, and modern heat science.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [[Melting Point]]  &lt;br /&gt;
* [[Vapor Pressure]]  &lt;br /&gt;
* [[Clausius–Clapeyron Equation]]  &lt;br /&gt;
* [[Phase Diagram]]  &lt;br /&gt;
* [[Colligative Properties]]  &lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* [https://www.chem.purdue.edu/gchelp/liquids/boil.html Purdue – Boiling]  &lt;br /&gt;
* [http://www.britannica.com/science/boiling-point Britannica – Boiling Point]  &lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Boiling_point Boiling Point – Wikipedia]  &lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ehow.com/info_8344665_uses-boiling-point-elevation.html Uses of Boiling Point Elevation]  &lt;br /&gt;
* [http://www.chemteam.info/Solutions/BP-elevation.html Boiling Point Elevation]  &lt;br /&gt;
* [https://www.chem.tamu.edu/class/majors/tutorialnotefiles/intext.htm Chemistry Basics]  &lt;br /&gt;
* [http://chemed.chem.purdue.edu/genchem/topicreview/bp/ch14/melting.php Melting / Freezing / Boiling]  &lt;br /&gt;
* [http://didyouknow.org/celsius/ Boiling Point of Water]  &lt;br /&gt;
&lt;br /&gt;
[[Category:Properties of Matter]]&lt;/div&gt;</summary>
		<author><name>Chrisli</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Boiling-water.webp&amp;diff=47637</id>
		<title>File:Boiling-water.webp</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Boiling-water.webp&amp;diff=47637"/>
		<updated>2025-12-02T02:58:56Z</updated>

		<summary type="html">&lt;p&gt;Chrisli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Chrisli</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47636</id>
		<title>Boiling Point</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47636"/>
		<updated>2025-12-02T02:57:52Z</updated>

		<summary type="html">&lt;p&gt;Chrisli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by Chris Li (Fall 2025)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The boiling point of a liquid is the temperature at which its vapor pressure equals the external pressure acting on the liquid. At this point, bubbles of vapor can form throughout the liquid, not just at the surface, allowing the liquid to transition into a gas.&lt;br /&gt;
&lt;br /&gt;
Because vapor pressure changes rapidly with temperature, the boiling point is not a fixed property—rather, it depends on:&lt;br /&gt;
&lt;br /&gt;
* **External pressure** (higher pressure → higher boiling point; lower pressure → lower boiling point)&lt;br /&gt;
* **Chemical composition** (different liquids boil at different temperatures)&lt;br /&gt;
* **Solutes dissolved in the liquid**, which raise the boiling point (a colligative property)&lt;br /&gt;
&lt;br /&gt;
Boiling point is important in thermodynamics, cooking, meteorology, chemical engineering, distillation, and phase equilibrium.&lt;br /&gt;
&lt;br /&gt;
[[File:Boiling-water.jpg|center|350px|thumb|Boiling occurs when vapor pressure equals external pressure.]]&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
&lt;br /&gt;
Boiling phenomena can be described mathematically using two major relationships:&lt;br /&gt;
&lt;br /&gt;
* **Clausius–Clapeyron Equation** → relates vapor pressure and temperature  &lt;br /&gt;
* **Boiling Point Elevation Equation** → describes how dissolved solutes raise the boiling point  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Clausius–Clapeyron Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Used to calculate the boiling temperature at a new pressure when ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; and a reference boiling point are known.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{P}{P_0}\right)&lt;br /&gt;
= -\frac{\Delta H_{vap}}{R} \left( \frac{1}{T_B} - \frac{1}{T_0} \right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
[[File:ClausiusClapeyron.png|center|Graph of vapor pressure vs temperature illustrating boiling point.]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Variable definitions:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – boiling temperature at pressure P  &lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – known temperature at pressure P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;  &lt;br /&gt;
* &#039;&#039;&#039;P&#039;&#039;&#039; – new vapor pressure  &lt;br /&gt;
* &#039;&#039;&#039;P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – reference vapor pressure  &lt;br /&gt;
* &#039;&#039;&#039;ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – heat of vaporization  &lt;br /&gt;
* &#039;&#039;&#039;R&#039;&#039;&#039; – ideal gas constant (8.314 J·mol&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;·K&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Boiling Point Elevation Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Dissolving solute particles raises the boiling point of a solvent:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\Delta T_b = K_b \, b_B&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Where:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = T&amp;lt;sub&amp;gt;b,solution&amp;lt;/sub&amp;gt; − T&amp;lt;sub&amp;gt;b,solvent&amp;lt;/sub&amp;gt;  &lt;br /&gt;
* &#039;&#039;&#039;K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = ebullioscopic constant  &lt;br /&gt;
* &#039;&#039;&#039;b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = effective molality: b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; · i  &lt;br /&gt;
* &#039;&#039;&#039;i&#039;&#039;&#039; = van’t Hoff factor  &lt;br /&gt;
&lt;br /&gt;
[[File:BoilingPointElevation.png|center|350px|thumb|Boiling point elevation vs solute concentration.]]&lt;br /&gt;
&lt;br /&gt;
This equation is central in colligative property analysis.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
We can simulate boiling point elevation or vapor-pressure curves numerically. The following VPython/GlowScript code models the Clausius–Clapeyron equation to generate a vapor pressure vs temperature plot:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
import numpy as np&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
R = 8.314&lt;br /&gt;
Hv = 40000    # J/mol&lt;br /&gt;
T0 = 373.15   # K&lt;br /&gt;
P0 = 101325   # Pa&lt;br /&gt;
&lt;br /&gt;
T = np.linspace(320, 400, 200)&lt;br /&gt;
P = P0 * np.exp(-Hv/R * (1/T - 1/T0))&lt;br /&gt;
&lt;br /&gt;
plt.plot(T, P)&lt;br /&gt;
plt.xlabel(&amp;quot;Temperature (K)&amp;quot;)&lt;br /&gt;
plt.ylabel(&amp;quot;Vapor Pressure (Pa)&amp;quot;)&lt;br /&gt;
plt.title(&amp;quot;Vapor Pressure Curve via Clausius-Clapeyron&amp;quot;)&lt;br /&gt;
plt.show()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This simulation demonstrates how small temperature changes dramatically affect vapor pressure, explaining why boiling point shifts with altitude and pressure.&lt;br /&gt;
&lt;br /&gt;
A second computational model simulates boiling point elevation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
Kb = 0.512          # water&lt;br /&gt;
m = np.linspace(0, 5, 200)  # molality range&lt;br /&gt;
i = 2               # NaCl (approx)&lt;br /&gt;
Tb = 100 + Kb * m * i&lt;br /&gt;
&lt;br /&gt;
plt.plot(m, Tb)&lt;br /&gt;
plt.xlabel(&amp;quot;Molality (m)&amp;quot;)&lt;br /&gt;
plt.ylabel(&amp;quot;Boiling Point (°C)&amp;quot;)&lt;br /&gt;
plt.title(&amp;quot;Boiling Point Elevation for NaCl in Water&amp;quot;)&lt;br /&gt;
plt.show()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These visual models help make the equations intuitive.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Below are expanded, step-by-step examples.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
A 1.0 m NaCl solution (i = 2) is prepared in water with K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = 0.512 °C·kg/mol.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\Delta T_b = (0.512)(1.0)(2) = 1.024^\circ C&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
T_b = 100^\circ C + 1.024^\circ C = 101.024^\circ C&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
A liquid boils at 360 K under 0.80 atm. What is its boiling temperature under 1.00 atm?  &lt;br /&gt;
Given: ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; = 32 kJ/mol.&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{1.00}{0.80}\right) &lt;br /&gt;
= -\frac{32000}{8.314}\left(\frac{1}{T_B} - \frac{1}{360}\right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Solving gives:  &lt;br /&gt;
\[&lt;br /&gt;
T_B \approx 372\ \text{K}&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
A liquid has vapor pressure 0.50 atm at 300 K and 1.20 atm at an unknown temperature T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;.  &lt;br /&gt;
Use the two-point Clausius–Clapeyron form:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
\ln\left(\frac{1.20}{0.50}\right)&lt;br /&gt;
= -\frac{\Delta H_{vap}}{R}\left(\frac{1}{T_2} - \frac{1}{300}\right)&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
Solving:&lt;br /&gt;
&lt;br /&gt;
\[&lt;br /&gt;
T_2 \approx 345\ \text{K}&lt;br /&gt;
\]&lt;br /&gt;
&lt;br /&gt;
More problems:  &lt;br /&gt;
[http://www.chemteam.info/Solutions/BP-elevation-probs1-to-10.html Boiling Point Elevation]&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
&lt;br /&gt;
Boiling point matters in many real-world contexts:&lt;br /&gt;
&lt;br /&gt;
* **Cooking:** Salt slightly raises water’s boiling temperature; pressure cookers increase pressure to cook food faster.  &lt;br /&gt;
* **Chemical engineering:** Distillation relies entirely on different boiling points.  &lt;br /&gt;
* **Meteorology:** Atmospheric pressure affects evaporation and cloud formation.  &lt;br /&gt;
* **Food production:** Sugar concentration is monitored via boiling temperature in candy-making.  &lt;br /&gt;
* **Medicine:** Autoclaves use high-pressure steam to sterilize tools.  &lt;br /&gt;
&lt;br /&gt;
Boiling point connects physics, chemistry, engineering, and environmental science.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
* **Ancient origins:** Philo and Hero of Alexandria described early thermometric principles and steam devices.  &lt;br /&gt;
* **1741:** Anders Celsius defined his temperature scale using the boiling and melting points of water (later reversed to the modern form).  &lt;br /&gt;
* **19th century:** Clapeyron and Clausius formalized the vapor‐pressure–temperature relationship, laying the foundation for phase diagrams and thermodynamics.  &lt;br /&gt;
&lt;br /&gt;
The study of boiling was central to the development of thermometers, steam engines, and modern heat science.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [[Melting Point]]  &lt;br /&gt;
* [[Vapor Pressure]]  &lt;br /&gt;
* [[Clausius–Clapeyron Equation]]  &lt;br /&gt;
* [[Phase Diagram]]  &lt;br /&gt;
* [[Colligative Properties]]  &lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* [https://www.chem.purdue.edu/gchelp/liquids/boil.html Purdue – Boiling]  &lt;br /&gt;
* [http://www.britannica.com/science/boiling-point Britannica – Boiling Point]  &lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Boiling_point Boiling Point – Wikipedia]  &lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ehow.com/info_8344665_uses-boiling-point-elevation.html Uses of Boiling Point Elevation]  &lt;br /&gt;
* [http://www.chemteam.info/Solutions/BP-elevation.html Boiling Point Elevation]  &lt;br /&gt;
* [https://www.chem.tamu.edu/class/majors/tutorialnotefiles/intext.htm Chemistry Basics]  &lt;br /&gt;
* [http://chemed.chem.purdue.edu/genchem/topicreview/bp/ch14/melting.php Melting / Freezing / Boiling]  &lt;br /&gt;
* [http://didyouknow.org/celsius/ Boiling Point of Water]  &lt;br /&gt;
&lt;br /&gt;
[[Category:Properties of Matter]]&lt;/div&gt;</summary>
		<author><name>Chrisli</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47635</id>
		<title>Boiling Point</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47635"/>
		<updated>2025-12-02T02:49:18Z</updated>

		<summary type="html">&lt;p&gt;Chrisli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed and edited by Chris Li (Fall 2025)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The boiling point of a liquid is the temperature at which its vapor pressure becomes equal to the external pressure around it, allowing the liquid to transition into vapor. Because vapor pressure depends on temperature, the boiling point changes when pressure changes. At high external pressure, a liquid boils at a higher temperature; at low external pressure (such as at high altitudes or in a partial vacuum), the boiling point is lower. &lt;br /&gt;
&lt;br /&gt;
Boiling point also varies from substance to substance, since different liquids have different intermolecular forces and vapor pressure curves. These principles are important for chemistry, cooking, engineering, distillation, and everyday processes involving heat transfer.&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
Two major equations help model boiling point behavior: the Clausius–Clapeyron equation and the boiling point elevation equation.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Clausius–Clapeyron Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This equation is used when the vapor pressure at one temperature and the heat of vaporization are known, and the goal is to determine the boiling point at a different pressure.&lt;br /&gt;
&lt;br /&gt;
[[File:ClausiusClapeyron.png]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Constants in the equation:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – boiling temperature at pressure P  &lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – reference temperature corresponding to pressure P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;  &lt;br /&gt;
* &#039;&#039;&#039;R&#039;&#039;&#039; – ideal gas constant (8.314 J·mol&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;·K&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;)  &lt;br /&gt;
* &#039;&#039;&#039;P&#039;&#039;&#039; – vapor pressure at desired boiling conditions  &lt;br /&gt;
* &#039;&#039;&#039;P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – vapor pressure at reference conditions  &lt;br /&gt;
* &#039;&#039;&#039;ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – heat of vaporization  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Boiling Point Elevation Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This describes how adding a solute to a solvent increases its boiling point:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; · b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Where:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – boiling point elevation (T&amp;lt;sub&amp;gt;b,solution&amp;lt;/sub&amp;gt; − T&amp;lt;sub&amp;gt;b,solvent&amp;lt;/sub&amp;gt;)  &lt;br /&gt;
* &#039;&#039;&#039;K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – [[Ebullioscopic constant]]  &lt;br /&gt;
* &#039;&#039;&#039;b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – molality of solute particles, b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; = b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; · i  &lt;br /&gt;
* &#039;&#039;&#039;i&#039;&#039;&#039; – van&#039;t Hoff factor (number of dissolved particles produced per solute molecule)&lt;br /&gt;
&lt;br /&gt;
These equations model how temperature, pressure, and solute concentration affect boiling point.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A computational model for boiling point elevation begins by defining relevant constants:&lt;br /&gt;
&lt;br /&gt;
* K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = ebullioscopic constant  &lt;br /&gt;
* b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; = molality of the solute  &lt;br /&gt;
* i = van’t Hoff factor  &lt;br /&gt;
* b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; = b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; · i  &lt;br /&gt;
&lt;br /&gt;
Then compute:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; · b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A program can simulate increasing solute concentration and produce a temperature–concentration graph showing how boiling point rises.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Below are structured examples following the Physics Book template.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
A 1.0 m NaCl solution (i = 2) is prepared in water with K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = 0.512 K·kg/mol.&lt;br /&gt;
&lt;br /&gt;
ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = (0.512)(1.0)(2) = 1.024°C  &lt;br /&gt;
T&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = 100°C + 1.024°C = 101.024°C&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
A substance has vapor pressure P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; = 0.80 atm at T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; = 360 K.  &lt;br /&gt;
Find T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; at pressure P = 1.00 atm using Clausius–Clapeyron and ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; = 32,000 J/mol.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;&lt;br /&gt;
\ln\left(\frac{1.00}{0.80}\right)&lt;br /&gt;
= -\frac{32000}{8.314}\left(\frac{1}{T_B} - \frac{1}{360}\right)&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Solving gives T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; ≈ 372 K.&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
A liquid has P&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; = 0.50 atm at T&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; = 300 K and P&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; = 1.20 atm at T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;.  &lt;br /&gt;
Assume ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; is constant.&lt;br /&gt;
&lt;br /&gt;
Use the two-point Clausius–Clapeyron form:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;&lt;br /&gt;
\ln\left(\frac{1.20}{0.50}\right)&lt;br /&gt;
= -\frac{\Delta H_{vap}}{R}\left(\frac{1}{T_2} - \frac{1}{300}\right)&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Solving yields T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; ≈ 345 K.&lt;br /&gt;
&lt;br /&gt;
More practice problems can be found here:  &lt;br /&gt;
[http://www.chemteam.info/Solutions/BP-elevation-probs1-to-10.html Boiling Point Elevation]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
Boiling point is crucial in real-world applications:&lt;br /&gt;
&lt;br /&gt;
* **Cooking:** Adding salt slightly raises boiling point (though only by a small amount).  &lt;br /&gt;
* **Chemical engineering:** Boiling and vaporization are central to distillation, separation, and refining.  &lt;br /&gt;
* **Food and sugar processing:** Syrup concentration changes boiling temperature, which indicates sugar content.  &lt;br /&gt;
* **Environmental science:** Atmospheric pressure variations affect evaporation and boiling.  &lt;br /&gt;
&lt;br /&gt;
This topic connects strongly to chemistry, thermodynamics, and material science.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
In 1741, Anders Celsius proposed a temperature scale using the boiling and melting points of water.  &lt;br /&gt;
Earlier Greek scientists such as Philo and Hero of Alexandria described primitive thermometric principles and explored steam power concepts.  &lt;br /&gt;
Celsius originally labeled the boiling point as 0° and freezing point as 100°, which was later reversed to form the modern Celsius scale.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Melting Point]]&lt;br /&gt;
* [[Vapor Pressure]]&lt;br /&gt;
* [[Clausius–Clapeyron Equation]]&lt;br /&gt;
* [[Phase Diagram]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* [https://www.chem.purdue.edu/gchelp/liquids/boil.html Boiling – Purdue Chemistry]  &lt;br /&gt;
* [http://www.britannica.com/science/boiling-point Boiling Point – Britannica]&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Boiling_point Boiling Point – Wikipedia]  &lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ehow.com/info_8344665_uses-boiling-point-elevation.html Uses of Boiling Point Elevation]  &lt;br /&gt;
* [http://www.chemteam.info/Solutions/BP-elevation.html Boiling Point Elevation Problems]  &lt;br /&gt;
* [https://www.chem.tamu.edu/class/majors/tutorialnotefiles/intext.htm Chemistry Basics – TAMU]  &lt;br /&gt;
* [http://chemed.chem.purdue.edu/genchem/topicreview/bp/ch14/melting.php Melting/Freezing/Boiling Points – Purdue]  &lt;br /&gt;
* [http://didyouknow.org/celsius/ Boiling Point of Water]  &lt;br /&gt;
&lt;br /&gt;
[[Category:Properties of Matter]]&lt;/div&gt;</summary>
		<author><name>Chrisli</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47634</id>
		<title>Boiling Point</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47634"/>
		<updated>2025-12-02T02:47:55Z</updated>

		<summary type="html">&lt;p&gt;Chrisli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed and edited by Chris Li (Fall 2025)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The boiling point of a liquid is the temperature at which its vapor pressure becomes equal to the external pressure around it, allowing the liquid to transition into vapor. Because vapor pressure depends on temperature, the boiling point changes when pressure changes. At high external pressure, a liquid boils at a higher temperature; at low external pressure (such as at high altitudes or in a partial vacuum), the boiling point is lower. &lt;br /&gt;
&lt;br /&gt;
Boiling point also varies from substance to substance, since different liquids have different intermolecular forces and vapor pressure curves. These principles are important for chemistry, cooking, engineering, distillation, and everyday processes involving heat transfer.&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
Two major equations help model boiling point behavior: the Clausius–Clapeyron equation and the boiling point elevation equation.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Clausius–Clapeyron Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This equation is used when the vapor pressure at one temperature and the heat of vaporization are known, and the goal is to determine the boiling point at a different pressure.&lt;br /&gt;
&lt;br /&gt;
[[File:ClausiusClapeyron.png|center|400px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Constants in the equation:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – boiling temperature at pressure P  &lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – reference temperature corresponding to pressure P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;  &lt;br /&gt;
* &#039;&#039;&#039;R&#039;&#039;&#039; – ideal gas constant (8.314 J·mol&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;·K&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;)  &lt;br /&gt;
* &#039;&#039;&#039;P&#039;&#039;&#039; – vapor pressure at desired boiling conditions  &lt;br /&gt;
* &#039;&#039;&#039;P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – vapor pressure at reference conditions  &lt;br /&gt;
* &#039;&#039;&#039;ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – heat of vaporization  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Boiling Point Elevation Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This describes how adding a solute to a solvent increases its boiling point:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; · b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Where:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – boiling point elevation (T&amp;lt;sub&amp;gt;b,solution&amp;lt;/sub&amp;gt; − T&amp;lt;sub&amp;gt;b,solvent&amp;lt;/sub&amp;gt;)  &lt;br /&gt;
* &#039;&#039;&#039;K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – [[Ebullioscopic constant]]  &lt;br /&gt;
* &#039;&#039;&#039;b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – molality of solute particles, b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; = b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; · i  &lt;br /&gt;
* &#039;&#039;&#039;i&#039;&#039;&#039; – van&#039;t Hoff factor (number of dissolved particles produced per solute molecule)&lt;br /&gt;
&lt;br /&gt;
These equations model how temperature, pressure, and solute concentration affect boiling point.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A computational model for boiling point elevation begins by defining relevant constants:&lt;br /&gt;
&lt;br /&gt;
* K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = ebullioscopic constant  &lt;br /&gt;
* b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; = molality of the solute  &lt;br /&gt;
* i = van’t Hoff factor  &lt;br /&gt;
* b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; = b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; · i  &lt;br /&gt;
&lt;br /&gt;
Then compute:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; · b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A program can simulate increasing solute concentration and produce a temperature–concentration graph showing how boiling point rises.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Below are structured examples following the Physics Book template.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
A 1.0 m NaCl solution (i = 2) is prepared in water with K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = 0.512 K·kg/mol.&lt;br /&gt;
&lt;br /&gt;
ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = (0.512)(1.0)(2) = 1.024°C  &lt;br /&gt;
T&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = 100°C + 1.024°C = 101.024°C&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
A substance has vapor pressure P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; = 0.80 atm at T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; = 360 K.  &lt;br /&gt;
Find T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; at pressure P = 1.00 atm using Clausius–Clapeyron and ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; = 32,000 J/mol.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;&lt;br /&gt;
\ln\left(\frac{1.00}{0.80}\right)&lt;br /&gt;
= -\frac{32000}{8.314}\left(\frac{1}{T_B} - \frac{1}{360}\right)&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Solving gives T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; ≈ 372 K.&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
A liquid has P&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; = 0.50 atm at T&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; = 300 K and P&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; = 1.20 atm at T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;.  &lt;br /&gt;
Assume ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; is constant.&lt;br /&gt;
&lt;br /&gt;
Use the two-point Clausius–Clapeyron form:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;&lt;br /&gt;
\ln\left(\frac{1.20}{0.50}\right)&lt;br /&gt;
= -\frac{\Delta H_{vap}}{R}\left(\frac{1}{T_2} - \frac{1}{300}\right)&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Solving yields T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; ≈ 345 K.&lt;br /&gt;
&lt;br /&gt;
More practice problems can be found here:  &lt;br /&gt;
[http://www.chemteam.info/Solutions/BP-elevation-probs1-to-10.html Boiling Point Elevation]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
Boiling point is crucial in real-world applications:&lt;br /&gt;
&lt;br /&gt;
* **Cooking:** Adding salt slightly raises boiling point (though only by a small amount).  &lt;br /&gt;
* **Chemical engineering:** Boiling and vaporization are central to distillation, separation, and refining.  &lt;br /&gt;
* **Food and sugar processing:** Syrup concentration changes boiling temperature, which indicates sugar content.  &lt;br /&gt;
* **Environmental science:** Atmospheric pressure variations affect evaporation and boiling.  &lt;br /&gt;
&lt;br /&gt;
This topic connects strongly to chemistry, thermodynamics, and material science.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
In 1741, Anders Celsius proposed a temperature scale using the boiling and melting points of water.  &lt;br /&gt;
Earlier Greek scientists such as Philo and Hero of Alexandria described primitive thermometric principles and explored steam power concepts.  &lt;br /&gt;
Celsius originally labeled the boiling point as 0° and freezing point as 100°, which was later reversed to form the modern Celsius scale.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Melting Point]]&lt;br /&gt;
* [[Vapor Pressure]]&lt;br /&gt;
* [[Clausius–Clapeyron Equation]]&lt;br /&gt;
* [[Phase Diagram]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* [https://www.chem.purdue.edu/gchelp/liquids/boil.html Boiling – Purdue Chemistry]  &lt;br /&gt;
* [http://www.britannica.com/science/boiling-point Boiling Point – Britannica]&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Boiling_point Boiling Point – Wikipedia]  &lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ehow.com/info_8344665_uses-boiling-point-elevation.html Uses of Boiling Point Elevation]  &lt;br /&gt;
* [http://www.chemteam.info/Solutions/BP-elevation.html Boiling Point Elevation Problems]  &lt;br /&gt;
* [https://www.chem.tamu.edu/class/majors/tutorialnotefiles/intext.htm Chemistry Basics – TAMU]  &lt;br /&gt;
* [http://chemed.chem.purdue.edu/genchem/topicreview/bp/ch14/melting.php Melting/Freezing/Boiling Points – Purdue]  &lt;br /&gt;
* [http://didyouknow.org/celsius/ Boiling Point of Water]  &lt;br /&gt;
&lt;br /&gt;
[[Category:Properties of Matter]]&lt;/div&gt;</summary>
		<author><name>Chrisli</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47633</id>
		<title>Boiling Point</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47633"/>
		<updated>2025-12-02T02:47:43Z</updated>

		<summary type="html">&lt;p&gt;Chrisli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by Chris Li (Fall 2025)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The boiling point of a liquid is the temperature at which its vapor pressure becomes equal to the external pressure around it, allowing the liquid to transition into vapor. Because vapor pressure depends on temperature, the boiling point changes when pressure changes. At high external pressure, a liquid boils at a higher temperature; at low external pressure (such as at high altitudes or in a partial vacuum), the boiling point is lower. &lt;br /&gt;
&lt;br /&gt;
Boiling point also varies from substance to substance, since different liquids have different intermolecular forces and vapor pressure curves. These principles are important for chemistry, cooking, engineering, distillation, and everyday processes involving heat transfer.&lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
Two major equations help model boiling point behavior: the Clausius–Clapeyron equation and the boiling point elevation equation.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Clausius–Clapeyron Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This equation is used when the vapor pressure at one temperature and the heat of vaporization are known, and the goal is to determine the boiling point at a different pressure.&lt;br /&gt;
&lt;br /&gt;
[[File:ClausiusClapeyron.png|center|400px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Constants in the equation:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – boiling temperature at pressure P  &lt;br /&gt;
* &#039;&#039;&#039;T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – reference temperature corresponding to pressure P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;  &lt;br /&gt;
* &#039;&#039;&#039;R&#039;&#039;&#039; – ideal gas constant (8.314 J·mol&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;·K&amp;lt;sup&amp;gt;−1&amp;lt;/sup&amp;gt;)  &lt;br /&gt;
* &#039;&#039;&#039;P&#039;&#039;&#039; – vapor pressure at desired boiling conditions  &lt;br /&gt;
* &#039;&#039;&#039;P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – vapor pressure at reference conditions  &lt;br /&gt;
* &#039;&#039;&#039;ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – heat of vaporization  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Boiling Point Elevation Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This describes how adding a solute to a solvent increases its boiling point:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; · b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Where:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – boiling point elevation (T&amp;lt;sub&amp;gt;b,solution&amp;lt;/sub&amp;gt; − T&amp;lt;sub&amp;gt;b,solvent&amp;lt;/sub&amp;gt;)  &lt;br /&gt;
* &#039;&#039;&#039;K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – [[Ebullioscopic constant]]  &lt;br /&gt;
* &#039;&#039;&#039;b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; – molality of solute particles, b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; = b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; · i  &lt;br /&gt;
* &#039;&#039;&#039;i&#039;&#039;&#039; – van&#039;t Hoff factor (number of dissolved particles produced per solute molecule)&lt;br /&gt;
&lt;br /&gt;
These equations model how temperature, pressure, and solute concentration affect boiling point.&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
A computational model for boiling point elevation begins by defining relevant constants:&lt;br /&gt;
&lt;br /&gt;
* K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = ebullioscopic constant  &lt;br /&gt;
* b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; = molality of the solute  &lt;br /&gt;
* i = van’t Hoff factor  &lt;br /&gt;
* b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; = b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; · i  &lt;br /&gt;
&lt;br /&gt;
Then compute:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; · b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A program can simulate increasing solute concentration and produce a temperature–concentration graph showing how boiling point rises.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
Below are structured examples following the Physics Book template.&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
A 1.0 m NaCl solution (i = 2) is prepared in water with K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = 0.512 K·kg/mol.&lt;br /&gt;
&lt;br /&gt;
ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = (0.512)(1.0)(2) = 1.024°C  &lt;br /&gt;
T&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = 100°C + 1.024°C = 101.024°C&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
A substance has vapor pressure P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; = 0.80 atm at T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; = 360 K.  &lt;br /&gt;
Find T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; at pressure P = 1.00 atm using Clausius–Clapeyron and ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; = 32,000 J/mol.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;&lt;br /&gt;
\ln\left(\frac{1.00}{0.80}\right)&lt;br /&gt;
= -\frac{32000}{8.314}\left(\frac{1}{T_B} - \frac{1}{360}\right)&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Solving gives T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; ≈ 372 K.&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
A liquid has P&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; = 0.50 atm at T&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt; = 300 K and P&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; = 1.20 atm at T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;.  &lt;br /&gt;
Assume ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt; is constant.&lt;br /&gt;
&lt;br /&gt;
Use the two-point Clausius–Clapeyron form:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;&lt;br /&gt;
\ln\left(\frac{1.20}{0.50}\right)&lt;br /&gt;
= -\frac{\Delta H_{vap}}{R}\left(\frac{1}{T_2} - \frac{1}{300}\right)&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Solving yields T&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; ≈ 345 K.&lt;br /&gt;
&lt;br /&gt;
More practice problems can be found here:  &lt;br /&gt;
[http://www.chemteam.info/Solutions/BP-elevation-probs1-to-10.html Boiling Point Elevation]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
Boiling point is crucial in real-world applications:&lt;br /&gt;
&lt;br /&gt;
* **Cooking:** Adding salt slightly raises boiling point (though only by a small amount).  &lt;br /&gt;
* **Chemical engineering:** Boiling and vaporization are central to distillation, separation, and refining.  &lt;br /&gt;
* **Food and sugar processing:** Syrup concentration changes boiling temperature, which indicates sugar content.  &lt;br /&gt;
* **Environmental science:** Atmospheric pressure variations affect evaporation and boiling.  &lt;br /&gt;
&lt;br /&gt;
This topic connects strongly to chemistry, thermodynamics, and material science.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
In 1741, Anders Celsius proposed a temperature scale using the boiling and melting points of water.  &lt;br /&gt;
Earlier Greek scientists such as Philo and Hero of Alexandria described primitive thermometric principles and explored steam power concepts.  &lt;br /&gt;
Celsius originally labeled the boiling point as 0° and freezing point as 100°, which was later reversed to form the modern Celsius scale.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Melting Point]]&lt;br /&gt;
* [[Vapor Pressure]]&lt;br /&gt;
* [[Clausius–Clapeyron Equation]]&lt;br /&gt;
* [[Phase Diagram]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
* [https://www.chem.purdue.edu/gchelp/liquids/boil.html Boiling – Purdue Chemistry]  &lt;br /&gt;
* [http://www.britannica.com/science/boiling-point Boiling Point – Britannica]&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Boiling_point Boiling Point – Wikipedia]  &lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
* [http://www.ehow.com/info_8344665_uses-boiling-point-elevation.html Uses of Boiling Point Elevation]  &lt;br /&gt;
* [http://www.chemteam.info/Solutions/BP-elevation.html Boiling Point Elevation Problems]  &lt;br /&gt;
* [https://www.chem.tamu.edu/class/majors/tutorialnotefiles/intext.htm Chemistry Basics – TAMU]  &lt;br /&gt;
* [http://chemed.chem.purdue.edu/genchem/topicreview/bp/ch14/melting.php Melting/Freezing/Boiling Points – Purdue]  &lt;br /&gt;
* [http://didyouknow.org/celsius/ Boiling Point of Water]  &lt;br /&gt;
&lt;br /&gt;
[[Category:Properties of Matter]]&lt;/div&gt;</summary>
		<author><name>Chrisli</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47632</id>
		<title>Boiling Point</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Boiling_Point&amp;diff=47632"/>
		<updated>2025-12-02T02:44:28Z</updated>

		<summary type="html">&lt;p&gt;Chrisli: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by Chris Li (Fall 2025)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
Boiling point is a key property of matter in which the vapor pressure of a liquid equals the pressure around the liquid and the liquid turns into a vapor. The boiling point of a substance is highly dependent on the environment around the substance. For example, at a high pressure a liquid has a higher boiling point than it would have at atmospheric pressure. Similarly, at low pressure a liquid has a lower boiling point. Another environmental factor that affects the boiling point of a liquid is whether the liquid is in a partial vacuum. In this state, the boiling point of a liquid will be lower than the boiling point of the same liquid at atmospheric pressure. In addition, different liquids boil at different temperatures for a set pressure. &lt;br /&gt;
&lt;br /&gt;
===A Mathematical Model===&lt;br /&gt;
There are several equations that relate to boiling point, including the Clausius–Clapeyron equation and the boiling point elevation equation. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Clausius-Clapeyron Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This equation should be used when the vapor pressure and heat of vaporization for the liquid are known for a specific temperature and you are trying to calculate the boiling point. &lt;br /&gt;
&lt;br /&gt;
[[File:ClausiusClapeyron.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;The constants in the equation can be defined as:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;T&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = boiling point at the specific temperature&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = temperature at which the liquid boils&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;R&#039;&#039;&#039; = ideal gas constant, 8.3144598 J * &amp;lt;math&amp;gt; mol^{-1} &amp;lt;/math&amp;gt; * &amp;lt;math&amp;gt; K^{-1} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;P&#039;&#039;&#039; = vapor pressure at the specific pressure given&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;P&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = pressure that corresponds to the T&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; used&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ΔH&amp;lt;sub&amp;gt;vap&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = heat of vaporization of the liquid&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Boiling Point Elevation Equation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This equation accounts for a solution&#039;s boiling point being higher than just the solvent&#039;s boiling point. This equation should be used when The equation is:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;· b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;The constants in the equation can be defined as:&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = boiling point elevation, which is equal to T&amp;lt;sub&amp;gt;b, solution&amp;lt;/sub&amp;gt; - T&amp;lt;sub&amp;gt;b, solvent &amp;lt;/sub&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = [[Ebullioscopic constant]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; = Molality of the solution, b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; = b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; · i&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===A Computational Model===&lt;br /&gt;
&lt;br /&gt;
Creating a computational model for this equation would first include initializing the constants below: &lt;br /&gt;
&lt;br /&gt;
K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = &lt;br /&gt;
&lt;br /&gt;
b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt; = b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; · i&lt;br /&gt;
&lt;br /&gt;
i = &lt;br /&gt;
&lt;br /&gt;
b&amp;lt;sub&amp;gt;solute&amp;lt;/sub&amp;gt; = &lt;br /&gt;
&lt;br /&gt;
From here the equation can be used: &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ΔT&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt; = K&amp;lt;sub&amp;gt;b&amp;lt;/sub&amp;gt;· b&amp;lt;sub&amp;gt;B&amp;lt;/sub&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
An example of an easy, middling and difficult problem are included in the link below. An easy example would be problems 3-5, a middling example would be problems 6, 8, 9, and 10. A difficult example would be the bonus problems.&lt;br /&gt;
&lt;br /&gt;
[http://www.chemteam.info/Solutions/BP-elevation-probs1-to-10.html Boiling Point Elevation]&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
Boiling point in itself is very important in many every day processes. It is a very important property that often helps to solve many problems about a system, especially in chemical engineering. &lt;br /&gt;
One universal use for boiling point elevation is in cooking. Adding a solute such as salt to water that you are trying to boil will cause it to be hotter than it would be otherwise when the boiling point has not been elevated. &lt;br /&gt;
A large amount of solute would be necessary to acquire an appreciable increase, however there is a very small increase no matter how much you use. Boiling point elevation is also used in sugar refining; at some points during the process the syrup is boiled and the temperature at which it boils depends on the concentration of sugar at that time.&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
In 1741, Anders Celsius defined his temperature scale on the melting and boiling temperature of water. &lt;br /&gt;
Although Celsius did not discover the thermometer – both Philo and Hero of Alexandria (who also mentioned steam power in 50 BC) described such a principle – his design was much more precise than any previous such invention. &lt;br /&gt;
Celsius scaled his measurements as 0 for boiling point and 100 for freezing point but the order was later reversed.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
For information on melting point, a very similar property, see [[Melting Point]]&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
An article from Purdue:&lt;br /&gt;
&lt;br /&gt;
[https://www.chem.purdue.edu/gchelp/liquids/boil.html Boiling]&lt;br /&gt;
&lt;br /&gt;
An article out of the Britannica Online Encyclopedia:&lt;br /&gt;
&lt;br /&gt;
[http://www.britannica.com/science/boiling-point Boiling Point]&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
&lt;br /&gt;
[https://en.wikipedia.org/wiki/Boiling_point]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
[http://www.ehow.com/info_8344665_uses-boiling-point-elevation.html Uses of Boiling Point Elevation]&lt;br /&gt;
[https://en.wikipedia.org/wiki/Boiling_point]&lt;br /&gt;
[http://www.chemteam.info/Solutions/BP-elevation.html Boiling Point Elevation]&lt;br /&gt;
[https://www.chem.tamu.edu/class/majors/tutorialnotefiles/intext.htm Chemistry Basics]&lt;br /&gt;
[http://chemed.chem.purdue.edu/genchem/topicreview/bp/ch14/melting.php Melting Point, Freezing Point, Boiling Point]&lt;br /&gt;
[http://didyouknow.org/celsius/ Boiling Point of Water]&lt;br /&gt;
[[Category:Properties of Matter]]&lt;/div&gt;</summary>
		<author><name>Chrisli</name></author>
	</entry>
</feed>