ADVERTISEMENT
970x220

As PPA clears the way, 3 ports' repurposing for offshore wind finally going on full throttle

Published Sep 22, 2024 01:56 am

At A Glance

  • The three ports identified by the DOE are those in Currimao in Ilocos Norte; Sta Clara in Batangas City; and San Jose Panganiban in Camarines Norte; noting "their proximity to high potential offshore wind energy service contracts."<br>&nbsp;

A major thorn on the side of the project developers will be cleared, as the Philippine Ports Authority (PPA) has finally affirmed its support to the repurposing of three major ports that will underpin the commercial advancement of gigawatt-scale offshore wind (OSW) farm projects.

In a statement to the media, the Department of Energy (DOE) disclosed that these are the
ports of Currimao in Ilocos Norte; Sta Clara in Batangas City; and San Jose Panganiban in Camarines Norte.

“The DOE has identified these three ports as critical to OSW development, given their proximity to high potential offshore wind energy service contracts,” the department said.

It is worth noting that two frontrunner offshore wind projects being advanced by trailblazing Danish firms are sited in Ilocos Norte and the Bicol region; while the Batangas area is swamped with other projects that are also progressing aggressively on their pre-development activities.

“The PPA has formally expressed its full support to the DOE to initiate the detailed engineering designs and take immediate steps to repurpose three priority ports to ensure that they are fully equipped to handle the installation, commissioning, and operational requirements of OSW projects,” the energy department stressed.

In a letter to the DOE, PPA General Manager Jay Santiago primarily stipulated the “critical role that port infrastructure plays in the successful delivery of OSW energy projects,” while also acknowledging that his agency “will be responsible for the feasibility study and infrastructure development of these identified ports.”

It will also be the PPA that must demarcate the areas as well as set the lease-fees for the dedicated use of these port facilities by the offshore wind developers – including those on the quayside, lay-down yards and pre-assembly sites, among others.

Given the enormity as well as massive weight of the turbines and equipment to be installed at offshore wind farms, project sponsor-firms have been pressing early on that specialized ports shall be re-developed for these forthcoming energy sector leviathans.

With a breakthrough on their collaborative arrangement with PPA, the DOE stated that they will be “working hand in hand to accelerate the development of the country’s offshore wind (OSW) energy projects through the strategic repurposing and modernization of port infrastructure.”

Energy Secretary Raphael P.M. Lotilla qualified that “the modernization of port facilities will not only accelerate OSW projects but also play a critical role in securing the country’s clean energy future and promoting economic growth.”

In the country’s quest for energy security that will eventually be leaning mainly on green technologies, the energy department is placing heftier bet on offshore wind farm installations – not only due to their higher capacity factor of more than 40%, but also because of their minimal land use as well as resilience even to extreme weather events.

For the Currimao port, in particular, the DOE cited that the magnitude of awarded service contracts that will be using it could be at least 9,489 megawatts; then the port in Camarines Norte could cater to at least 8,150MW offshore wind capacity; while the Batangas port is a hub to 29 service contracts with 24,300MW capacity.

Lotilla emphasized “these ports will serve as vital logistical hubs throughout the lifecycle of offshore wind projects --- from installation to commissioning and decommissioning.”

He thus conveyed that “upgrading these facilities ensures that the Philippines is ready to accommodate the increasing demands of OSW projects, which are expected to deliver significant contributions to the country’s energy security and economic stability.”

The energy chief further opined that “by modernizing these strategic ports, we are not only addressing the immediate needs of OSW development but also laying the foundation for long-term job creation and sustained growth in the renewable energy sector.” 

 

 

Related Tags

Raphael Lotilla Department of Energy (DOE) port facilities Philippine Ports Authority (PPA) offshore wind projects
ADVERTISEMENT
300x250
.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 72px 0 12px; } .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; } li:empty { display: none; } .hidden { display: none; }
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]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { 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); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.