<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>p i n u p s p a c e &#187; teaching</title>
	<atom:link href="http://www.tedngai.net/category/teaching/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tedngai.net</link>
	<description></description>
	<lastBuildDate>Fri, 02 Dec 2011 01:55:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>psychrometrics with Matlab</title>
		<link>http://www.tedngai.net/teaching/psychrometrics-with-matlab.html</link>
		<comments>http://www.tedngai.net/teaching/psychrometrics-with-matlab.html#comments</comments>
		<pubDate>Sun, 27 Feb 2011 21:08:36 +0000</pubDate>
		<dc:creator>ted</dc:creator>
				<category><![CDATA[teaching]]></category>
		<category><![CDATA[data visualization]]></category>
		<category><![CDATA[psychrometrics]]></category>
		<category><![CDATA[sustainability]]></category>
		<category><![CDATA[weather data]]></category>

		<guid isPermaLink="false">http://www.tedngai.net/?p=738</guid>
		<description><![CDATA[Continuation of climate visualization tutorial with Matlab. This tutorial shows how to plot TMY3 weather data on psychrometric chart.]]></description>
			<content:encoded><![CDATA[<p>This is the second tutorial on climate visualization using Matlab, particularly on plotting weather data on a psychrometric chart.</p>
<p>Although architects are most familiar with psychrometric chart to understand comfort zone and identify appropriate passive design strategies, psychrometrics is more commonly used by mechanical engineers to study air and water vapor mixture for active mechanical devices to condition air.</p>
<p>Tools like <a href="http://usa.autodesk.com/adsk/servlet/pc/index?id=12602821&amp;siteID=123112" target="_blank">Autodesk&#8217;s Ecotect Weather Tool</a> or <a href="http://www.energy-design-tools.aud.ucla.edu/" target="_blank">Climate Consultant</a> are typically sufficient for architects to study comfort zone and passive design strategies. However, for active applications, we need to be able to enter our own data points, such as ones that come from mechanical specs or material properties.</p>
<p>4 scripts 2 data files are included in this <a href="http://www.tedngai.net/files/EPW_Psychro.zip" target="_blank">distribution</a>.</p>
<ul>
<li>Make sure all 6 files are mapped into your Matlab path. Easiest way is to put all the files into your My Documents\Matlab folder, or on OSX &gt; Documents\Matlab</li>
<li>Open ReadEPW.m  This is an updated version and does not require you to manually input the file path.</li>
<li>Click Run and locate the desired <a href="http://apps1.eere.energy.gov/buildings/energyplus/cfm/weather_data.cfm" target="_blank">Energy+ Weather file</a></li>
<li>Open <span style="color: #00ccff;">EPW2Hourly.m</span> and click Run</li>
<li>Type in command:<br />
<span style="color: #ff0000;">psychro(dbt,ahm,0,0,&#8217;scatter&#8217;);</span><br />
This will create a scatter plot of all the hourly values of dry bulb temperature and absolute humidity.<br />
<img class="alignnone size-full wp-image-741" title="NYC_psychro_all" src="http://www.tedngai.net/wp-content/uploads/2011/02/NYC_psychro_all.gif" alt="" width="720" height="604" /></li>
<li>To separate all the data by months, use the command<br />
<span style="color: #ff0000;">psychro(dbt(aug),ahm(aug ),0,0,&#8217;scatter&#8217;);</span><br />
<img class="alignnone size-full wp-image-742" title="NYC_psychro_aug" src="http://www.tedngai.net/wp-content/uploads/2011/02/NYC_psychro_aug.gif" alt="" width="720" height="604" /><br />
<span style="color: #ff0000;">psychro(dbt(apr),ahm(apr),0,0,&#8217;scatter&#8217;);</span><br />
<img class="alignnone size-full wp-image-743" title="NYC_psychro_apr" src="http://www.tedngai.net/wp-content/uploads/2011/02/NYC_psychro_apr.gif" alt="" width="720" height="604" /></li>
<li>Sometimes having all the hourly data is not very useful because there&#8217;s simply too much information. Run the <span style="color: #00ccff;">EPW2Daily.m</span> file, this will reshape the 1&#215;8760 matrix to 24&#215;365, and we can easily find the daily maximum and minimum, and plot the diurnal changes.</li>
<li>Type in command:<br />
<span style="color: #ff0000;">psychro(dbtMax,dbtMin,ahmMax,ahmMin,&#8217;line&#8217;);</span><br />
This will give you a line plot of all the diurnal changes. The line will start at the higher temperature and end at the lower temperature.<br />
<img class="alignnone size-full wp-image-744" title="NYC_psychro_minmax_all" src="http://www.tedngai.net/wp-content/uploads/2011/02/NYC_psychro_minmax_all.gif" alt="" width="720" height="604" /></li>
<li>Once again, we can separate it into individual months with the following command<br />
<span style="color: #ff0000;">psychro(dbtMax(aug),dbtMin(aug),ahmMax(aug),ahmMin(aug),&#8217;line&#8217;);</span><br />
<img class="alignnone size-full wp-image-745" title="NYC_psychro_minmax_aug" src="http://www.tedngai.net/wp-content/uploads/2011/02/NYC_psychro_minmax_aug.gif" alt="" width="720" height="604" /></li>
<li> <span style="color: #ff0000;">psychro(dbtMax(apr),dbtMin(apr),ahmMax(apr),ahmMin(apr),&#8217;line&#8217;);</span><br />
<img class="alignnone size-full wp-image-746" title="NYC_psychro_minmax_apr" src="http://www.tedngai.net/wp-content/uploads/2011/02/NYC_psychro_minmax_apr.gif" alt="" width="720" height="604" /></li>
</ul>
<p>If you get an error like this one</p>
<div id="_mcePaste"><span style="color: #ff0000;">??? Error using ==&gt; fgetl at 44</span></div>
<div id="_mcePaste"><span style="color: #ff0000;">Invalid file identifier.  Use fopen to generate a valid file</span></div>
<div id="_mcePaste"><span style="color: #ff0000;">identifier.</span></div>
<div id="_mcePaste"><span style="color: #ff0000;">Error in ==&gt; ReadEPW at 16</span></div>
<div id="_mcePaste"><span style="color: #ff0000;">loc = fgetl(fid);</span></div>
<p>That means Matlab is not recognizing the folder of your EPW file. Go to File &gt; Set Path and locate the folder.</p>
<p>To set a different color for each month and automatically save the charts, you can do the following.<br />
<code><br />
%written and copyrighted by Ted Ngai www.tedngai.net<br />
%version 0.1 Mar 2011</p>
<p>xSize = 6; %This is the horizontal size of the figure<br />
ySize = 4; %This is the vertical size of the figure<br />
months = {1:31, 32:59, 60:90, 91:120, 121:151, 152:181, 182:212, 213:243, 244:273, 274:304, 305:334, 335:365};<br />
monthstr = {'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec'};<br />
figure;<br />
c=0;<br />
for x = 1:12</p>
<p>    %get current month<br />
    month = cell2mat(months(x))';</p>
<p>    %get min/max of month<br />
    maxmon=max(month);<br />
    minmon=min(month);</p>
<p>    %set color value<br />
    nColor=[1,0.8-c,0.1+c];<br />
    c=c+0.07;</p>
<p>    %plot graph<br />
    psychro(dbtMax(month),dbtMin(month),ahmMax(month),ahmMin(month),'line',nColor);</p>
<p>    xlabel(cell2mat(monthstr(x)));  %.. and label for the y axis<br />
    %ylabel('temperature (\circC)');   %Input the labels for the x axis</p>
<p>    currentFig = gcf;<br />
    currentAxes = gca;</p>
<p>    set(currentAxes,'FontSize',6);<br />
    set(currentFig, 'PaperUnits', 'inches'); %change paperspace units here (also line 25)<br />
    set(currentFig, 'PaperSize', [xSize ySize]);<br />
    set(currentFig, 'PaperPositionMode', 'manual');<br />
    set(currentFig, 'PaperPosition', [0 0 xSize ySize]);<br />
    set(currentFig, 'Units', 'inches'); %change paperspace units here too<br />
    set(currentFig, 'Position', [0, 0, xSize, ySize]);</p>
<p>    axis([minmon maxmon 0 120]);</p>
<p>    fn=['psychro_daily_',city,num2str(x),'.ai'];<br />
    hgexport(currentFig,fn); %Change the filename here</p>
<p>end<br />
clear xSize ySize currentFig currentAxes fn temp maxmon minmon month ;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tedngai.net/teaching/psychrometrics-with-matlab.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ecophysiological Architecture</title>
		<link>http://www.tedngai.net/teaching/ecophysiological-architecture.html</link>
		<comments>http://www.tedngai.net/teaching/ecophysiological-architecture.html#comments</comments>
		<pubDate>Mon, 21 Feb 2011 03:57:01 +0000</pubDate>
		<dc:creator>ted</dc:creator>
				<category><![CDATA[teaching]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[component population]]></category>
		<category><![CDATA[ecology]]></category>
		<category><![CDATA[ecophysiology]]></category>
		<category><![CDATA[grasshopper]]></category>
		<category><![CDATA[housing]]></category>
		<category><![CDATA[incident solar]]></category>

		<guid isPermaLink="false">http://www.tedngai.net/?p=671</guid>
		<description><![CDATA[Morphology and physiology are two sides of the same coin. Here are selected projects from the studio I taught at CASE RPI, investigating the architectural potential of sustainable building building strategies inspired by eco-physiological mechanisms of animals. ]]></description>
			<content:encoded><![CDATA[<p><!-- p.p1 {margin: 4.5px 0.0px 0.0px 0.0px; text-indent: 13.5px; line-height: 14.0px; font: 9.0px 'Frutiger LT Std'} span.s1 {letter-spacing: 0.6px} -->Through evolution, animals and plants develop strategies to survive and thrive in their own environments. Survival mechanisms such as thermoregulation, water economy, and energy metabolism, are common to all organisms. Physiology, since the famed French scientist Claude Bernard, has become the study of how such mechanisms manifest under isolated and controlled conditions. Ecophysiology, on the other hand, pursues the studies in the subject’s own environment and allow for a much more natural observation and analysis of the organisms&#8217; responses to the dynamics of resource availability and diurnal and seasonal switches. Architecture, often conceptualized as the third skin, can learn much from such physiological approach, particularly in the face of global climate change and energy crisis. Unlike conventional architectural practice, organisms do not deal with heliotropism separately from thermoregulation, nor would do they handle water economy separately from energy conservation and metabolism. To maintain a stable internal environment, organisms must rely on everything at their disposal as part of their survival strategy. Therefore, ecophysiological architecture posits the same fundamental basis and asks a simple question: “what if buildings have to develop heating, cooling, lighting, daylighting, and ventilation strategies as part of its morphology?”</p>
<p>The following are selected works from a studio investigation that attempts to reapply these highly coupled physiological systems with the building&#8217;s mechanical and morphological system to imbue a behavioral solution to address the ecology of our built environment.</p>
<p><strong>Projects</strong></p>
<p><strong>Joe Hines</strong> | Active Thermoregulation</p>
<p><img class="alignnone size-full wp-image-673" title="befall2010_01" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_01.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-674" title="befall2010_02" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_02.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-675" title="befall2010_03" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_03.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-676" title="befall2010_04" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_04.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-677" title="befall2010_05" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_05.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-678" title="befall2010_06" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_06.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-679" title="befall2010_07" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_07.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-680" title="befall2010_08" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_08.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-681" title="befall2010_09" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_09.jpg" alt="" width="720" height="473" /></p>
<p><strong>Shima Miabadi</strong> | Counter Current Heat Exchange</p>
<p><img class="alignnone size-full wp-image-682" title="befall2010_10" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_10.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-683" title="befall2010_11" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_11.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-684" title="befall2010_12" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_12.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-685" title="befall2010_13" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_13.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-686" title="befall2010_14" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_14.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-687" title="befall2010_15" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_15.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-688" title="befall2010_16" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_16.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-689" title="befall2010_17" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_17.jpg" alt="" width="720" height="473" /></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 10.0px 'Frutiger LT Std'} span.s1 {letter-spacing: 0.5px} --><strong>Nicholas Stipinovich</strong> | Wind Responsive Envelope</p>
<p><img class="alignnone size-full wp-image-690" title="befall2010_18" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_18.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-691" title="befall2010_19" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_19.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-692" title="befall2010_20" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_20.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-693" title="befall2010_21" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_21.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-694" title="befall2010_22" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_22.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-695" title="befall2010_23" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_23.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-696" title="befall2010_24" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_24.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-697" title="befall2010_25" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_25.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-698" title="befall2010_25a" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_25a.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-699" title="befall2010_26" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_26.jpg" alt="" width="720" height="473" /></p>
<p><strong>Lauren Thomsen</strong> | A Photoperiodic Envelope</p>
<p><img class="alignnone size-full wp-image-700" title="befall2010_27" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_27.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-701" title="befall2010_28" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_28.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-702" title="befall2010_29" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_29.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-703" title="befall2010_30" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_30.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-704" title="befall2010_31" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_31.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-706" title="befall2010_32" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_321.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-707" title="befall2010_33" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_33.jpg" alt="" width="720" height="473" /></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 10.0px 'Frutiger LT Std'} span.s1 {letter-spacing: 0.5px} --><strong>Adam Petela</strong> | Adaptive Networking</p>
<p><img class="alignnone size-full wp-image-708" title="befall2010_34" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_34.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-709" title="befall2010_35" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_35.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-710" title="befall2010_36" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_36.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-711" title="befall2010_37" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_37.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-712" title="befall2010_38" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_38.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-713" title="befall2010_39" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_39.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-714" title="befall2010_40" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_40.jpg" alt="" width="720" height="473" /><br />
<img class="alignnone size-full wp-image-715" title="befall2010_41" src="http://www.tedngai.net/wp-content/uploads/2011/02/befall2010_41.jpg" alt="" width="720" height="473" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tedngai.net/teaching/ecophysiological-architecture.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>parametric design workshop 2010</title>
		<link>http://www.tedngai.net/teaching/parametric-design-workshop-2010.html</link>
		<comments>http://www.tedngai.net/teaching/parametric-design-workshop-2010.html#comments</comments>
		<pubDate>Sun, 14 Nov 2010 17:33:08 +0000</pubDate>
		<dc:creator>ted</dc:creator>
				<category><![CDATA[teaching]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[ecology]]></category>
		<category><![CDATA[ecophysiology]]></category>
		<category><![CDATA[ecotect]]></category>
		<category><![CDATA[grasshopper]]></category>
		<category><![CDATA[weather data]]></category>

		<guid isPermaLink="false">http://www.tedngai.net/?p=618</guid>
		<description><![CDATA[Here are some of the images from a 5-week design workshop held by and Rensselaer Polytechnic Institute School of Architecture and the Politecnico di Torino Faculty of Architecture II.]]></description>
			<content:encoded><![CDATA[<p>Here are some selected images of a 5-week design workshop held by and Rensselaer Polytechnic Institute School of Architecture and the Politecnico di Torino Faculty of Architecture II.</p>
<p>Design approach is based on the ecophysiology of animals. Students research and analyze an animal&#8217;s mechanism for  thermoregulation, photoperiodism, water economy, and other energetics exchange, and develop an architectural integumentary system that deals with heating, cooling, ventilation, and lighting, which, when combined, accounts for almost 70% of all electricity consumption in the US.</p>
<p>Extensive parametric and analysis tools are used for the design of these projects, all of them can be found on my website here.</p>
<p><strong>Workshop Instructors</strong><br />
Ted Ngai, RPI<br />
Cesare Griffa, PoliTo</p>
<p><strong>Workshop Coordinator</strong><br />
Graziella Roccella, PoliTo</p>
<p><strong>Workshop Description<br />
</strong>The parametric workshop engages the problems raised by our rapid pace of urbanization and the ecological impact of our built environment, using two main drivers: the evolving of digital technologies, and the growing of ecological awareness.</p>
<p>Digital technology plays a critical role in acknowledging change and difference in the way we design, build and live architecture. Ecological awareness, on the other hand, requires one to observe and understand the behavioral tendencies of our natural and built systems. The use of parametric design software in this context will enable designers to use design not only as an organizational device serving semiotic, pragmatic and aesthetic functions, but also as a regulator of the internal and external environments, managing bioclimatic flows to maintain homeostasis through intelligent morphologies.</p>
<p>In this framework, the workshop program will develop a Physiological Skin, a concept that explores the “envelope” as a mean to capture, transform, store and distribute various energetic flows to maintain a stable internal environment appropriate for housing in the city of Torino.</p>
<p>The Physiological Skin will not only take on the bioclimatic exchange as its main design challenge, but will also consider the aesthetic vision as it is situated in the historical Italian neighborhood.  This includes addressing the Renaissance and Baroque, and times of new discoveries and new aesthetics, which will also be main criteria for the successful development of the project.</p>
<p><strong>Projects:</strong></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; text-align: right; font: 10.0px 'Frutiger LT Std'} span.s1 {letter-spacing: 0.2px} --><strong>(RE)TENDER</strong> | John Baker |  Frank Florian | Chris Nobes | Salvo Terranova</p>
<p><img class="alignnone size-full wp-image-619" title="polarbearA01" src="http://www.tedngai.net/wp-content/uploads/2010/11/polarbearA01.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-623" title="polarbearA02" src="http://www.tedngai.net/wp-content/uploads/2010/11/polarbearA02.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-624" title="polarbearA03" src="http://www.tedngai.net/wp-content/uploads/2010/11/polarbearA03.jpg" alt="" width="720" height="400" /></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; text-align: right; font: 10.0px 'Frutiger LT Std'} span.s1 {letter-spacing: 0.2px} --><strong>ADAPTIVE RESPIRATION</strong> | Marco Caprani | Alexandra Dorn | Cesar Madrigal | Andrea Terreno</p>
<p><img class="alignnone size-full wp-image-625" title="Iguana01" src="http://www.tedngai.net/wp-content/uploads/2010/11/Iguana01.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-626" title="Iguana02" src="http://www.tedngai.net/wp-content/uploads/2010/11/Iguana02.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-627" title="Iguana03" src="http://www.tedngai.net/wp-content/uploads/2010/11/Iguana03.jpg" alt="" width="720" height="1083" /></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; text-align: right; font: 10.0px 'Frutiger LT Std'} span.s1 {letter-spacing: 0.2px} --><strong>SUSTAINA(BUBBLE)</strong> | Alyssa Johnson | Christos Constantinou | Giulia Mondino | Marco Palma</p>
<p><img class="alignnone size-full wp-image-629" title="DolphinA01" src="http://www.tedngai.net/wp-content/uploads/2010/11/DolphinA01.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-630" title="DolphinA02" src="http://www.tedngai.net/wp-content/uploads/2010/11/DolphinA02.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-631" title="DolphinA03" src="http://www.tedngai.net/wp-content/uploads/2010/11/DolphinA03.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-632" title="DolphinA04" src="http://www.tedngai.net/wp-content/uploads/2010/11/DolphinA04.jpg" alt="" width="720" height="400" /></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; text-align: right; font: 10.0px 'Frutiger LT Std'} span.s1 {letter-spacing: 0.2px} --><strong>ALGaeRITHM</strong> | Monica Cazzamani Bona | Jillian Crandall | Nathalia da Rosa Pires | Tyler Hopf</p>
<p><img class="alignnone size-full wp-image-633" title="algaeA01" src="http://www.tedngai.net/wp-content/uploads/2010/11/algaeA01.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-634" title="algaeA02" src="http://www.tedngai.net/wp-content/uploads/2010/11/algaeA02.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-635" title="algaeA03" src="http://www.tedngai.net/wp-content/uploads/2010/11/algaeA03.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-636" title="algaeA07" src="http://www.tedngai.net/wp-content/uploads/2010/11/algaeA07.jpg" alt="" width="720" height="400" /></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; text-align: right; font: 10.0px 'Frutiger LT Std'} span.s1 {letter-spacing: 0.2px} --><strong>AQUALIBRIUM</strong> | Angie Ohman | Sarah Murray | Marina Milia | Matteo Miroglio</p>
<p><img class="alignnone size-full wp-image-638" title="dolphinB06" src="http://www.tedngai.net/wp-content/uploads/2010/11/dolphinB06.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-639" title="dolphinB02" src="http://www.tedngai.net/wp-content/uploads/2010/11/dolphinB02.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-640" title="dolphinB03" src="http://www.tedngai.net/wp-content/uploads/2010/11/dolphinB03.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-641" title="dolphinB04" src="http://www.tedngai.net/wp-content/uploads/2010/11/dolphinB04.jpg" alt="" width="720" height="400" /></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; text-align: right; font: 10.0px 'Frutiger LT Std'} span.s1 {letter-spacing: 0.2px} --><strong>PASSIVE FLOWER</strong> | Christine Koch | Alicia Miksic | Matteo Tron</p>
<p><img class="alignnone size-full wp-image-642" title="dolphinC02" src="http://www.tedngai.net/wp-content/uploads/2010/11/dolphinC02.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-644" title="dolphinC04" src="http://www.tedngai.net/wp-content/uploads/2010/11/dolphinC04.jpg" alt="" width="720" height="960" /><img class="alignnone size-full wp-image-645" title="dolphinC06" src="http://www.tedngai.net/wp-content/uploads/2010/11/dolphinC06.jpg" alt="" width="720" height="400" /></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; text-align: right; font: 10.0px 'Frutiger LT Std'} span.s1 {letter-spacing: 0.2px} --><strong>SHARK SKIN SMART SKIN</strong> | Davide Speranza | Evelina Micono | Kate Lisi | Kateri Knapp</p>
<p><img class="alignnone size-full wp-image-665" title="sharkA01" src="http://www.tedngai.net/wp-content/uploads/2010/11/sharkA01.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-647" title="sharkA02" src="http://www.tedngai.net/wp-content/uploads/2010/11/sharkA02.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-648" title="sharkA04" src="http://www.tedngai.net/wp-content/uploads/2010/11/sharkA04.jpg" alt="" width="720" height="400" /><img class="alignnone size-full wp-image-649" title="sharkA05" src="http://www.tedngai.net/wp-content/uploads/2010/11/sharkA05.jpg" alt="" width="720" height="400" /></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; text-align: right; font: 10.0px 'Frutiger LT Std'} span.s1 {letter-spacing: 0.2px} --><strong>BARE NECESSITIES</strong> | Matteo Amela | Gianni Bruera | Morgan Danner</p>
<p><img class="alignnone size-full wp-image-651" title="polarbearB04" src="http://www.tedngai.net/wp-content/uploads/2010/11/polarbearB04.jpg" alt="" width="720" height="1080" /><img class="alignnone size-full wp-image-652" title="polarbearB05" src="http://www.tedngai.net/wp-content/uploads/2010/11/polarbearB05.jpg" alt="" width="720" height="1080" /><img class="alignnone size-full wp-image-653" title="polarbearB06" src="http://www.tedngai.net/wp-content/uploads/2010/11/polarbearB06.jpg" alt="" width="720" height="400" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tedngai.net/teaching/parametric-design-workshop-2010.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>surface &#124; skin &#124; structure</title>
		<link>http://www.tedngai.net/teaching/surface-skin-structure.html</link>
		<comments>http://www.tedngai.net/teaching/surface-skin-structure.html#comments</comments>
		<pubDate>Sat, 30 Dec 2006 01:56:28 +0000</pubDate>
		<dc:creator>ted</dc:creator>
				<category><![CDATA[teaching]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[fabrication]]></category>
		<category><![CDATA[rhinoscript]]></category>

		<guid isPermaLink="false">http://www.tedngai.net/?p=496</guid>
		<description><![CDATA[type : teaching &#124; location : RPI, troy, ny &#124; status : on going]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-498" title="verticalFall06_web01" src="http://www.tedngai.net/wp-content/uploads/2009/12/verticalFall06_web011.jpg" alt="" width="720" height="403" /></p>
<p><img class="alignnone size-full wp-image-499" title="verticalFall06_web02" src="http://www.tedngai.net/wp-content/uploads/2009/12/verticalFall06_web02.jpg" alt="" width="720" height="403" /></p>
<p><img class="alignnone size-full wp-image-500" title="verticalFall06_web03" src="http://www.tedngai.net/wp-content/uploads/2009/12/verticalFall06_web03.jpg" alt="" width="720" height="403" /></p>
<p><img class="alignnone size-full wp-image-501" title="verticalFall06_web04" src="http://www.tedngai.net/wp-content/uploads/2009/12/verticalFall06_web04.jpg" alt="" width="720" height="403" /></p>
<p><img class="alignnone size-full wp-image-502" title="verticalFall06_web05" src="http://www.tedngai.net/wp-content/uploads/2009/12/verticalFall06_web05.jpg" alt="" width="720" height="403" /></p>
<p><img class="alignnone size-full wp-image-503" title="verticalFall06_web06" src="http://www.tedngai.net/wp-content/uploads/2009/12/verticalFall06_web06.jpg" alt="" width="720" height="403" /></p>
<p><img class="alignnone size-full wp-image-504" title="verticalFall06_web07" src="http://www.tedngai.net/wp-content/uploads/2009/12/verticalFall06_web07.jpg" alt="" width="720" height="403" /></p>
<p><img class="alignnone size-full wp-image-505" title="verticalFall06_web08" src="http://www.tedngai.net/wp-content/uploads/2009/12/verticalFall06_web08.jpg" alt="" width="720" height="403" /></p>
<p><img class="alignnone size-full wp-image-506" title="verticalFall06_web09" src="http://www.tedngai.net/wp-content/uploads/2009/12/verticalFall06_web09.jpg" alt="" width="720" height="403" /></p>
<p><img class="alignnone size-full wp-image-507" title="verticalFall06_web10" src="http://www.tedngai.net/wp-content/uploads/2009/12/verticalFall06_web10.jpg" alt="" width="720" height="403" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tedngai.net/teaching/surface-skin-structure.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

