Free Consultation
info@elitasrcs.com | ➀ +91-9076611766 ➁ +91-9076611767
Regulatory Notification

BIS Certification for Polypropylene-Random Copolymer Pipes for Hot and Cold Water Supplies IS 15801

Hot and Cold Water Supplies IS 15801

GET BIS CERTIFICATION FOR POLYPROPYLENE-RANDOM COPOLYMER PIPES FOR HOT AND COLD WATER SUPPLIES IS 15801:2008

 

Polypropylene random copolymers are thermoplastic resins produced through the polymerization of propylene, with ethylene or butene bonds introduced in the polymer chain. The resins provide a broad range of characteristics, and are used in a wide range of applications which includes supply of hot and cold water.

 

BIS is a statutory institution established under the Bureau of Indian Standards Act,1986  to promote harmonious development of the activities of standardization, marking and quality certification of goods and attending to connected matters in the country.

Polypropylene-random copolymer pipes for hot and cold water supplies product has been specified in IS 15801:2008 by Bureau of Indian Standards.

SCOPE :

This standard specifics requirements for polypropylene-random co polymer pipes from 16 to 200 mm nominal diameter of SDR II , 7.4, 6 and 5 for :

a) wall concealed hot and co ld water conveyance pipelines for inside and outside buildings (pro perly UV stabilized) , and

b) pipelines for the solar heating sys tem inside and outside the buildings.

REFERENCES :

 

The following standards contain provisions which through reference in the is text , constitute provisions of this standard. At the time of publication , the editions indicated were va lid . All standards arc subject to revision and parties to agreements based on this standard are encouraged to investigate the possibility of applying the most recent editions of the standards indicated below:

2530 : 1963 Methods of test for polyethylene moulding materials and polyethylene compounds

9845 : 1998 Method of analysis for determination of overall migration of constituents of plastic materials and articles intended to come into contact with foodstuffs

10909 : 2001 Positive list of constituents of polypropylene and its copolymers in contact with food stuffs , pharmaceuticals and drinking water

10910 : 1984 Specification for polypropylene and its copolymers for its safe use in contact with foodstuffs , pharmaceuticals and drinking water

10951 : 2002 Polypropylene materials for moulding and extrusion

12235 Thermoplastic pipes and fittings Methods of tests :

(Part 3) : 2004 Test for opacity

(Part 5/Sec 1) : 2004 Longitudinal reversion. Section 1 Determination methods

(Part 8/Sec 1) : 2004 Resistance to intern al hydrostat ic pressure, Section 1 Resistance to internal hydrostatic pressure a t con stant internal water pressure

(Part 14) : 2004 Determination of density/relative density (specific gravity)

13360 Plastics methods of testing :

(Part 3/Sec 1) : 1995 Physical and dimensional properties. Section 1 Determination of density and relative density of non-cellular plastics

(Part 4/Sec 1) : 2000 Rheological properties, Section 1 Determination of melt mass flow rate (MFR) and the melt volume flow rate (MVR) of thermoplastics

(Part 5/Sec 5) : 1996 Mechanical properties, Section 5 Determination of charpy impact strength

 

RAW MATERIALS :

 

As per clause 6 of IS 15801:2008

 

TESTING PARAMETERS :

 

·       Polypropylene- Random copolymer

·       Density

·       MFR

·       Colour Master Batches

·       Antioxidant

·       Influence on water intended for Human consumption

·       Wall Thickness

·       Ovality

· 40) { header.classList.add('scrolled'); } else { header.classList.remove('scrolled'); } let winScroll = document.body.scrollTop || document.documentElement.scrollTop; let height = document.documentElement.scrollHeight - document.documentElement.clientHeight; let scrolled = (winScroll / height) * 100; progressBar.style.width = scrolled + "%"; }); // 1.b Hide Floating Button when Offcanvas opens const offcanvasForm = document.getElementById('expertFormOffcanvas'); const sideBtn = document.querySelector('.side-contact-btn'); if(offcanvasForm && sideBtn) { offcanvasForm.addEventListener('show.bs.offcanvas', () => { sideBtn.style.opacity = '0'; sideBtn.style.pointerEvents = 'none'; }); offcanvasForm.addEventListener('hidden.bs.offcanvas', () => { sideBtn.style.opacity = '1'; sideBtn.style.pointerEvents = 'auto'; }); } // 2. Dynamic ToC Generation (Replaces hardcoded HTML) const articleContainer = document.querySelector('.article-content'); const desktopTocContainer = document.getElementById('toc-nav'); const mobileTocContainer = document.querySelector('.mobile-toc-nav'); if (articleContainer) { // Find the intro div and all h2/h3 elements const headings = articleContainer.querySelectorAll('#section-intro, h2, h3'); if (desktopTocContainer) desktopTocContainer.innerHTML = ''; if (mobileTocContainer) mobileTocContainer.innerHTML = ''; headings.forEach((heading) => { // Auto-generate ID if missing if (!heading.id) { heading.id = heading.textContent.trim().toLowerCase().replace(/[^a-z0-9]+/g, '-'); } // Create Desktop Link (direct to match your CSS) const desktopLink = document.createElement('a'); desktopLink.href = `#${heading.id}`; desktopLink.textContent = heading.id === 'section-intro' ? 'Introduction' : heading.textContent; desktopLink.className = 'toc-link'; // Indent h3 tags for nested visual hierarchy if (heading.tagName.toLowerCase() === 'h3') { desktopLink.style.paddingLeft = '30px'; desktopLink.style.fontSize = '12.5px'; } if (desktopTocContainer) desktopTocContainer.appendChild(desktopLink); // Create Mobile Offcanvas Link const mobileLink = document.createElement('a'); mobileLink.href = `#${heading.id}`; mobileLink.textContent = desktopLink.textContent; mobileLink.className = 'toc-link text-decoration-none text-dark'; mobileLink.setAttribute('data-bs-dismiss', 'offcanvas'); if (heading.tagName.toLowerCase() === 'h3') { mobileLink.style.paddingLeft = '30px'; mobileLink.style.fontSize = '14px'; } if (mobileTocContainer) mobileTocContainer.appendChild(mobileLink); }); } // 3. Smooth Scrolling for ToC Links document.querySelectorAll('.toc-link').forEach(anchor => { anchor.addEventListener('click', function (e) { if(this.getAttribute('href').startsWith('#')) { e.preventDefault(); const targetId = this.getAttribute('href'); const targetElement = document.querySelector(targetId); if(targetElement){ const headerOffset = 100; const elementPosition = targetElement.getBoundingClientRect().top; const offsetPosition = elementPosition + window.pageYOffset - headerOffset; window.scrollTo({ top: offsetPosition, behavior: "smooth" }); } } }); }); // 4. Intersection Observer for the "Soft Pill" Active State const sections = document.querySelectorAll('.article-content h2, .article-content h3, #section-intro'); const navLinks = document.querySelectorAll('.toc-aside .toc-link'); const navContainer = document.getElementById('toc-nav'); const observerOptions = { root: null, rootMargin: '-120px 0px -60% 0px', threshold: 0 }; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { navLinks.forEach(link => link.classList.remove('active')); const activeId = entry.target.getAttribute('id'); const activeLink = document.querySelector(`.toc-aside .toc-link[href="#${activeId}"]`); if (activeLink) { activeLink.classList.add('active'); // Move the pseudo-element pill highlight const linkRect = activeLink.getBoundingClientRect(); const containerRect = navContainer.getBoundingClientRect(); const relativeTop = linkRect.top - containerRect.top; navContainer.style.setProperty('--pill-top', `${relativeTop}px`); navContainer.style.setProperty('--pill-height', `${linkRect.height}px`); navContainer.style.setProperty('--pill-opacity', `1`); } } }); }, observerOptions); sections.forEach(section => observer.observe(section)); // Initialize pill on load setTimeout(() => { const firstLink = navLinks[0]; if(firstLink) { firstLink.classList.add('active'); const linkRect = firstLink.getBoundingClientRect(); const containerRect = navContainer.getBoundingClientRect(); navContainer.style.setProperty('--pill-top', `${linkRect.top - containerRect.top}px`); navContainer.style.setProperty('--pill-height', `${linkRect.height}px`); navContainer.style.setProperty('--pill-opacity', `1`); } }, 100); });

Need Compliance Help?

Fill out the form below and one of our regulatory experts will contact you shortly.

Expo Event