Insulation Material Thermal Performance Calculator
Calculate R-value & U-value for insulation materials, with a reference table of common thermal conductivity values
Thermal Performance Calculator
Calculation Results
Calculation Principle & Formula
Where: Unit conversion – Convert millimeters (mm) to meters (m) by dividing by 1000.
R-value and U-value are reciprocals of each other.
SI Units
• R-value: (m²·K)/W
• U-value: W/(m²·K)
Imperial Units
• R-value: (h·ft²·°F)/Btu
• U-value: Btu/(h·ft²·°F)
Unit Conversion: 1 (m²·K)/W ≈ 5.678 (h·ft²·°F)/Btu
Common Insulation Materials — Thermal Conductivity
| Material Name | Density (kg/m³) | λ Range (W/(m·K)) | Typical λ (W/(m·K)) |
|---|---|---|---|
| Extruded Polystyrene (XPS) | 28-45 | 0.028-0.035 | 0.030 |
| Expanded Polystyrene (EPS) | 12-30 | 0.035-0.043 | 0.038 |
| Rock Wool Board | 40-200 | 0.035-0.046 | 0.040 |
| Glass Wool | 10-96 | 0.032-0.050 | 0.042 |
| Polyurethane Rigid Foam (PUR/PIR) | 30-55 | 0.019-0.025 | 0.022 |
| Phenolic Foam Board | 40-120 | 0.020-0.030 | 0.025 |
| Aerogel Blanket | 180-220 | 0.013-0.020 | 0.015 |
| Vacuum Insulated Panel (VIP) | 180-400 | 0.002-0.008 | 0.004 |
| Cork Board | 100-200 | 0.038-0.045 | 0.040 |
| Wood Fiber Board | 240-300 | 0.038-0.050 | 0.045 |
| Cellulose Fiber Fill | 45-60 | 0.038-0.042 | 0.040 |
| Polyisocyanurate Board (PIR) | 30-50 | 0.020-0.027 | 0.023 |
| Foam Glass | 120-180 | 0.038-0.050 | 0.045 |
| Expanded Perlite | 60-300 | 0.040-0.070 | 0.050 |
| Aluminum Silicate Wool | 96-128 | 0.035-0.045 | 0.040 |
About Thermal Conductivity
Thermal Conductivity (λ) measures how well a material conducts heat, in W/(m·K). The lower the value, the better the insulation performance.
Influencing Factors:
- Material type and structure
- Density (usually has an optimal range)
- Temperature (lower temperature typically reduces λ)
- Moisture (water content significantly increases λ)
For practical applications, refer to the product test report for the actual thermal conductivity value.
document.addEventListener('DOMContentLiteSpeedLoaded',function(){const materialSelect=document.getElementById('material');const conductivityInput=document.getElementById('conductivity');const calculateBtn=document.getElementById('calculate');
materialSelect.addEventListener('change',function(){if(this.value==='custom'){conductivityInput.disabled=!1;conductivityInput.value=''}else{conductivityInput.disabled=!0;conductivityInput.value=this.value}});
calculateBtn.addEventListener('click',calculateValues);
function calculateValues(){const thickness=parseFloat(document.getElementById('thickness').value);const conductivity=parseFloat(document.getElementById('conductivity').value);
if(isNaN(thickness)||thickness<=0){alert('请输入有效的厚度值(大于0)');return} if(isNaN(conductivity)||conductivity<=0){alert('请输入有效的导热系数(大于0)');return} const thicknessMeters=thickness/1000;const rSI=thicknessMeters/conductivity;const rIP=rSI*5.678;const uSI=1/rSI;const uIP=1/rIP;document.getElementById('r-si').textContent=rSI.toFixed(3);document.getElementById('r-ip').textContent=rIP.toFixed(3);document.getElementById('u-si').textContent=uSI.toFixed(3);document.getElementById('u-ip').textContent=uIP.toFixed(3)} calculateValues()})