Service

Premier EPC of High Voltage Substations

PET-C stands out as a key provider of EPC (Engineering, Procurement, and Construction) services focused on high voltage substations. Our comprehensive approach encompasses everything from initial design and system analysis to construction and energization. With our turnkey solutions, we ensure a single point of accountability throughout the project lifecycle.

We pride ourselves on our flexibility in the EPC scope, working closely with engineering firms and other contractors to deliver tailored construction services. Our team is adept at managing both union and non-union projects, allowing us to adapt to the unique needs of each client.

Turnkey Transmission Line

Leading Provider of Distribution and Transmission Lines

PET-C not only provides EPC services for high voltage substations but also stands as a leading provider in the domain of distribution and transmission lines. Our expert team is capable of managing complex projects and handling all scopes of work. Our turnkey model is customized to meet each client’s specific requirements.

Generation Tie Lines Up to 345 kV

PET-C’s high voltage team is well-equipped to manage various job types, with extensive experience in projects operating at voltages up to 345 kV and spanning over 12 miles. Our project experience includes substations, switchyards, generation tie lines, and AC collector systems. PET-C develops projects for utility-scale renewable plants, utility providers, mines, and other commercial and industrial clients.

Battery Energy Storage Systems

Battery Energy Storage Systems (BESS) are increasingly becoming an essential part of large-scale solar and wind projects, as well as effective stand-alone solutions. At PET-C, we take pride in our expertise in designing and building large-scale BESS systems. Throughout the project execution process, PET-C places great emphasis on close collaboration with clients, ensuring high-quality service and fully addressing their requirements.

High Voltage Construction

PET-C specializes in the construction of substations, distribution, and transmission lines nationwide. Our turnkey construction model strictly adheres to each client’s commercial and technical requirements. With extensive experience in delivering large-scale projects with stringent safety and quality assurance standards, PET-C is committed to providing an exceptional customer experience, saving time, and minimizing project risks.

Scope of Services:

  • High Voltage Substation
  • Medium and High Voltage Switchyard
  • Overhead High Voltage Transmission Line
  • Underground High Voltage Transmission Line
  • Overhead Distribution Line
  • Underground Distribution Line / AC Collection
document.addEventListener("DOMContentLoaded", function () {
    const sections = document.querySelectorAll("#section-0, #section-1, #section-2, #section-3, #section-4, #section-5");
    let sectionPositions = [];

    // Cập nhật vị trí từng section (nếu chiều cao section thay đổi)
    function updateSectionPositions() {
        sectionPositions = Array.from(sections).map((section) => {
            const sectionHeight = section.offsetHeight; // Lấy chiều cao thực tế của section
            const offset = section.offsetTop - (window.innerHeight - sectionHeight) / 2 + 70; // Căn giữa section
            return offset;
        });
    }

    // Gọi hàm cập nhật khi DOMContentLoaded
    updateSectionPositions();

    let isScrolling = false; // Trạng thái đang cuộn
    const scrollDuration = 800; // Thời gian cuộn (ms)

    // Hàm cuộn đến vị trí mục tiêu
    function scrollToSection(targetIndex) {
        if (targetIndex < 0 || targetIndex >= sectionPositions.length) return; // Kiểm tra giới hạn index

        window.scrollTo({
            top: sectionPositions[targetIndex],
            behavior: "smooth",
        });

        // Đợi cuộn hoàn tất trước khi cho phép cuộn tiếp
        setTimeout(() => {
            isScrolling = false;
        }, scrollDuration);
    }

    // Lắng nghe sự kiện cuộn chuột
    window.addEventListener("wheel", function (event) {
        if (isScrolling) return; // Nếu đang cuộn, bỏ qua sự kiện mới

        isScrolling = true;
        const currentScroll = window.scrollY + window.innerHeight / 2; // Tính vị trí hiện tại dựa vào trung tâm màn hình
        const direction = event.deltaY > 0 ? 1 : -1; // Kiểm tra hướng cuộn (xuống hoặc lên)

        // Tìm section hiện tại
        let currentIndex = sectionPositions.findIndex((pos, i) => {
            const nextPos = sectionPositions[i + 1] || Infinity;
            return currentScroll >= pos && currentScroll < nextPos;
        });

        if (currentIndex === -1) currentIndex = 0; // Phòng trường hợp không tìm thấy index

        // Tính index mục tiêu
        let targetIndex;
        if (direction === 1) {
            // Cuộn xuống: Tìm section tiếp theo
            targetIndex = currentIndex + 1 < sectionPositions.length ? currentIndex + 1 : currentIndex;
        } else if (direction === -1) {
            // Cuộn lên: Tìm section trước đó
            targetIndex = currentIndex - 1 >= 0 ? currentIndex - 1 : currentIndex;
        }

        // Cuộn đến section mục tiêu
        scrollToSection(targetIndex);
    });

    // Cập nhật lại vị trí section khi thay đổi kích thước cửa sổ
    window.addEventListener("resize", updateSectionPositions);

    // Khi load trang, cuộn đến section gần nhất
    const currentScroll = window.scrollY + window.innerHeight / 2;
    const closestIndex = sectionPositions.findIndex((pos, i) => {
        const nextPos = sectionPositions[i + 1] || Infinity;
        return currentScroll >= pos && currentScroll < nextPos;
    });

    if (closestIndex !== -1) {
        scrollToSection(closestIndex);
    }
});