forked from design-futures/design-futures.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent_roshni.html
102 lines (100 loc) · 5.67 KB
/
student_roshni.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
<html>
<head>
<link rel="stylesheet" href="./info_style.css">
</head>
<body>
<header>
<div id="top_bar">
<div id="header_logo">
<canvas id="logo_image" align='center'></canvas>
</div>
<div id="header_text">
<h1 id='heading'>Design and Futures</h1>
</div>
</div>
</header>
<div id='main'>
<span id='title'>Group 1</span>
<h2>Roshni Sundar Rajan</h2>
<div id='left'>
<button class='accordian'>Idea<span><img class="arrows" src="./images/down-arrow.png" id="idea"></span></button>
<div class='panel'>
<p><b>What was the origin of your enquiry? Where are you coming from on, what motivated you to take up this exploration? What are your philosophies
around the idea? What motivated you towards this? What were some assumptions and notions you had? What was the idea or thought you came across?
</b>
</p>
<p>
The idea was that if a city was built using renewable resources it would solve/reduce the environmental concerns we face present day.
</p>
</div>
</br></br>
<button class='accordian'>Research<span><img class="arrows" src="./images/down-arrow.png" id="research"></span></button>
<div class='panel'>
<p><b>Did any author or fiction or philosophy inspire you? How did you go about exploring the inquiry you were interested in?
How did you document the info you were coming across? How did you devise or plan an approach?
Did you crush or prove any assumptions? How did you perform research?</b></p></br>
<p>
Mostly online research. Looking into where and what's already been implemented and what materials were used and could be used. I came across Green Architecture and then proceeded from there
</p>
</div>
</br></br>
<button class='accordian'>Incubation<span><img class="arrows" src="./images/down-arrow.png" id="incubation"></span></button>
<div class='panel'>
<p><b>What were certain approaches/tools/methods you used to act on your inquiry? How was your inquiry wandering off at this point? Did you start developing a tunnel vision, or boredom around your topic? How much procastinate,
and how did you do that? How did you get out that "ZONE"? What is your motive and expectations from Making Activity ?
</b></p>
<p>
The questions that I starting thinking about were, Could this be implemented in India in the distant future? assuming yes then how? what would be done small scale? and so on. I also ended up focusing solely on the buildings.
</p>
</div>
</br></br>
<button class='accordian'>Making<span><img class="arrows" src="./images/down-arrow.png" id="making"></span></button>
<div class='panel'>
<p><b>What is the coolest shit you've pulled off in these 3 weeks if any? Is there some tangible outcome or output that came about (even a sketch or wireframe works!)? Is there any achievement/discovery/wow moment
you were able to find (do upload it!)? Would you like to share some graphic/visual/aural experience of your making session (hackathon)?
</b></p>
<p>
Through jotting down small notes and rough doodles I was able to narrow down 5 types of buildings to focus on - Shops, Schools, Office buildings, Apartments and Restaurants. and what partial green architecture could be implemented(even on a small scale). And the use of Solar energy and Rain water harvesting to be implemented in all 5 typed, wherein the rain water collected either be filtered and reused or be directed to the earth to help replenish ground water. The implementation of Grey water Recycling especially in restaurants and apartments. And the use of renewable materials being used for the construction of the buildings.
</p>
</div>
</br></br>
<button class='accordian'>Reflection<span><img class="arrows" src="./images/down-arrow.png" id="reflection"></span></button>
<div class='panel'>
<p><b>Put up your updated visual abstract and a brief summary of reflection</b></p>
<p>
through the course of the studio my initial inquiry shifted from minimising environmental damage to focusing solely on the possible implementation of green architecture. I did not stop to consider other possible alternatives. I got engrossed to the concept of Green Architecture and I learnt about it.
</p>
</div>
</div>
<div id='right'>
<table>
<tr>
<td>
<img src="./images/roshni.jpg" id="visual_abstract">
</td>
</tr>
</table>
</div>
</div>
<div id='footer'>
<h3>Design and Futures Studio</h3>
</div>
<script>
var acc = document.getElementsByClassName("accordian");
var i;
for(i=0; i< acc.length; i++){
acc[i].addEventListener("click",function(){
this.classList.toggle("active");
var panel = this.nextElementSibling;
if(panel.style.maxHeight){
panel.style.maxHeight = null;
}else
{
panel.style.maxHeight = panel.scrollHeight + "10000px";
}
});
}
</script>
<script type="text/javascript" src="./logo.js"></script>
</body>
</html>