Fragrance Calculator for Candles

Candle Fragrance Calculator body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f8f9fa; color: #333; line-height: 1.6; margin: 0; padding: 20px; } .loan-calc-container { max-width: 700px; margin: 30px auto; background-color: #ffffff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } h1, h2 { color: #004a99; text-align: center; margin-bottom: 25px; } .input-group { margin-bottom: 20px; display: flex; flex-direction: column; } .input-group label { margin-bottom: 8px; font-weight: 600; color: #004a99; } .input-group input[type="number"], .input-group input[type="text"] { padding: 12px 15px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; box-sizing: border-box; } .input-group input[type="number"]:focus, .input-group input[type="text"]:focus { border-color: #004a99; outline: none; box-shadow: 0 0 0 2px rgba(0, 74, 153, 0.2); } button { display: block; width: 100%; padding: 12px 20px; background-color: #004a99; color: white; border: none; border-radius: 5px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: background-color 0.3s ease; margin-top: 10px; } button:hover { background-color: #003f82; } .result-section { margin-top: 30px; padding: 20px; background-color: #e7f3ff; border-left: 5px solid #004a99; text-align: center; } .result-section h3 { margin-top: 0; color: #004a99; font-size: 1.3rem; } .result-value { font-size: 2.5rem; font-weight: bold; color: #28a745; margin-top: 10px; } .article-section { margin-top: 40px; padding-top: 30px; border-top: 1px solid #eee; } .article-section h2 { text-align: left; margin-bottom: 15px; } .article-section p, .article-section ul { margin-bottom: 15px; } .article-section ul { padding-left: 20px; } .article-section code { background-color: #eef; padding: 2px 5px; border-radius: 3px; } /* Responsive adjustments */ @media (max-width: 768px) { .loan-calc-container { padding: 20px; margin: 20px auto; } h1 { font-size: 1.8rem; } .result-value { font-size: 2rem; } } @media (max-width: 480px) { .input-group { margin-bottom: 15px; } button { font-size: 1rem; } .article-section { margin-top: 30px; } }

Candle Fragrance Calculator

Required Fragrance Oil

0 grams

Understanding Candle Fragrance Load

Creating a beautifully scented candle involves more than just pouring wax and adding fragrance. The fragrance load, often expressed as a percentage, is crucial for achieving a strong scent throw (how well the candle disperses fragrance when lit) without compromising the candle's burn quality. This calculator helps you determine the precise amount of fragrance oil needed for your candle batch.

The Math Behind the Calculation

The calculation is straightforward and based on a simple percentage. It determines how much fragrance oil, by weight, should be added to a specific amount of wax. The formula is:

Fragrance Oil Amount (grams) = Wax Weight (grams) * (Fragrance Load Percentage / 100)

For example, if you are making a candle using 200 grams of wax and your desired fragrance load is 8%, the calculation would be:

Fragrance Oil Amount = 200 grams * (8 / 100) = 200 * 0.08 = 16 grams

Key Considerations for Fragrance Load:

  • Wax Type: Different waxes (soy, paraffin, beeswax, coconut blends) have varying abilities to bind with fragrance oils. Some can hold higher fragrance loads than others. Always check the manufacturer's recommendations for your specific wax.
  • Fragrance Oil Type: Fragrance oils designed for candles are concentrated. Essential oils, while natural, can behave differently and may require lower loads or special consideration due to their chemical composition and volatility.
  • Flash Point: Be aware of the fragrance oil's flash point (the temperature at which it can ignite). Add fragrance oil to your melted wax at a temperature below the fragrance oil's flash point but high enough to ensure it mixes thoroughly.
  • Optimal Range: Most candle waxes perform best with fragrance loads between 6% and 10%. Exceeding recommended limits can lead to poor scent throw, "sweating" (oil separating from wax), a weaker flame, or even tunneling.
  • Testing: Always test your candle formulations! Even with a calculator, small variations in wax, fragrance oil, wick size, and container can affect the final result. Small test pours are invaluable.

Using this calculator ensures consistency and accuracy in your candle-making process, helping you create professional, high-quality scented candles with an excellent fragrance experience.

function calculateFragrance() { var waxWeightInput = document.getElementById("waxWeight"); var fragranceLoadPercentageInput = document.getElementById("fragranceLoadPercentage"); var resultElement = document.getElementById("result"); var waxWeight = parseFloat(waxWeightInput.value); var fragranceLoadPercentage = parseFloat(fragranceLoadPercentageInput.value); if (isNaN(waxWeight) || waxWeight <= 0) { resultElement.innerText = "Please enter a valid wax weight."; return; } if (isNaN(fragranceLoadPercentage) || fragranceLoadPercentage 15) { /* A common upper limit, though some waxes may vary */ resultElement.innerText = "Warning: Fragrance load may be too high. Consider a lower percentage."; return; } var fragranceAmount = waxWeight * (fragranceLoadPercentage / 100); // Format to a reasonable number of decimal places for practical use var formattedFragranceAmount = fragranceAmount.toFixed(2); resultElement.innerText = formattedFragranceAmount + " grams"; }

Leave a Comment