%
' container
targetContainer = true
targetContainerHeadline = "PETRONAS and Heriot-Watt announce research partnership"
targetContainerUrl = "/news-archive/2022/petronas-and-heriot-watt-announce-research.htm"
%>
<% splitKeywords = Split("Alumni and Development;Business and Industry;International;Research;UK;External;Article;2022", ";")
splitCategoryKeywords = Split("Audience:Alumni and Development;Audience:Business and Industry;Audience:International;Audience:Research;Campus:UK;News/events audience:External;PageType:Article;System:2022", ";")
bannedList = "Noticeboard*News*Article*External*2023*2022*2021*2020*2019"
whitelistKeywords = Array("Alumni and Development", "Athena Swan", "Business and Industry", "Conferences", "Graduate Apprenticeships", "Graduation", "Open Days", "Public Engagement", "Research")
whitelistTheme = Array("Brewing and Distilling", "Design thinking", "Earth and Marine", "Health and care", "Lyell Centre", "Mathematical and Computer Sciences", "National Robotarium", "Panmure House", "Social Inclusion", "Sustainability and Net Zero")
metaKeywords = ""
for each x in splitCategoryKeywords
tempCatKey = Split(x, ":")
tempCategory = tempCatKey(0)
tempKeyword = tempCatKey(1)
tempSchool = ""
tempResearch = ""
tempSubject = ""
' campus
if tempCategory = "Campus" then
funnelbackGscope = funnelbackGscope & "|" & "campus-" & LCase(Replace(tempKeyword, " ", ""))
' brand
elseif tempCategory = "School" then
if tempKeyword = "Edinburgh Business School" then
tempSchool = "ebs"
elseif tempKeyword = "Textiles and Design" then
tempSchool = "tex"
end if
if tempSchool <> "" then
funnelbackGscope = funnelbackGscope & "|" & "brand-" & tempSchool
end if
' research
elseif tempCategory = "Research Institute" then
funnelbackResearch = funnelbackResearch & "|" & tempKeyword
' subject
elseif tempCategory = "Subject" or tempCategory = "Subject area" then
funnelbackSubject = funnelbackSubject & "|" & tempKeyword
' generic
'elseif instr(bannedList, tempKeyword) = 0 then
else
for each z in whitelistKeywords
if tempKeyword = z or instr(tempKeyword, z) > 0 or instr(z, tempKeyword) > 0 then
dataKeywords = dataKeywords & "|" & z
%><%
exit for
end if
next
for each z in whitelistTheme
if tempKeyword = z or instr(tempKeyword, z) > 0 or instr(z, tempKeyword) > 0 then
dataKeywords = dataKeywords & "|" & z
%><%
exit for
end if
next
end if
next
if funnelbackGscope = "" then
funnelbackGscope = "campus-uk"
else
funnelbackGscope = Replace(funnelbackGscope, "Edinburgh Business School", "ebs")
funnelbackGscope = Replace(funnelbackGscope, "Textiles and Design", "tex")
end if
funnelbackGscope = funnelbackGscope & "|featured-article"
funnelbackKeywords = dataKeywords
useCreated = "2022-10-17"
useCreatedPretty = "17 Oct 2022"
if "" <> "" then
useCreated = ""
useCreatedPretty = Right("", 2) & " " & MonthName(CInt(Mid("", 6, 2)), true) & " " & Left("", 4)
end if %>
PETRONAS and Heriot-Watt University have entered into a research partnership to jointly develop cost-effective technologies to produce hydrogen from biomass waste, in line with both organisations' aspiration for a carbon-neutral future and a circular economy.
The £1M research project is a collaboration under PETRONAS Centre of Excellence in Subsurface Engineering and Energy Transition (PACESET), one of the three Global Technology Centres established by PETRONAS and its academic partners to advance low-carbon and cleaner energy solutions. PACESET is based at Heriot-Watt University in Scotland, United Kingdom.
The research will advance techniques to use thermochemical reactions to produce hydrogen from biomass and other waste materials. Researchers will also explore solutions to address scalability and storage – main barriers in popularising hydrogen as an alternative energy – to promote adoption globally.
The research will initially focus on utilising the estimated 4m tonnes of waste and by-products created by distilleries in the UK and the approximately 127m tonnes of agriculture waste generated annually in Malaysia for hydrogen production. The academic team will also explore storage solutions aiming to utilise depleted oil wells for pure hydrogen storage without the need to add natural gas for stability.
Professor Raffaella Ocone, who is leading the research at the university's Institute of Geoenergy Engineering said, “Hydrogen is seen as a key contributor to the energy transition, but current production and storage methods face multiple scalability challenges. Biomass and biomass-derived fuels can be used to produce hydrogen sustainably and our multidisciplinary team is uniquely placed to address the current barriers by bringing together engineers, scientists, geologists, and industry partners.
“Our research will initially develop new technologies to process and create hydrogen from different biomass waste products, completing a circular economy pathway and producing higher volumes than those currently achievable from existing production methods.
“Our focus will be on technology that can scale because hydrogen remains a small contributor to our overall energy mix. For net zero ambitions to be met, this needs to change rapidly. Collaborators will be essential for the success of this research, and we welcome like-minded partners to join us.”
PETRONAS Group Research and Technology, Head (UK Research & Technology), Dr Gboyega Bishop Falope said, “Sustainability is at the core of PETRONAS' business model. We place high emphasis on reducing emissions through technological advancements and digitalisation, in line with our Net Zero Carbon Emissions by 2050 aspiration. We are confident this research will elevate the contribution hydrogen can make as part of the world's energy mix, and to be part of the holistic solution that brings forth a sustainable future.”
Heriot-Watt University Chemical and Process Engineering Assistant Professor, Dr Aimaro Sanna, who is a co-investigator in the project, said, “Creating new energy sources from waste products solves numerous global challenges including reducing landfill, and minimising carbon emissions. This hydrogen research is a significant step towards addressing the increased waste generated year on year across multiple sectors as well as building the potential for hydrogen as a sustainable energy source of the future.”
<% if "Key info - Contact" = "Key info" then %>
<% ADname = ""
if ADname <> "" then %>
<%
if ADname <> "" then
Set oCon = Server.CreateObject("ADODB.Connection")
sUser = "cn=opentextuser,cn=Users,dc=hw,dc=ac,dc=uk"
sPassword = "Fr56+Mx"
oCon.Provider = "ADsDSOObject"
oCon.Open "ADProvider", sUser, sPassword
Set oCmd = Server.CreateObject("ADODB.Command")
Set oCmd.ActiveConnection = oCon
'sDomainADsPath = "LDAP://dc06.hw.ac.uk:389/DC=hw,DC=ac,DC=uk"
sDomainADsPath = "LDAP://LDAP-ED.hw.ac.uk:389/DC=hw,DC=ac,DC=uk"
sProperties = "givenName,SN,displayName,title,mail,telephoneNumber,facsimileTelephoneNumber,department,physicalDeliveryOfficeName,hwCampus"
oCmd.CommandText = "<" & sDomainADsPath & ">;(&(objectCategory=person)(objectClass=user)(sAMAccountName=" & ADname & "));" & sProperties & ";subtree"
oCmd.Properties("Page Size") = 100
Set rs = oCmd.Execute
While Not rs.EOF
fullName = rs("givenName") & " " & rs("SN")
displayName = rs("displayName")
email = rs("mail")
phone = rs("telephoneNumber")
jobTitle = rs("title")
department = rs("department")
roomNumber = rs("physicalDeliveryOfficeName")
campusName = rs("hwCampus")
rs.MoveNext
Wend
rs.Close
oCon.Close
Set rs = Nothing
Set oCon = Nothing
end if
%>
<% else
fullName = "Annie Pugh"
email = "mediaenquiries@hw.ac.uk"
phone = ""
jobTitle = ""
end if
' international phone format
if phone <> "" then
if Left(phone,2) = "01" then
phone = Replace(phone,"01","+44 1")
end if
end if
' lower-case email
if email <> "" then
email = LCase(email)
end if
%>
<% if fullName <> "" then
if template = "course" then %>
<% end if
end if %>
<% else %>
<% end if %>
<%
' Force aside tag on main page
customFeatured = "yes"
%>
<%
function getRobots()
getRobots = "index"
end function
function getCanonical()
getCanonical = "https://www.hw.ac.uk/news-archive/2022/petronas-and-heriot-watt-announce-research.htm"
end function
function getPreload()
getPreload = ""
getPreload = ""
getPreload = ""
end function
function getMeta()
tempMeta = tempMeta & ""
tempMeta = tempMeta & ""
tempMeta = tempMeta & ""
tempMeta = tempMeta & ""
tempMeta = tempMeta & ""
tempMeta = tempMeta & ""
tempMeta = tempMeta & ""
tempMeta = tempMeta & ""
tempMeta = tempMeta & ""
if "" = "" then
tempMeta = tempMeta & ""
if "2022-10-17" <> "2024-10-02" then
tempMeta = tempMeta & ""
end if
else
tempMeta = tempMeta & ""
end if
tempMeta = tempMeta & tempKeywords
getMeta = tempMeta
end function
%>