-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtech1.html
123 lines (96 loc) · 5.27 KB
/
tech1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yuxin Yang | IoT Shoreline: Wave, Weave</title>
<link rel="stylesheet" type="text/css" href="resources/css/style.css">
</head>
<body>
<!-- Sidebar -->
<nav class="sidebar">
<p class=h1><strong>Y</strong>UXIN <strong>Y</strong>ANG</p>
<button type="button" class="collapsible">Landscape and Urban Design</button>
<div class="content">
<ul><a href="project1.html" class=p--info>From Airport to HST Station: Bio Intermodality</a></ul>
<ul><a href="project2.html" class=p--info>Crosswind Data Center</a></ul>
<ul><a href="project3.html" class=p--info>Migration is Beautiful: Biophillic Boulevard</a></ul>
<ul><a href="project4.html" class=p--info>Dredge Engine</a></ul>
</div>
<br>
<button type="button" class="collapsible">Technology</button>
<div class="content">
<ul><a href="tech1.html" class=p--info>IoT Shoreline: Wave, Weave</a></ul>
<ul><a href="tech2.html" class=p--info>CityScope Module: Kendall Life-Work Crescendo</a></ul>
<ul><a href="tech3.html" class=p--info>Remote Sensing Sanyang Wetland</a></ul>
<ul><a href="tech4.html" class=p--info>Adaptive Rocking Lattice Stool</a></ul>
<ul><a href="tech5.html" class=p--info>Air-Pillow Attire for Haphephobia</a></ul>
</div>
<p><a href="whim.html" class=p--info>Whim</a></p>
<p><a href="cv.html" class=p--info>CV</a></p>
<p><a href="index.html" class=p--info>About</a></p>
<footer>
<p>Published on GitHub Page <br>© Yuxin Yang, Feb 2023</p>
</footer>
</nav>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
<!-- Page Content -->
<div style="margin-left:280px" class="a">
<p class=h2>IoT Shoreline: Wave, Weave</p>
<br>
<p class=p--caption> <strong>Info</strong> Individual Work, 02-05/2022, Academy<br>
<strong>Instructor</strong> Dr. Joseph A. Paradiso, [email protected] <br>
<strong>Institution</strong> MIT Media Lab, Responsive Environments Group<br>
<span class="hl"><strong>Honor</strong> Featured in "BSLA Landscape Architecture + Climate Action" lightning talk<br>
1st Place in “DLA2022 - Poster
Competition Prize”</span></p>
<br>
<p class=p--info>Geotextile tubes as submerged breakwaters are the shoreline climate-adaptive infrastructure.
The project proposed fiber sensing, a weavable sensor for geotextile tubes, to capture environmental changes, soil, and waves, specifically in this project, enabling an IoT shoreline. The research includes fiber sensor prototype development and two set experiments -
deformation experiments on fiber sensors of varying diameters and treatment
and water tank waves experiments on breakwater mockups.</p>
<br>
<!--Image Section-->
<div>
<p class=h--img>Fiber Optics Sensor Deformation Animation</p><br>
<video width="960" autoplay loop>
<source src ="./resources/images/Yang, Yuxin_1_Fiber Optic Bending Test.mp4" type="video/mp4">
</video><br><br>
<img src="./resources/images/1_Page_04.jpg" height=640 alt=""><br><br>
<img src="./resources/images/1_Page_05.jpg" height=640 alt=""><br><br>
<img src="./resources/images/1_Page_06.jpg" height=640 alt=""><br><br>
<img src="./resources/images/1_Page_07.jpg" height=640 alt=""><br><br>
<img src="./resources/images/1_Page_08.jpg" height=640 alt=""><br><br>
<br>
<p class=h--img>Water Tank Wave Experiment Animation</p><br>
<video width="960" autoplay loop>
<source src ="./resources/images/Yang, Yuxin_3_Geotube Sensor Underwater Test.mp4" type="video/mp4">
</video><br>
<br>
<p class=h--img>Geoengineering on the Shoreline</p><br>
<img src="./resources/images/1_Page_01.jpg" height=640 alt=""><br>
</div>
<br><br><br>
<div>
<p class=p--info>Inquire via email: <a href="mailto:[email protected]">[email protected]</a><br>
Connect via LinkedIn: <a href="https://www.linkedin.com/in/yuxin-yang-78a671191/?originalSubdomain=cn">Here</a>
<footer>© Yuxin Yang, Feb 2023</footer> </p>
</div>
</div>
</body>
</html>