ADVERTISEMENT

CHED, University of Adelaide boost medical training in the Philippines

The partnership to enhance simulation-based training for Filipino medical educators using advanced tools and global expertise

Published May 1, 2025 09:36 am

More Filipino medical educators are set to receive world-class training in simulation-based medical education (SBME) through the strengthened partnership between the Commission on Higher Education (CHED) and the University of Adelaide in Australia.

viber_image_2025-05-01_09-56-09-726.jpg
CHED and the University of Adelaide expand training for Filipino medical educators through simulation-based learning and cutting-edge medical education tools. (Photo courtesy of CHED)

In a statement released on Thursday, May 1, CHED announced that this international collaboration aims to enhance faculty skills in medical schools across the Philippines through cutting-edge simulation technologies that replicate real-life clinical scenarios.

These tools include high-fidelity manikins, virtual reality systems, and standardized patients, enabling healthcare students to develop their skills in a safe, controlled environment.

Expanding international collaboration

As part of the second leg of CHED’s transnational education mission, CHED Chairperson J. Prospero “Popoy” De Vera III met with officials from the University of Adelaide to expand the ongoing SBME training initiative.

The program is being implemented in collaboration with the University of the Philippines (UP) Manila.

During the visit, the Philippine delegation toured the Adelaide Health Simulation (AHS) center—one of the most technologically advanced healthcare simulation centers in Australasia—to gather insights into best practices in simulation-based training.

De Vera said the simulation-based medical education program aligns with the “Doktor Para sa Bayan Law,” which mandates CHED to increase access to medical education by helping establish at least one public medical school in every region of the country.

“But the goal is not only to make medical education accessible, but also globally competitive,” De Vera said. “This partnership is part of CHED’s long-term vision to create a future where every Filipino medical student, regardless of region, has access to the best education possible,” he added.

De Vera noted that President Marcos has tasked CHED with creating more faculty development opportunities to ensure quality education that meets international standards.

Advancing technology-driven medical education

UP Manila Chancellor Michael Tee emphasized the significance of technology-driven education in medical training. He expressed gratitude to CHED for trusting UP Manila to collaborate with the University of Adelaide.

“Through technology-driven, simulation-based education, students will be able to practice what it’s like to be doctors even before they reach the clinics,” Tee said. “They will be able to experience clinical situations and perform procedures on high-fidelity mannequins and task trainers to ensure they are ready to meet their patients,” he added.

The CHED–University of Adelaide partnership began in 2020, initially training 30 faculty members from UP Manila, West Visayas State University (WVSU), and Mindanao State University–General Santos (MSU–GenSan).

In 2023, CHED reported that 107 faculty members completed online workshops.

In 2024, a total of 52 more educators underwent hands-on training at UP Manila under the guidance of Australian experts.

Training modules cover simulation center operations, curriculum integration, governance, and business modeling—all essential for launching and maintaining simulation-based learning environments.

Looking ahead: Scaling nationwide

By 2025, CHED plans to expand the program to include educators from four to five additional medical schools that already have simulation facilities.

“Our plan is to add four or five medical schools, public or private, that are also using simulation-based medical equipment to create a bigger network,” De Vera said.

He noted that two of the schools identified—University of Northern Philippines and Don Mariano Marcos State University—joined the Australian education mission.

CHED said it is also providing grants to state universities and colleges to help them acquire high-fidelity manikins and task trainers.

This initiative supports the broader goal of improving healthcare education and producing globally competent Filipino doctors.

Related Tags

medical school University of the Philippines Manila Doctors CHED simulation-based medical education (SBME)
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.