The Candle Wick Size Calculator is an essential tool for candlemakers, providing guidance on selecting the optimal wick for specific candle diameters and wax types.
A properly sized wick ensures a clean, even burn, preventing common issues like tunneling or excessive flames.
For a 3-inch diameter soy wax candle, a CD10 wick is typically recommended.
This precision is critical for maximizing fragrance throw, extending burn time, and ensuring the safety and quality of the finished product.
Geometric Principles Behind Candle Burn Dynamics
The selection of a candle wick is fundamentally a problem of geometry and heat transfer, making it a "math" problem in practice.
The candle's diameter dictates the surface area that needs to melt to form a proper melt pool—a crucial factor for effective fragrance throw and preventing tunneling.
The wick acts as a capillary, drawing melted wax up to the flame, where it vaporizes and burns.
If the wick is too small for the diameter, it cannot draw enough fuel to create a melt pool that extends to the container's edges, leading to unused wax.
Conversely, an oversized wick creates too large a flame, consuming wax too quickly and potentially overheating the container.
The ideal wick size precisely balances the fuel supply with the flame's heat output for a given diameter and wax type, creating a consistent melt pool of about 1/4 to 1/2 inch deep.
Understanding Wick Sizing by Diameter and Wax Type
The recommended wick size is determined by a lookup table based on the candle's inner diameter and the specific wax type, as each wax has different burn characteristics.
// Simplified lookup logic based on diameter and wax type
function getWickSize(diameterIn, waxType) {
if (waxType === "soy") {
if (diameterIn <= 2) return "CD4";
if (diameterIn <= 2.5) return "CD6";
if (diameterIn <= 3) return "CD10";
if (diameterIn <= 3.5) return "CD12";
if (diameterIn <= 4) return "CD16 (or double wick)";
}
// ... similar logic for paraffin, coconut-soy, beeswax
return "Consult supplier";
}
This logic ensures that the suggested wick can adequately support the melt pool required for the given diameter and wax burn rate.
Wicking a 3.5-Inch Paraffin Container
A candlemaker is designing a candle in a 3.5-inch diameter container using paraffin wax.
Paraffin is known for having a stronger hot throw and often requires slightly smaller wicks than soy for the same diameter.
- Identify Candle Diameter:
3.5 inches. - Select Wax Type:
Paraffin. - Consult Wick Chart (simulated): For a 3.5-inch paraffin candle, a common recommendation might be an
LX20orCD14. Let's assumeLX20.
The suggested wick for this 3.5-inch paraffin candle would be an LX20, a size known to perform well in this diameter with paraffin's burn characteristics.
Expert Interpretation of Melt Pool and Burn Performance
Candle professionals interpret the melt pool and overall burn performance as key indicators of a properly wicked candle.
They look for a melt pool that reaches the container's edge within 2-4 hours of burning, with a consistent depth of 1/4 to 1/2 inch.
A perfectly wicked candle will consume wax evenly, leaving minimal residue on the sides ("hang-up"), and the flame will be steady, not flickering excessively or producing significant soot.
If the melt pool is too small, it indicates an under-wicked candle, requiring a larger wick size.
Conversely, a melt pool that is too wide or deep, or a flame that is too tall and aggressive, suggests an over-wicked candle, necessitating a smaller wick.
These observations during test burns guide experienced makers in fine-tuning their wick selections, ensuring optimal fragrance throw and safety for the end-user.
