Mechanical Seals Supply
Brand: A.R. Thomson Group Inc , SIN: P-20016

Mechanical Seals Supply

Available
Price: CAD $220.00
Quantity

A.R. Thomson Group Inc. offers a comprehensive range of mechanical seals designed to handle the most demanding industrial applications, supply customers with high-quality and reliable sealing solutions. With our on-site experience and expertise, A.R. Thomson Group Inc. offers technical support, prompt delivery, and personalized service, ensuring customers receive the right mechanical seals and the assistance they need for successful installation and operation of pumps and rotating equipment.

  • Pump Type: Centrifugal Mondset Pump
  • Flow Rate: N/A
  • Temperature: N/A
  • Viscosity: N/A
  • Validity: N/A

No manual available.

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; } }); }