AWE PORSCHE 991.2 CARRERA / S / GTS PSE EXHAUST SUITE

$2,545.75  - $3,905.75
Option:  AWE SwitchPath™ Exhaust for 991.2 Carrera / S / GTS with PSE - Chrome Silver Tips
Quantity

Description

Spool up with SwitchPath™. Presenting the AWE 991.2 PSE SwitchPath™ Exhaust Suite:

  • Available as the SwitchPath™ Exhaust, and racing-use-only Performance Catalysts
  • Max gains of 14 hp and 17 ft-lbs of torque at the crank (Carrera base, SwitchPath™ Exhaust)
  • Max gains of 11 hp and 7 ft-lbs of torque at the crank (Carrera S, SwitchPath™ Exhaust)
  • Max gains of 17 hp and 34 ft-lbs of torque at the crank (Carrera S, Catalysts + stock PSE)
  • Max gains of 22 hp and 42 ft-lbs of torque at the crank (Carrera S, Catalysts + SwitchPath™ Exhaust)
  • Direct bolt-on for factory-like simplicity
  • Retains factory push-button PSE operation
  • Performance catalysts feature HJS HD 200CPSI cores
  • No muffler packing means the tone will not change over time
  • Integrated X-pipe and true balance pipe, delivering a constant exotic tone and no drone
  • Less is more: clean, straight-through design maximizing flow and performance
  • 102mm double-walled tips available in chrome silver or diamond black
  • Handcrafted from U.S.-sourced CNC mandrel-bent 0.065” wall T304L stainless steel
  • Proudly engineered, designed, and manufactured in-house at AWE
  • Perfect fitment guaranteed
  • AWE No Check Engine Light Guarantee
  • Featuring the AWE Lifetime Warranty (one year on HJS HD cores)

  • SPOOL UP WITH SWITCHPATH™:

     

    SwitchPath™ Exhaust:

    Our most intricately-designed Porsche application to date, the AWE SwitchPath™ Exhaust for PSE-equipped 991.2 Carreras provides the perfect sophisticated soundtrack fit for the .2.

    Comprised of an integrated x-pipe, balance tube, factory-matched valved and non-valved inlets, and two straight-through mufflers designed specifically for Porsche’s new turbo-powered Carrera, the SwitchPath™ Exhaust proves to be the all-around solution while retaining factory PSE operation. Due to there being zero acoustical packing material within the straight-through mufflers, the soundtrack emitted from the SwitchPath™ Exhaust will not change over time.

    The SwitchPath™ Exhaust will respond to your driving style. Around town cruising is sophisticated and refined. Thanks to the 0.65” wall T304L stainless steel, integrated x-pipe and balance bar, the SwitchPath™ Exhaust provides a consistent, deep and refined exotic tone, even with the valves closed.

    Once the ECU registers an elevated RPM and opens the valves, the tone produced from the SwitchPath™ ratchets up, increased turbo sound and feedback from downshifts included.

    Performance Catalysts:

    The AWE Performance catalysts are an easy, pure bolt-on solution to unlock power and aggression out of the .2 Carrera. Featuring HJS HD 200CPSI cores, the Performance Catalysts mate seamlessly to the SwitchPath™ Exhaust to make it a complete turbo-back, and the factory-equipped PSE.

    Smooth, uninterrupted bends, factory-like domed core outlet design, CEL-free operation. Power.

    Spool up.

    Please note: the AWE Performance Catalysts are for racing use only.

    Tip Options:

    Bespoke tips designed specifically for the 991.2 Carrera’s valance. All tip options include the AWE logo, and double walling to ensure a mirror finish even under hard usage. All tips are individually adjustable, allowing depth into the bumper to be set according to personal taste.

    • 102mm slash-cut chrome silver tips
    • 102mm slash-cut diamond black tips

     

    Customer Reviews
    Here are what our customers say.
    Write a Review
    Customer Reviews
    Wow you reached the bottom
    Newest
    Most liked
    Highest ratings
    Lowest ratings
    ×
    class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
    The review would not show in product details on storefront since it does not support to.