forked from oetiker/github-pages-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
collisions.html
127 lines (96 loc) · 5.19 KB
/
collisions.html
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- UIkit CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/uikit.min.css" />
<!-- UIkit JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit-icons.min.js"></script>
<title>Collisions</title>
</head>
<body>
<div id="navbar-placeholder"></div>
<script>
fetch('navbar.html')
.then(response => response.text())
.then(data => {
document.getElementById('navbar-placeholder').innerHTML = data;
});
</script>
<div class="uk-container">
<div class="uk-card uk-card-default uk-card-small">
<div class="uk-card-header">
<h3 class="uk-card-title uk-text-center">The Outcome of Collisions between Gaseous Clumps formed by Disk Instability</h3>
</div>
</div>
</div>
<p></p>
<div class="uk-container">
<div class="uk-position-relative uk-visible-toggle uk-light" tabindex="-1" uk-slideshow>
<div class="uk-slideshow-items">
<div>
<img src="collisions/collapse.gif" alt="" uk-cover>
</div>
<div>
<video src="collisions/disruption.mp4" autoplay loop muted playsinline uk-cover></video>
</div>
<div>
<video src="collisions/graze-merge.mp4" autoplay loop muted playsinline uk-cover></video>
</div>
<div>
<video src="collisions/merger.mp4" autoplay loop muted playsinline uk-cover></video>
</div>
</div>
<a class="uk-position-center-left uk-position-small uk-hidden-hover" href uk-slidenav-previous uk-slideshow-item="previous"></a>
<a class="uk-position-center-right uk-position-small uk-hidden-hover" href uk-slidenav-next uk-slideshow-item="next"></a>
</div>
</div>
<p></p>
<div class="uk-container">
<div class="uk-card uk-card-default uk-card-small">
<div class="uk-card uk-card-default uk-card-body uk-margin-small">
<p>We do not fully understand how giant gas planets like Saturn and Jupiter were formed. </p>
<p>There are two main theories that attempt to explain how these gas giants arise from a disk of gas and dust surrounding a star. </p>
<p>The more widely known theory, called core accretion, suggests that giant planets emerge when a solid core forms first, followed by the accumulation of gas from the surrounding disk.</p>
<p>While this theory explains many observations, it does not fit all of them, leading to the development of an alternative theory: the disk instability model. </p>
<p>This model proposes that if a massive gas disk becomes unstable, it can break apart into dense clumps, which then collapse to form gas giants. </p>
<p>Several of these clumps can form around the star and collide with one another, potentially creating violent interactions that play a key role in the formation of the planets. </p>
<p>In our paper, we run numerical simulations to better understand what happens during these cosmic collisions.</p>
</div>
</div>
</div>
<p></p>
<div class="uk-container">
<div class="uk-child-width-1-2@m uk-grid-match uk-text-center" uk-grid>
<div class="uk-width-1-2@m">
<div class="uk-card uk-card-default uk-card-small uk-card-body">
<a href="https://www.aanda.org/articles/aa/full_html/2024/11/aa50900-24/aa50900-24.html" class="uk-button uk-width-1-1 uk-button-large">
<img src="logo/logo_aa.svg" uk-svg>
</a>
</div>
</div>
<div class="uk-width-1-2@m">
<div class="uk-card uk-card-default uk-card-small uk-card-body">
<a href="https://arxiv.org/abs/2410.02928" class="uk-button uk-width-1-1 uk-button-large">
<img src="logo/logo_arxiv.svg" uk-svg>
</a>
</div>
</div>
</div>
</div>
<p></p>
<p></p>
<!--
<div class="uk-container">
<div class="uk-card uk-card-default uk-card-small">
<div class="uk-text-justify uk-card-body">
<img src="collapse_legend.png" width="1800" height="1200" alt="">
</div>
</div>
</div>
<p></p>
-->
</body>
</html>