ADVERTISEMENT

ACEN sets massive investment for 18,000 MW RE pipeline

Published Apr 26, 2022 05:24 pm

To bring its planned 18,000 megawatts of renewable energy (RE) ventures into fruition, Ayala-led ACEN Corporation is penciling in a mammoth $18 billion, approximately P900 billion, capital outlay for the targeted solar and wind farm installations in Asian markets.

ACEN President and CEO Eric T. Francia, in a briefing with the media, explained that the rule of thumb for solar and wind projects could be in the vicinity of $1.0 million per megawatt, hence, the whole RE development pipeline will entail colossal investments of $18 billion.

Francia said that "a lot" of the planned 18,000MW would come from projects under construction and ultimately under operation. "But some of that will take a long time,” Francia noted.

He explained that the parallelism to that is the land banking done in the real estate sector, or the process or aggregating parcels of land that will be utilized for future property developments. “Like the land bank of real estate, we think of the (RE) pipeline as a de facto land bank,” Francia said.

In a related development, the Ayala energy firm has disclosed to the Philippine Stock Exchange (PSE) that it secured the approval from its board on its plan to enter the United States RE market via a newly formed strategic partnership with UPC Solar & Wind Investments LLC and Pivot Power Management (PPM).

That new investment tie-up, as emphasized by ACEN, will focus on pursuing “opportunities to acquire operating wind projects in the US and explore strategies for extending their useful life through preventative maintenance and repowering.”

According to Patrice Clausse, president and COO of ACEN International, “the transaction is subject to usual and customary conditions precedent to closing.”

He further stated “our aspiration is for the US to become a priority market for ACEN outside of Philippines over time." He added, "This partnership will provide an exciting entry to the fast-growing US market, and we look forward to leveraging the combined expertise of ACEN and our new partners to make this a strong growth platform in the coming years.”

The Ayala firm reiterated that the new business partnership “will target the acquisition of operating wind projects across various geographies in the US.”

Tim Rosenzweig, chief executive officer of PPM, indicated that the partnership deal with ACEN “will help us grow our development and operating platform in the US,” as he cited the Ayala firm’s successful RE ventures in several offshore markets to date, including Australia, Vietnam and Indonesia.

On ACEN’s medium-term RE development trajectory, Francia qualified that the company’s investment portfolio for the Philippine market could go beyond 7,000 megawatts if all targeted projects are concretized, it will comprise of the roughly 1,000MW current attributable capacity and the 6,100MW target integrated in the pipeline.

“Beyond the 5,000MW (for 2025), we are now currently mapping our 2030 vision and roadmap. Of course, whatever number or target we come up with, we will announce in the next few months, we will for sure get a lot of that aspirational target from the existing pipeline of 18,000MW and we will continue to build that pipeline up to realize our vision that will communicate for the 2030 roadmap,” Francia stressed.

Related Tags

#ACEN #RE #INVESTMENT #USMARKET #UPC #PPM #PSE
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.