-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresearch.html
More file actions
111 lines (104 loc) · 5.16 KB
/
research.html
File metadata and controls
111 lines (104 loc) · 5.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Research | Katherine Ormerod</title>
<link href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav class="navigation">
<a href="index.html" class="site-title">Katherine Ormerod</a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="research.html" class="active">Research</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="talks.html">Talks</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<button class="menu-toggle">☰</button>
</nav>
</header>
<main>
<section id="research" class="research-section">
<div class="content-wrapper">
<div class="research-grid">
<h2>My Projects</h2>
</div>
<div class="project project-with-image">
<img src="GNWY_UV_Bump.png" alt="2175Å UV bump illustration" class="project-image">
<div class="project-text">
<h4>The 2175Å UV Bump at High Redshift</h4>
<p>
In this paper, we identified a bright galaxy at z=7.1, with a strong 2175Å UV bump
feature in its rest-UV spectrum, through observations taken as part of the NIRSpec
Wide GTO survey.
<br><br>
The presence of the UV bump feature at such early times indicates rapid evolution of
dust properties within the first billion years of cosmic time. To investigate the origin
of the dust responsible for the UV bump, we carried out resolved SED fitting, suggesting
that existing (large) dust grains are likely being rapidly reprocessed in the ISM,
producing the small carbonaceous grains responsible for the UV bump feature.
<a href="https://ui.adsabs.harvard.edu/abs/2025arXiv250221119O/abstract"
class="publication-link">Find out more →</a>
</p>
</div>
</div>
<div class="project">
<h4>Emission Line Galaxies in the Epoch of Reionisation</h4>
<p>Studying the properties of Spitzer/IRAC excess galaxies in the Epoch of Reionisation with
NIRSpec spectroscopy.</p>
</div>
</div>
</div>
</section>
<section id="proposals" class="proposals-section">
<div class="content-wrapper">
<h2>Successful Proposals</h2>
<div class="proposals-grid">
<div class="proposal-card">
<div class="proposal">
<h4>Constraining Dust Formation at Cosmic Dawn with Luminous UV Bump Galaxies</h4>
<p class="info">PI, JWST NIRSpec IFU<br>Observing time: 19 hours</p>
</div>
<div class="proposal">
<h4>The 2175Å UV bump as a signpost of NIRCam dark star formation</h4>
<p class="info">PI, NOEMA interferometer<br>Observing time: 25 hours</p>
</div>
<div class="proposal">
<h4>Unveiling dust build up in a 'UV bump' galaxy at z=7.1 with JWST+NOEMA</h4>
<p class="info">Co-PI, NOEMA interferometer<br>Observing time: 16 hours</p>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<p>© 2026 Katherine Ormerod</p>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
const menuToggle = document.querySelector('.menu-toggle');
const navMenu = document.querySelector('.navigation ul');
menuToggle.addEventListener('click', function() {
navMenu.classList.toggle('show');
});
document.addEventListener('click', function(event) {
const isClickInsideNav = event.target.closest('.navigation');
if (!isClickInsideNav && navMenu.classList.contains('show')) {
navMenu.classList.remove('show');
}
});
window.addEventListener('resize', function() {
if (window.innerWidth > 768 && navMenu.classList.contains('show')) {
navMenu.classList.remove('show');
}
});
});
</script>
</body>
</html>