Metallic Gaskets
Brand: A.R. Thomson Group Inc , SIN: P-20012

Metallic Gaskets

Available
Price: CAD $200.00
Quantity

Metallic gasket can refer to an all-metal or semi-metallic gasket. Semi-Metallic gaskets are made by combining soft materials, such as fillers or facings, with a metallic base or winding. The metal component provides strength and elasticity while the soft materials conform to the flange surface to create a seal. Two common types of Semi metallic gasket used in industry are Spiral Wound and Kammprofile gaskets. Purely metallic gaskets are fabricated from a single metal or a combination of metallic materials in a variety of shapes and sizes. These metallic gaskets are suitable for high temperature and pressure applications such as Ring Type Joints (RTJ) found in oilfield applications. Higher loads are required to seat metallic gaskets. Types include flat, grooved, round cross-section solid metal, lens rings, Ring Type Joints (RTJ’s) and welded gaskets.

  • Pump Type: Centrifugal Mondset Pump
  • Flow Rate: N/A
  • Temperature: N/A
  • Viscosity: N/A
  • Validity: 1 Year
function toggleFavorite(productId) { fetch('https://www.emaarenergy.ca/favorites/toggle', { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-CSRF-TOKEN': document.querySelector('meta[name="csrf-token"]').content }, body: JSON.stringify({ product_id: productId }) }) .then(res => res.json()) .then(data => { const text = document.getElementById('fav-text-' + productId); if (data.status === 'added') { text.innerText = 'Remove from Favorite'; } else { text.innerText = 'Add to Favorite'; } const badge = document.querySelector('.fa-regular.fa-heart')?.closest('a')?.querySelector('.notify-dot'); if (badge && data.count !== undefined) { badge.innerText = data.count; } }); }