ADVERTISEMENT

DOE threatens to sue oil firms for not matching gov't price cuts

Published Apr 12, 2026 04:07 pm
Energy Secretary Sharon Garin
Energy Secretary Sharon Garin
The Department of Energy (DOE) threatened oil companies with legal action if they fail to implement government-mandated price rollbacks that significantly exceed industry calculations, citing powers granted under a state of national energy emergency.
Energy Secretary Sharon Garin issued the warning during an emergency meeting Sunday, April 12, with industry participants, including Energy Undersecretary Alessandro Sales and Oil Industry Management Bureau Director Rino Abad.
The department is demanding that retailers align their price adjustments with government estimates that have already been briefed to President Ferdinand Marcos Jr., according to a person familiar with the discussions.
Failure to comply with the directive could result in show-cause orders and legal sanctions under Executive Order 110, which declared a national energy emergency, the source said. The government expects price reductions of ₱20.89 per liter for diesel, ₱4.43 per liter for gasoline, and ₱8.50 per liter for kerosene to take effect on Tuesday.
“The oil companies were told to follow the rollback calculation of the DOE because, according to the Secretary, the expected price cuts had already been reported to President Marcos,” a highly placed source told the Manila Bulletin.
The industry insider added, “If there are oil firms that will not follow, the DOE has threatened to issue show-cause orders, and these players will face legal sanctions within the purview of the National Energy Emergency Declaration or Executive Order 110.”
Over the weekend, Garin publicly released the scale of price rollbacks the government expects to be enforced by Tuesday (April 14) across petroleum commodities.
However, based on calculations by oil companies, the outcome of last week’s trading in the regional market—anchored on the Mean of Platts Singapore (MOPS)—would only warrant price cuts of approximately ₱12.813 per liter for diesel, ₱3.891 per liter for gasoline, and ₱5.695 per liter for kerosene, plus an allowance for market premium.
These MOPS-calculated adjustments do not yet include other pricing determinants affecting pump costs, such as the Philippine peso-US dollar exchange rate, market premiums, and insurance costs.
Another industry source indicated that the DOE presented its own basis for the rollback calculations to the firms. This included the MOPS trading outcome integrated with cost components such as the free-on-board (FOB) price per barrel, foreign exchange rates, freight, market premium, and insurance charges.
According to the DOE monitoring report, the FOB per barrel for diesel eased to $228.91 from $256.87, while the market premium was trimmed to $44.54 from $64 and the forex softened to P59.97 from P60.58. For gasoline, the FOB per barrel slipped to $131.74 from $139.67 and the market premium declined to $4.85. For kerosene, the FOB per barrel fell to $216.44 and the market premium softened to $30.27.
Notably, the DOE estimates have not yet factored in tax components or the oil companies' margins, which cover distribution costs and operational management.
While consumers may find temporary relief in this week’s reductions, industry players cautioned that it could be short-lived. Ceasefire talks between the U.S. and Iran ended in a deadlock over the weekend; consequently, geopolitical risks remain a dilemma for global economies.
Beyond price volatility, markets remain anxious over potential supply disruptions if no breakthrough is reached regarding the Middle East conflict. In the local context, one source asserted that if the government insists on controlling prices, oil companies may have no choice but to stop purchasing fuel, which could trigger a broader domestic supply crunch.

Related Tags

Department of Energy (DOE) Oil companies Oil price rollback Sharon Garin
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.