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

BIS Certification for Unplasticized Polyvinyl Chloride (Upvc) Injection Moulded Fittings for Soil and Waste Discharge System IS 14735

bis-certification-for-Unplasticized-polyvinyl-chloride

GET BIS CERTIFICATION FOR UNPLASTICIZED POLYVINYL CHLORIDE (UPVC) INJECTION MOULDED FITTINGS FOR SOIL AND WASTE DISCHARGE SYSTEM FOR INSIDE AND OUTSIDE BUILDINGS INCLUDING VENTILATION AND RAIN WATER SYSTEM IS 14735:1999

 

 

UPVC, also known as Unplasticized Polyvinyl Chloride, is a low-maintenance building material used as a substitute for painted wood mostly in buildings and frames.

 

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.

Unplasticized polyvinyl chloride (UPVC) injection moulded fittings for soil and waste discharge system for inside and outside buildings including ventilation and rain water system  product has been specified in IS 14735:1999 by Bureau of Indian Standards.

SCOPE :

This standard covers the requirements for Unplasticized Polyvinyl Chloride (UPVC) injection moulded fittings for jointing with solvent cement or elastomeric sealing ring to the UPVC pipes for soil and waste discharge system for inside and outside buildings including ventilation and rain water system covered in IS13592.

REFERENCES :

 

IS 1070 :1992 Reagent grade water - Specification

IS 4905 :1968 Methods for random sampling

IS 5382 :1985 Specification for rubber sealing rings for gas mains, water mains and sewers

IS 6307 :1985 Specification for rigid PVC sheets

IS 7834 : Part 1 :1987 Specification for injection moulded PVC fittings with solvent cement joints for water supplies: Part 1 General requirements

IS12235 Methods of test for unplasticized PVC pipes for potable water supplies:

Part 6 :1986 Stress relief test

Part 7 :1986 Resistance to sulphuric acid

IS 13592 :1992 Specification for UPVC pipes for soil and waste discharge system inside buildings including ventilation and rain water system

 

 

RAW MATERIALS :

 

·       Clause 6 of IS 14735

 

TESTING PARAMETERS :

 

·       Material

·       Colour

·       Dimensions

·       Sealing Rings

·       Workmanship

·       Access Opening

·       Vent Cowl

·       Pipe Clips

·       Visual Appearance

·       Stress Relief Test

·       Vicat Softening Temperature

·       Effect on Water

·       Resistance to Sulphuric Acid

·       Titanium Dioxide Content

·       Sulphated Ash Content

·       Impact Test

·       Water Tightness of Joint

 

POSSIBLE TESTS IN A DAY :

 

·       Colour of Fittings

·       Dimensions

·       Workmanship

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