ADVERTISEMENT

DOE eyeing over 3,300MW capacity addition this year

Published Feb 13, 2024 06:13 am

At A Glance

  • The solar facilities that will be reaching full commercial operations between now and the next quarter will be very beneficial addition to the country's electricity supply during the summer months – primarily in plugging capacity gap that will be voided because of the extreme de-rating to be suffered by the hydro plants with the incursion of El Niño phenomenon.

Power supply in the country will be shored up by 3,309 megawatts this year from new generating facilities; plus 334 megawatts that shall be drawn from battery energy storage systems (BESS), according to the Department of Energy.

As culled from the department’s data, bulk of the capacity additions for Luzon grid will be coming from renewable energy (RE) technologies that shall be dominated by solar farm projects at 1,123.95MW; then wind at 160MW; and the balance will be from hydropower at 44.32MW, geothermal at 38.57MW and biomass at 11.28MW.

Across thermal technologies, the capacity escalation logged by the DOE will be from gas at 1,320MW; and there would also be 600MW capacity beefing up from coal as well as 11.04MW from oil-fired generation.

In particular, the solar capacities set for deliveries to augment supply during the summer months would be those from the 86.2MW Subic solar power facility which is targeted on-line this February; the 82.488MW Lal-lo solar facility by April; and the 75MW Cayanga-Bugallon solar farm by May.

Industry sources noted the solar facilities that will be reaching full commercial operations between now and the next quarter will be very beneficial addition to the country’s electricity supply during the summer months – primarily in plugging capacity gap that will be voided because of the extreme de-rating to be suffered by the hydro plants with the incursion of El Niño phenomenon.

Toward the end of the year, more solar capacities are expected to be on commercial stream because that is the delivery date for the first batch of the awarded long-term power supply contracts in the first green energy auction (GEA) program that was administered by the DOE in 2022.

For wind, the additional supply will be from the initial phase of the 445.15MW Balaoi and Caunayan wind farm installation that will be on commercial stream by June this year.

The geothermal capacity increase, on the other, will be from the Tiwi and Palayan binary plants that are coming online by March; while the biomass capacity will be from a development in Isabela province.

The capacity reinforcement for coal will be drawn from the four (4) electric generating units of the Mariveles coal plant project in Bataan – and the per-unit commercial operations of the facilities at 150MW each will be spread through February, March, June and August.

Further, the major capacity buildup of more than 1,300MW by December will be coming from the Excellent Energy Resources Inc. (EERI) greenfield gas plant of the San Miguel group that is sited in Batangas province. 

 

 

 

Related Tags

hydropower Power supply Department of Energy Department of Energy (DOE) solar PV wind farm
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.