low damage etching

At the recent GaN Marathon 2022 held in Venice Italy, Christian Miersch, PhD student at Fraunhofer IISB, received a “Best Student Presentation Award” based on his talk “Low Damage Etching of Nitride Semiconductors”. The GaN Marathon is a workshop designed to present research and the latest results for gallium nitride in microelectronics and optoelectronics. Christian’s talk explained the recessing and annealing conditions of AlGaN/GaN heterostructure to achieve an ohmic contact (or a low resistant ohmic contact). This was achieved by recess atomic layer etching into the AlGaN barrier of HEMT (high electron mobility transistor) structures. Recessing atomic layer etching of the AlGaN layer plays a critical role in GaN device properties, as it can lead to surface state modifications, lattice order and species contamination. The key goals were reducing contamination, thermal stress, damage and degradation of the substrate material, as well as achieving a low surface roughness. The SENTECH cluster tool combining the plasma process plasma enhanced atomic layer etching, ICPECVD, and PEALD tools successfully realised the low damage etching of GaN devices and delivered some promising results, as presented by Christian Miersch. Christian Miersch is a PhD student in Fraunhofer IISB’s Spectroscopy and Test Devices Group within the Materials Department, located in the Fraunhofer Technology Centre High-Performance Materials THM in Freiberg, a research and transfer platform of Fraunhofer IKTS and Fraunhofer IISB.

A huge congratulation from the team at Mi-Net and SENTECH and we look forward to supporting many more such successful research collaborations in the future.

For more information about the tools used by Christian, please visit our pages for Thin Film Processing Technology.

 

Related News

Customer Review – Waterwipes

We recently provided WaterWipes with lab testing services and were very happy to receive this positive review from Emer Gilligan, external affairs director. “The combined
Read more
// Select all level-1 menu items const menuItems = document.querySelectorAll('.ubermenu-item-level-1'); // Apply 'show-me-active' to the first menu item and 'show-me-uber' to its submenu on page load if (menuItems.length > 0) { // Add 'show-me-active' to the first item menuItems[0].classList.add('show-me-active'); // Add 'show-me-uber' to the submenu within the first item (if it exists) const firstSubmenu = menuItems[0].querySelector('.ubermenu-submenu'); if (firstSubmenu) { firstSubmenu.classList.add('show-me-uber'); } } // Set up event listeners for each level-1 menu item menuItems.forEach(item => { item.addEventListener('mouseenter', function() { // Remove 'show-me-uber' class from all submenus document.querySelectorAll('.ubermenu-submenu').forEach(submenu => { submenu.classList.remove('show-me-uber'); }); // Remove 'show-me-active' class from all level-1 items menuItems.forEach(menuItem => { menuItem.classList.remove('show-me-active'); }); // Add 'show-me-active' class to the hovered item this.classList.add('show-me-active'); // Find the submenu within the hovered item and add 'show-me-uber' class const submenu = this.querySelector('.ubermenu-submenu'); if (submenu) { submenu.classList.add('show-me-uber'); } }); }); /* OPEN ONE MENU AT A TIME */ document.addEventListener('DOMContentLoaded', function () { console.log('Script Loaded'); // Check if the script is running const menuItems = document.querySelectorAll('.ubermenu-item-has-children'); // Select parent menu items const subIndicators = document.querySelectorAll('.ubermenu-sub-indicator'); // Select sub-indicators console.log('Sub Indicators:', subIndicators); // Log the sub-indicators to ensure selection is correct // Function to close all menus except the current one function closeOtherMenus(currentMenu) { console.log('Closing all other menus except:', currentMenu); menuItems.forEach(function (menuItem) { if (menuItem !== currentMenu) { console.log('Removing active class from:', menuItem); menuItem.classList.remove('ubermenu-active'); // Remove active class from other menus } }); } // Add click event to each sub-indicator subIndicators.forEach(function (indicator) { console.log('Attaching click event to:', indicator); // Log each sub-indicator being processed indicator.addEventListener('click', function (e) { console.log('Sub-indicator clicked:', this); e.stopPropagation(); // Prevent the event from bubbling to the document const parentMenuItem = this.closest('.ubermenu-item-has-children'); // Find the parent menu item console.log('Parent Menu Item:', parentMenuItem); // Log the parent menu item if (parentMenuItem) { // Check if parentMenuItem is valid if (parentMenuItem.classList.contains('ubermenu-active')) { console.log('Menu is already active, deactivating:', parentMenuItem); parentMenuItem.classList.remove('ubermenu-active'); } else { console.log('Activating menu:', parentMenuItem); closeOtherMenus(parentMenuItem); parentMenuItem.classList.add('ubermenu-active'); } } else { console.log('No parent menu item found.'); } }); }); // Add click event to the document to close menus when clicking outside document.addEventListener('click', function (e) { console.log('Document clicked. Closing all menus.'); // Check if the click is outside the menu if (!e.target.closest('.ubermenu')) { console.log('Click is outside the menu, closing all menus.'); menuItems.forEach(function (menuItem) { menuItem.classList.remove('ubermenu-active'); // Remove active class from all menus }); } }); });