Contact us

Solve your dust and silica problems at the source

Not ready to connect just yet? Watch our short video demo
to see how Applied Particle Technology gives you real-time compliance data you can act on immediately.

Explore more resources

Want to dig deeper while you decide?

Learn how teams are meeting the new MSHA silica standard

See how APT supports fugitive dust & opacity compliance

Explore our automated SEG analysis

Better decisions start with real-time insight

APT helps industrial teams move faster, act smarter, and stay compliant—because when you can see the problem clearly, you can solve it confidently.

// Function to adjust iframe height function adjustIframeHeight() { var iframe = $('iframe'); var iframeBody = iframe.contents().find('body'); var scrollHeight = iframeBody.prop('scrollHeight'); var iframeHeight = iframe.height(); // Adjust height if the difference is 20px or more if (Math.abs(scrollHeight - iframeHeight) >= 20) { iframe.height(scrollHeight); } } // Initial interval to adjust height until difference is less than 20px var initialInterval = setInterval(function() { adjustIframeHeight(); var iframe = $('iframe'); var iframeBody = iframe.contents().find('body'); var scrollHeight = iframeBody.prop('scrollHeight'); var iframeHeight = iframe.height(); if (Math.abs(scrollHeight - iframeHeight) < 20) { clearInterval(initialInterval); // Set up a periodic check every 200ms setInterval(function() { adjustIframeHeight(); }, 200); } }, 200);