Skip to content

vahid-aryanpur/Research

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 

Repository files navigation

<style> /* Styles for the tab buttons */ .tab { overflow: hidden; border-bottom: 1px solid #ccc; }
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #ccc;
}

/* Styles for the tab content */
.tabcontent {
  display: none;
  padding: 20px 0;
  border-top: none;
}
</style>

<div class="tab">
  <button class="tablinks" onclick="openTab(event, 'Research')" id="defaultOpen">Research</button>
  <button class="tablinks" onclick="openTab(event, 'Teaching')">Teaching</button>
  <button class="tablinks" onclick="openTab(event, 'Contact')">Contact</button>
</div>
Dr Vahid Aryanpur
Dr Vahid Aryanpur

About Me

My name is Vahid Aryanpur. I teach and study energy systems modelling, energy transition, energy and climate policy, and transport decarbonisation. I use GitHub mostly for modelling, result visualisation, data, and teaching material sharing.

Recent Studies

Research Profiles

Teaching

Details about teaching materials, courses, and lectures will be shared here.

Contact

E-mail: vahid.aryanpur@ucc.ie

Address: Energy Policy and Modelling Group, MaREI, UCC, Lee Rd, Sunday's Well, Cork, T23 XE10

You can reach out to me via email or social media:

<script> function openTab(evt, tabName) { var i, tabcontent, tablinks; tabcontent = document.getElementsByClassName("tabcontent"); for (i = 0; i < tabcontent.length; i++) { tabcontent[i].style.display = "none"; } tablinks = document.getElementsByClassName("tablinks"); for (i = 0; i < tablinks.length; i++) { tablinks[i].className = tablinks[i].className.replace(" active", ""); } document.getElementById(tabName).style.display = "block"; evt.currentTarget.className += " active"; } // Open default tab document.getElementById("defaultOpen").click(); </script>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published