[]
Home response.text()) .then(data => new DOMParser().parseFromString(data, “text/html”)) .then(dom => dom.querySelector(“div.uos-sitemap”)) .then(sitemap => getBreadcrumbsFromSitemap(sitemap)) .catch(() => getBreadcrumbsFromPath()) .then(breadcrumbs => buildBreadcrumbsHtml(breadcrumbs)) function findElementToStartFrom(sitemap) { let element = sitemap.querySelector(“a[href='” + windowPath + “?’]”) || sitemap.querySelector(“a[href='” + windowPath + “‘]”) if (element) { return element } let pathParts = windowPath.split(“/”).filter(part => part !== ”) for(let i = pathParts.length; i >=1 ; i–) { let path = (‘/’ + pathParts.slice(0, i).join(‘/’)) let element = sitemap.querySelector(“a[href='” + path + “‘]”) || sitemap.querySelector(“a[href='” + path + “/index.page’]”) || sitemap.querySelector(“a[href='” + path + “?’]”) || sitemap.querySelector(“a[href='” + path + “/index.page?’]”) if (element) { return element } } throw new Error(“Can’t find starting element in sitemap”) } function getBreadcrumbsFromSitemap(sitemap) { let breadcrumbs = [] let element = findElementToStartFrom(sitemap); while (element) { breadcrumbs.push(makeBreadcrumb((new URL(element.href)).pathname, element.innerText.trim())) element = getParentLink(element) } let homeTitle = sitemap.querySelector(“h2”).innerText.trim() let homeUrl = sitemap.querySelector(“a”).href.trim() breadcrumbs.push(makeBreadcrumb((new URL(homeUrl).pathname), homeTitle)) return breadcrumbs.reverse() } function getBreadcrumbsFromPath() { console.log(“Building breadcrumbs from path”) let breadcrumbs = [] let pathParts = windowPath.split(“/”).filter(part => part !== ”) for(let i = 1; i char.toUpperCase()) breadcrumbs.push(makeBreadcrumb(url, title)) } return breadcrumbs } function makeBreadcrumb(url, name) { return {href: url.trim(), name: name.trim()} } function buildBreadcrumbsHtml(breadcrumbs) { let rootElement = document.querySelector(“#BreadcrumbListNavElem”) breadcrumbs.forEach(crumb => { if (crumb.href === windowPath) { return } let rootDiv = document.createElement(“div”) rootDiv.setAttribute(“typeof”, “ListItem”) rootDiv.setAttribute(“property”, “itemListElement”) rootDiv.setAttribute(“class”, “uos-breadcrumb-child”) let link = document.createElement(“a”) link.href = crumb.href link.setAttribute(“title”, crumb.name) link.setAttribute(“typeOf”, “WebPage”) link.setAttribute(“property”, “item”) let titleSpan = document.createElement(“span”) titleSpan.innerText = crumb.name rootDiv.appendChild(link) link.appendChild(titleSpan) rootElement.innerHTML += “>” rootElement.appendChild(rootDiv) }) } function getParentLink(element) { while (element.tagName !== “UL”) { element = element.parentElement if (!element) { return null } } return Array.from(element.parentElement.children).find(item => item.tagName === “A”) } ]]>

Published: 2025-04-30 09:00:00

Lord Patrick Vallance (centre) with University leaders and academics standing in front of plaque celebrating launch of new facility Professor Anna Peacock, Executive Officer Osamu Wakimoto from Jeol Japan, Science Minister Lord Patrick Vallance, Vice-Chancellor Professor Mark E. Smith and Professor Graham Reed

A new facility which uses cutting edge E-beam technology to build the next generation of semiconductor chips has been opened at the University of Southampton by Science Minister Lord Patrick Vallance.

The new E-beam lithography facility is just the second in the world, and the first outside Japan.

It provides incredible accuracy that is critical to designing the tiny components that power technologies of the future, from medical diagnostics to defence systems.

Semiconductors – the small chips that power devices from smartphones to satellites – already contribute an estimated £10 billion to our economy each year, with the sector projected to grow to an estimated £17 billion by 2030.

Science Minister Lord Vallance opened the new facility alongside University Vice-Chancellor Professor Mark E. Smith and Professor Graham Reed, who leads its Optoelectronics Research Centre (ORC) and CORNERSTONE.

Lord Vallance said: “Britain is home to some of the most exciting semiconductor research anywhere in the world – and Southampton’s new E-beam facility is a major boost to our national capabilities.

“By investing in both infrastructure and talent, we’re giving our researchers and innovators the support they need to develop next-generation chips right here in the UK.

E-beam lithography uses a focused beam of tiny particles called electrons to create patterns in materials with unrivalled resolution – allowing researchers to create features thousands of times smaller than a human hair.

Professor Graham Reed added: “The introduction of the new E-Beam facility will reinforce our position of hosting the most advanced cleanroom in UK academia.

“It facilitates a vast array of innovative and industrially relevant research, and much needed semiconductor skills training.”

Lord Vallance’s visit to Southampton comes alongside new research which shows that one of the biggest barriers to achieving growth in the UK’s burgeoning semiconductor industry is a lack of emerging talent.

With a single semiconductor worker contributing an average of £460,000 to the economy annually, the UK’s economic potential is huge.

In response, the government has launched a new £4.75million semiconductor skills package to help build the talent base needed to fuel this high-growth industry.

The package will also help strengthen research and development capacity at leading universities, such as Southampton, which are central to UK semiconductor innovation and talent development.

Lord Vallance added: “Our £4.75 million skills package will support our Plan for Change by helping more young people into high-value semiconductors careers, closing skills gaps and backing growth in this critical sector.”

Read more about the E-beam facility and Optoelectronics Research Centre (ORC) at the University of Southampton at www.southampton.ac.uk/orc .

By admin