<?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>Fenestration &#38; Debauchery</title>
	<atom:link href="http://www.maxwellrosspierson.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.maxwellrosspierson.com</link>
	<description>F&#38;D: The personal blog of Maxwell Ross Pierson, about lighting design and making things, and the sorrows ensuing.</description>
	<lastBuildDate>Tue, 23 Apr 2013 02:59:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Interfacing the Arduino to the Taos TCS3414 via I2C, continued</title>
		<link>http://www.maxwellrosspierson.com/2012/11/18/interfacing-the-arduino-to-the-taos-tcs3414-via-i2c-continued/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=interfacing-the-arduino-to-the-taos-tcs3414-via-i2c-continued</link>
		<comments>http://www.maxwellrosspierson.com/2012/11/18/interfacing-the-arduino-to-the-taos-tcs3414-via-i2c-continued/#comments</comments>
		<pubDate>Mon, 19 Nov 2012 01:11:55 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[Electronics]]></category>

		<guid isPermaLink="false">http://www.maxwellrosspierson.com/?p=2078</guid>
		<description><![CDATA[November, so soon!  I kind of had to put this one down for awhile and work on things that were not laptop-centric, I just was spending too much time in front of a computer screen.  Luckily, Tiuri De Jong was on the case, and he has developed the proof-of-concept code I posted earlier into a [...]]]></description>
				<content:encoded><![CDATA[<div id="attachment_1959" class="wp-caption aligncenter" style="width: 385px"><a href="http://www.maxwellrosspierson.com/2012/06/07/interfacing-the-arduino-to-the-taos-tcs3414-via-i2c/2010-10-19-19-00-18/" rel="attachment wp-att-1959"><img class="size-large wp-image-1959" title="Taos TCS3414" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/06/2010-10-19-19.00.18-375x500.jpg" alt="" width="375" height="500" /></a><p class="wp-caption-text">Taos TCS3414</p></div>
<p><span class="majuscule">November, so soon!</span>  I kind of had to put this one down for awhile and work on things that were not laptop-centric, I just was spending too much time in front of a computer screen.  Luckily, Tiuri De Jong was on the case, and he has developed the proof-of-concept code <a title="Interfacing the Arduino to the Taos TCS3414 via I2C" href="http://www.maxwellrosspierson.com/2012/06/07/interfacing-the-arduino-to-the-taos-tcs3414-via-i2c/">I posted earlier</a> into a fully-working demonstration.</p>
<p>I uploaded it to my Arduino, and I&#8217;m getting stable results with an apparently linear response, although the specific numerical values themselves aren&#8217;t particularly meaningful.    For example, under my workbench lamp that I metered at about 40fc and has a CCT of 5000K, it measured 290fc at 3500K.  I get that the part would require calibration before it would be useful, but it&#8217;s strange to me that it would be off by 1500K color temperature and a factor of 5 for illuminance, out of the box?  I&#8217;d be interested to know if anyone else has a similar experience.</p>
<p>What I&#8217;m working on now is measuring the values given by the TCS3414 vs. a known accurate illuminance and color temperature meter, to tell if the deviation from true value is a constant, or a linear function, or what.  I&#8217;ve verified that the calculations are done correctly in the code per the datasheet.</p>
<p>But in the meantime, it seems like a shame to deprive everyone else of Tiuri De Jong&#8217;s complete and, might I add, lucidly written code, so it may be downloaded here:</p>
<p><a href="http://www.maxwellrosspierson.com/2012/11/18/interfacing-the-arduino-to-the-taos-tcs3414-via-i2c-continued/2012-11-18-light_meter_rev5/" rel="attachment wp-att-2079">2012-11-18 Light Meter Code Rev5</a></p>
<p>I&#8217;ve also posted the code in full after the jump.</p>
<p><span id="more-2078"></span></p>
<p><span class="majuscule">Some helpful hints on hardware:</span>  It turns out that as long as you have only one 3.3V device on the i2c bus, you don&#8217;t have to have the level shifter circuit I was using, you can connect it directly to the i2c pins (but power it via 3.3V supply, not 5V).  So that&#8217;s simpler.  Also, Taos recommends a .1μF decoupling capacitor between the 3.3V supply and ground, located adjacent to the unit, to reduce fluctuations due to logic level shifting:</p>
<div id="attachment_2080" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/2012/11/18/interfacing-the-arduino-to-the-taos-tcs3414-via-i2c-continued/taos-tcs3414-schematic/" rel="attachment wp-att-2080"><img class="size-large wp-image-2080" title="Taos-TCS3414-schematic" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/11/Taos-TCS3414-schematic-680x396.jpg" alt="" width="680" height="396" /></a><p class="wp-caption-text">From page 32 of the datasheet.</p></div>
<p>The interrupt functionality is not implemented in the current code, so you can leave that pin unconnected, and omit R<sub>PI</sub>.</p>
<p><span class="majuscule">And, the code.</span>  As always, I recommend downloading the zip file rather than copying-and-pasting, sometimes the WordPress monster eats semicolons.</p>
<p>&nbsp;</p>
<p><code><br />
// TCS3414 receiver code rev 5<br />
// Developed by Tiuri de Jong, with contributions by Max Pierson<br />
// This software is released under WTFPL, although credit and share-alike are appreciated.<br />
// 18 November 2012</code></p>
<p>//include the library for i2c<br />
#include</p>
<p>unsigned int TCS3414values[4]; // [Clear,Red,Green,Blue]<br />
float TCS3414medium[4]; // [Clear,Red,Green,Blue]<br />
float TCS3414mediate[4]; // [Clear,Red,Green,Blue]<br />
float ColorTemperature = 0;</p>
<p>// SET the integration time here. Higher times allow for higher values with better precicion.<br />
int integrationtime = 400; //12 == 12ms, 100 = 100ms, 400 = 400ms. Other values are note accepted<br />
int loopdelay = integrationtime; //loop delay depends on the integration time</p>
<p>boolean debug = false; //change to true if you want to see the various debug serial output bits<br />
boolean percentageEnabled = false; //enable/disable the percentage mode<br />
boolean compensateEnabled = false; //enable/disable color compensation of the sensor sensitivity per color</p>
<p>void setup(){<br />
Wire.begin();// join i2c bus (address optional for master)<br />
Serial.begin(9600);//115200<br />
while (!Serial) {<br />
; // wait for serial port to connect. This while loop is needed for the Arduino Leonardo only<br />
}<br />
CMD(0);<br />
TCS3414Start(14,2000);<br />
}</p>
<p>//The main function.. This repeats itself forever!<br />
void loop() {<br />
getSerialCommands(); //to be able to receive commands</p>
<p>//gets the raw values from the sensors and writes it to TCS3414values[]<br />
TSC3414All(TCS3414values);</p>
<p>//compensate based on the filter characteristics of the TCS3414<br />
if(compensateEnabled)<br />
colorCompensator(TCS3414values);</p>
<p>//keeps a running average from the last 4 values per color.<br />
calculateMedium(TCS3414mediate,TCS3414values,4.0);</p>
<p>//calculates the color temperature, using the algorithm in the TCS3414 datasheet<br />
ColorTemperature = CCTCalc(TCS3414values);</p>
<p>//displays percentage values, if enabled.<br />
if(percentageEnabled){<br />
makePercentage(TCS3414values, TCS3414medium);<br />
}</p>
<p>Serial.print(&#8220;Clear: &#8220;);<br />
Serial.print(TCS3414values[0]);<br />
if(percentageEnabled)<br />
Serial.print(&#8220;%&#8221;);<br />
Serial.print(&#8220;\tRed: &#8220;);<br />
Serial.print(TCS3414values[1]);<br />
if(percentageEnabled)<br />
Serial.print(&#8220;%&#8221;);<br />
Serial.print(&#8221; \tGreen: &#8220;);<br />
Serial.print(TCS3414values[2]);<br />
if(percentageEnabled)<br />
Serial.print(&#8220;%&#8221;);<br />
Serial.print(&#8220;\tBlue: &#8220;);<br />
if(percentageEnabled){<br />
Serial.print(TCS3414values[3]);<br />
Serial.println(&#8220;%&#8221;);<br />
}else{<br />
Serial.println(TCS3414values[3]);<br />
}</p>
<p>delay(loopdelay); //delays by the integration time between measurements</p>
<p>}//end loop()</p>
<p>/*<br />
* ======================================================<br />
* Calculation functions<br />
* ======================================================<br />
*/</p>
<p>/*** takes the raw values from the sensors and converts them to<br />
Correlated Color Temperature. Returns a float with CCT ***/<br />
float CCTCalc(unsigned int allcolors[]){<br />
float TCS3414tristimulus[3]; // [tri X, tri Y, tri Z]<br />
float TCS3414chromaticityCoordinates[2]; //chromaticity coordinates // [x, y]</p>
<p>//calculate tristimulus values (chromaticity coordinates)<br />
//The tristimulus Y value represents the illuminance of our source<br />
TCS3414tristimulus[0] = (-0.14282 * allcolors[1]) + (1.54924 * allcolors[2]) + (-0.95641 * allcolors[3]); //X<br />
TCS3414tristimulus[1] = (-0.32466 * allcolors[1]) + (1.57837 * allcolors[2]) + (-0.73191 * allcolors[3]); //Y // = Illuminance<br />
TCS3414tristimulus[2] = (-0.68202 * allcolors[1]) + (0.77073 * allcolors[2]) + (0.56332 * allcolors[3]); //Z</p>
<p>float XYZ = TCS3414tristimulus[0] + TCS3414tristimulus[1] + TCS3414tristimulus[2];</p>
<p>//calculate the chromaticiy coordinates<br />
TCS3414chromaticityCoordinates[0] = TCS3414tristimulus[0] / XYZ; //x<br />
TCS3414chromaticityCoordinates[1] = TCS3414tristimulus[1] / XYZ; //y</p>
<p>float n = (TCS3414chromaticityCoordinates[0] &#8211; 0.3320) / (0.1858 &#8211; TCS3414chromaticityCoordinates[1]);</p>
<p>float CCT = ( (449*pow(n,3)) + (3525*pow(n,2)) + (6823.3 * n) + 5520.33 );</p>
<p>Serial.print(&#8220;Illuminance: &#8220;);<br />
Serial.print(TCS3414tristimulus[1]);<br />
Serial.print(&#8220;\tx: &#8220;);<br />
Serial.print(TCS3414chromaticityCoordinates[0]);<br />
Serial.print(&#8221; \ty: &#8220;);<br />
Serial.print(TCS3414chromaticityCoordinates[1]);<br />
Serial.print(&#8221; \tCCT: &#8220;);<br />
Serial.print(CCT);<br />
Serial.print(&#8220;K\t &#8212; \t&#8221;);</p>
<p>return CCT;<br />
}</p>
<p>/*** Keeps a running average of 4 values per color. ***/<br />
void calculateMedium(float med[], unsigned int value[], float divider){<br />
for(int i = 0; i &lt; 4; i++){<br />
med[i] = ( (med[i]*(divider-1.0)) + value[i] ) / divider;<br />
}<br />
}</p>
<p>/*** calculates percentages for R,G,B channels, if enabled. ***/<br />
void makePercentage(unsigned int allcolors[], float allmedium[]){ //makes every color a percentage, 100% is the average of the previous 4 values before this is entered.<br />
for(int i=0; i 0){<br />
int receive_command = Serial.read();<br />
if(receive_command == 49){//49 == 1<br />
Serial.println(&#8220;Percentage enabled, max value (100%) set to current medium&#8221;);<br />
percentageEnabled = true;//enables/disables percentage mode.<br />
for(int o = 0; o &lt; 4; o++){<br />
TCS3414medium[o] = TCS3414mediate[o];<br />
}<br />
}else if(receive_command == 48){//48 == 0<br />
Serial.println(&#8220;Percentage disabled&#8221;);<br />
percentageEnabled = false;//enables/disables percentage mode.<br />
}else if(receive_command == 63){//63 == ?<br />
CMD(2000);<br />
}else if(receive_command == 112){//112 == p<br />
Serial.println(&#8220;pausing for 5 seconds (stackable)&#8230;&#8221;);<br />
delay(5000);<br />
getSerialCommands();<br />
}else if(receive_command == 99){//99 == c<br />
Serial.println(&#8220;Color compensation enabled&#8221;);<br />
compensateEnabled = true;<br />
}else if(receive_command == 110){//110 == n<br />
Serial.println(&#8220;Color compensation disabled&#8221;);<br />
compensateEnabled = false;<br />
}else{<br />
Serial.print(&#8220;The command entered ( &#8220;);<br />
Serial.print(receive_command);<br />
Serial.println(&#8221; ) was NOT found in the command list&#8221;);<br />
}<br />
}<br />
}</p>
<p>void CMD(int delayTime){<br />
Serial.println(&#8220;=========== Command list ===========&#8221;);<br />
Serial.println(&#8220;\&#8217; \&#8217;&#8221;);<br />
Serial.println(&#8221; ? == Show this command list&#8221;);<br />
Serial.println(&#8220;&#8221;);<br />
Serial.println(&#8221; p == pause for 5 seconds (stackable)&#8221;);<br />
Serial.println(&#8220;&#8221;);<br />
Serial.println(&#8221; 1 == Enable Percentage mode&#8221;);<br />
Serial.println(&#8221; 0 == Disable Percentage mode&#8221;);<br />
Serial.print(&#8221; Percentage mode is currently: &#8220;);<br />
if(percentageEnabled){<br />
Serial.println(&#8220;ON&#8221;);<br />
}else{<br />
Serial.println(&#8220;OFF&#8221;);<br />
}<br />
Serial.println(&#8220;&#8221;);<br />
Serial.println(&#8221; c == Enable Color compensation mode&#8221;);<br />
Serial.println(&#8221; n == Disable Color compensation mode&#8221;);<br />
Serial.print(&#8221; Color compensation mode is currently: &#8220;);<br />
if(compensateEnabled){<br />
Serial.println(&#8220;ON&#8221;);<br />
}else{<br />
Serial.println(&#8220;OFF&#8221;);<br />
}<br />
Serial.println(&#8220;\&#8217; \&#8217;&#8221;);<br />
Serial.println(&#8220;====================================&#8221;);<br />
delay(delayTime);<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxwellrosspierson.com/2012/11/18/interfacing-the-arduino-to-the-taos-tcs3414-via-i2c-continued/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Pinhole Camera &#8211; Indiana Sand Dunes</title>
		<link>http://www.maxwellrosspierson.com/2012/10/26/pinhole-camera-indiana-sand-dunes/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=pinhole-camera-indiana-sand-dunes</link>
		<comments>http://www.maxwellrosspierson.com/2012/10/26/pinhole-camera-indiana-sand-dunes/#comments</comments>
		<pubDate>Sat, 27 Oct 2012 03:50:52 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[Etc.]]></category>

		<guid isPermaLink="false">http://www.maxwellrosspierson.com/?p=2049</guid>
		<description><![CDATA[So, my inimiatable Aunt Carol rented a house on the Indiana Dunes National Lakeshore.  That&#8217;s her above, in red.  I took the pinhole camera I posted about earlier along for the week.  It was the last week of summer, and the days were still just warm enough to swim. We wandered on the lakeshore, And visited [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.maxwellrosspierson.com/2012/10/26/pinhole-camera-indiana-sand-dunes/frame-12-aunt-carol-2/" rel="attachment wp-att-2073"><img class="aligncenter size-large wp-image-2073" title="Frame-12-Aunt-Carol" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/10/Frame-12-Aunt-Carol1-680x290.jpg" alt="" width="680" height="290" /></a></p>
<p><span class="majuscule">So, my inimiatable Aunt Carol</span> rented a house on the Indiana Dunes National Lakeshore.  That&#8217;s her above, in red.  I took the pinhole camera I posted about <a title="Pinhole Camera – Yosemite" href="http://www.maxwellrosspierson.com/2012/09/29/pinhole-camera-yosemite/">earlier</a> along for the week.  It was the last week of summer, and the days were still just warm enough to swim.</p>
<p><a href="http://www.maxwellrosspierson.com/2012/10/26/pinhole-camera-indiana-sand-dunes/roll-5-frame-7-8/" rel="attachment wp-att-2057"><img class="aligncenter size-large wp-image-2057" title="Roll-5-Frame-7-8" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/10/Roll-5-Frame-7-8-680x161.jpg" alt="" width="680" height="161" /></a></p>
<p>We wandered on the lakeshore,</p>
<div id="attachment_2056" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/2012/10/26/pinhole-camera-indiana-sand-dunes/roll-5-frame-3/" rel="attachment wp-att-2056"><img class="size-large wp-image-2056" title="Roll-5-Frame-3" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/10/Roll-5-Frame-3-680x303.jpg" alt="" width="680" height="303" /></a><p class="wp-caption-text">Decomposing fish.</p></div>
<p>And visited friends:</p>
<div id="attachment_2061" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/2012/10/26/pinhole-camera-indiana-sand-dunes/roll-5-frame-1/" rel="attachment wp-att-2061"><img class="size-large wp-image-2061 " title="Roll-5-Frame-1" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/10/Roll-5-Frame-1-680x323.jpg" alt="" width="680" height="323" /></a><p class="wp-caption-text">Tom, McKalen (sp?), my Mom</p></div>
<p>We also drove around Gary, IN:</p>
<div id="attachment_2050" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/2012/10/26/pinhole-camera-indiana-sand-dunes/frame-9-library/" rel="attachment wp-att-2050"><img class="size-large wp-image-2050" title="Frame-9-Library" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/10/Frame-9-Library-680x281.jpg" alt="" width="680" height="281" /></a><p class="wp-caption-text">Burned out library, Gary, IN</p></div>
<div id="attachment_2051" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/2012/10/26/pinhole-camera-indiana-sand-dunes/frame-10-libary-interior/" rel="attachment wp-att-2051"><img class="size-large wp-image-2051" title="Frame-10-Libary-interior" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/10/Frame-10-Libary-interior-680x286.jpg" alt="" width="680" height="286" /></a><p class="wp-caption-text">Double exposure, library interior with U.S. Steel plant.</p></div>
<p>Not to represent the place as a wasteland or something, the library just had too many great angles not to photograph.  As it happens there is a larger, modern library nearby.</p>
<p>We also went into Chicago for a day.</p>
<div>
<dl id="">
<dt><a href="http://www.maxwellrosspierson.com/2012/10/26/pinhole-camera-indiana-sand-dunes/frame-14-chicago-collage/" rel="attachment wp-att-2053"><img class="aligncenter size-large wp-image-2053" title="Frame-14-Chicago-collage" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/10/Frame-14-Chicago-collage-680x125.jpg" alt="" width="680" height="125" /></a></dt>
</dl>
</div>
<p>We also ate lots of things:</p>
<p><a href="http://www.maxwellrosspierson.com/2012/10/26/pinhole-camera-indiana-sand-dunes/roll-5-scan-2/" rel="attachment wp-att-2059"><img class="aligncenter size-large wp-image-2059" title="Roll-5-Scan-2" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/10/Roll-5-Scan-2-680x301.jpg" alt="" width="680" height="301" /></a></p>
<p>The Indiana/Michigan sky was nonstop amazing.</p>
<div id="attachment_2058" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/2012/10/26/pinhole-camera-indiana-sand-dunes/roll-5-frame-12a-scan0006/" rel="attachment wp-att-2058"><img class="size-large wp-image-2058" title="Roll-5-Frame-12a-scan0006" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/10/Roll-5-Frame-12a-scan0006-680x145.jpg" alt="" width="680" height="145" /></a><p class="wp-caption-text">Sunset, false color provided by my scanner firmware freaking out.</p></div>
<div id="attachment_2063" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/2012/10/26/pinhole-camera-indiana-sand-dunes/frame-17a-dusk/" rel="attachment wp-att-2063"><img class="size-large wp-image-2063" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/10/Frame-17a-Dusk-680x198.jpg" alt="" width="680" height="198" /></a><p class="wp-caption-text">Sunset, last day of the trip.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.maxwellrosspierson.com/2012/10/26/pinhole-camera-indiana-sand-dunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinhole Camera &#8211; Yosemite</title>
		<link>http://www.maxwellrosspierson.com/2012/09/29/pinhole-camera-yosemite/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=pinhole-camera-yosemite</link>
		<comments>http://www.maxwellrosspierson.com/2012/09/29/pinhole-camera-yosemite/#comments</comments>
		<pubDate>Sun, 30 Sep 2012 04:16:54 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[Etc.]]></category>

		<guid isPermaLink="false">http://www.maxwellrosspierson.com/?p=2022</guid>
		<description><![CDATA[Travel+Photography: I took the pinhole camera I made backpacking in Yosemite National Park. And some back in San Francisco: Coming whenever I get around to scanning them:  Chicago!]]></description>
				<content:encoded><![CDATA[<div id="attachment_2025" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/09/Roll-4-scan0012.jpg"><img class="size-large wp-image-2025 " title="Roll-4-scan0012" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/09/Roll-4-scan0012-680x164.jpg" alt="" width="680" height="164" /></a><p class="wp-caption-text">Left: Sequoias. Right: My apartment</p></div>
<p><span class="majuscule">Travel+Photography:</span> I took<a title="Pinhole Camera" href="http://www.maxwellrosspierson.com/2012/08/26/pinhole-camera-first-shots/" target="_blank"> the pinhole camera I made</a> backpacking in Yosemite National Park.</p>
<div id="attachment_2024" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/09/Roll-4-scan0011.jpg"><img class="size-large wp-image-2024 " title="Roll-4-scan0011" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/09/Roll-4-scan0011-680x321.jpg" alt="" width="680" height="321" /></a><p class="wp-caption-text">Ostrander Lake, headwaters of Bridalveil Creek.</p></div>
<div id="attachment_2026" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/2012/09/29/pinhole-camera-yosemite/scan0001/" rel="attachment wp-att-2026"><img class="size-large wp-image-2026" title="scan0001" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/09/scan0001-680x350.jpg" alt="" width="680" height="350" /></a><p class="wp-caption-text">Pine cones on the forest floor.</p></div>
<div id="attachment_2028" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/09/scan0008.jpg"><img class="size-large wp-image-2028  " title="scan0008" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/09/scan0008-680x352.jpg" alt="" width="680" height="352" /></a><p class="wp-caption-text">Ghost town near the park entrance.</p></div>
<div id="attachment_2032" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/09/Roll-4-scan00081.jpg"><img class="size-large wp-image-2032 " title="Roll-4-scan0008" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/09/Roll-4-scan00081-680x429.jpg" alt="" width="680" height="429" /></a><p class="wp-caption-text">Sunset reflecting in the lake.</p></div>
<p>And some back in San Francisco:</p>
<div id="attachment_2027" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/09/scan0002.jpg"><img class="size-large wp-image-2027 " title="scan0002" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/09/scan0002-680x158.jpg" alt="" width="680" height="158" /></a><p class="wp-caption-text">Double exposure with rainbow and night scenes.</p></div>
<div id="attachment_2029" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/09/scan0010.jpg"><img class="size-large wp-image-2029 " title="scan0010" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/09/scan0010-680x489.jpg" alt="" width="680" height="489" /></a><p class="wp-caption-text">Open shutter, 10 minute exposure while walking.</p></div>
<p>Coming whenever I get around to scanning them:  Chicago!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxwellrosspierson.com/2012/09/29/pinhole-camera-yosemite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinhole camera &#8212; First shots</title>
		<link>http://www.maxwellrosspierson.com/2012/08/26/pinhole-camera-first-shots/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=pinhole-camera-first-shots</link>
		<comments>http://www.maxwellrosspierson.com/2012/08/26/pinhole-camera-first-shots/#comments</comments>
		<pubDate>Sun, 26 Aug 2012 07:48:10 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[Etc.]]></category>

		<guid isPermaLink="false">http://www.maxwellrosspierson.com/?p=2006</guid>
		<description><![CDATA[haha, oh god.  So I just started a new job, and I&#8217;m the incoming treasurer for the IES SF section, and I&#8217;m in submittals on the library project, and I&#8217;m taking my LC exam this fall, and I&#8217;ve been dating some, and my D&#38;D campaign has started up again so I&#8217;ve got that prep time [...]]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/08/12-Scan-120825-0001-web.jpg"><img class="aligncenter size-large wp-image-2008" title="12.  Bay Bridge" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/08/12-Scan-120825-0001-web-680x306.jpg" alt="" width="680" height="306" /></a></p>
<p><span class="majuscule">haha, oh god.</span>  So I just started a new job, and I&#8217;m the incoming treasurer for the IES SF section, and I&#8217;m in submittals on the library project, and I&#8217;m taking my LC exam this fall, and I&#8217;ve been dating some, and my D&amp;D campaign has started up again so I&#8217;ve got that prep time every week in addition to game night&#8230;  things are going really, really well for me right now but I don&#8217;t have a lot of time for personal artistic pursuits, and also everything I&#8217;ve been working on has been pretty laptopy lately.  So I decided what I really needed was some immediate gratification, in a project I could finish in a weekend with a minimum of planning.</p>
<div id="attachment_2007" class="wp-caption aligncenter" style="width: 676px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/08/616255_518944084798359_280882841_o.jpg"><img class="size-large wp-image-2007 " title="Pinhole Camera" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/08/616255_518944084798359_280882841_o-666x500.jpg" alt="" width="666" height="500" /></a><p class="wp-caption-text">Test-fitting the film, before the film advance mechanism was finished, and the whole thing was painted flat black inside.</p></div>
<p>I went shopping for the cookie tin that became the camera body Saturday morning, and was scrambled to finish it up before I ran out of light on Sunday.  I finished about 45 minutes before dusk, loaded up a roll of film, and started walking East, through Union Square and down to the Embarcadero.  The shot at the top of the post is the last one on the roll, the Bay Bridge and Treasure Island, with the fogline rolling into the East Bay.</p>
<p style="text-align: center;"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/08/1-Scan-120824-0004-Copy-Web.jpg"><img class="aligncenter size-large wp-image-2009" title="1. Self Portrait" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/08/1-Scan-120824-0004-Copy-Web-680x303.jpg" alt="" width="680" height="303" /></a></p>
<p>And above is the first picture I took.  A selfie!  I spent some time today building a smaller aperture, which should fix the blurry problem.  I also need a better attachment to the tripod, the one I tried first is pretty wobbly.   I&#8217;d kind of stopped taking pictures of things because I&#8217;m just kind of burned out on digital photography right now, but this has been really fun and creative.</p>
<p style="text-align: center;"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/08/R2F2-Page-Hotel-web.jpg"><img class="aligncenter size-large wp-image-2018" title="R2F2-Page-Hotel-web" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/08/R2F2-Page-Hotel-web-680x304.jpg" alt="" width="680" height="304" /></a></p>
<p>Oh, hey, if you have any tips about how to get a nice round hole .29 mm in diameter, leave me a comment!</p>
<div id="attachment_2019" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/08/R02F01-Sunday-at-the-cafe-web.jpg"><img class="size-large wp-image-2019 " title="R02F01-Sunday-at-the-cafe-web" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/08/R02F01-Sunday-at-the-cafe-web-680x302.jpg" alt="" width="680" height="302" /></a><p class="wp-caption-text">Sunday at Cup a&#8217; Joes, one of the enduring loves in my life.</p></div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxwellrosspierson.com/2012/08/26/pinhole-camera-first-shots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Friday Night Music</title>
		<link>http://www.maxwellrosspierson.com/2012/06/15/friday-night-music/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=friday-night-music</link>
		<comments>http://www.maxwellrosspierson.com/2012/06/15/friday-night-music/#comments</comments>
		<pubDate>Sat, 16 Jun 2012 05:47:41 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[Etc.]]></category>

		<guid isPermaLink="false">http://www.maxwellrosspierson.com/?p=1990</guid>
		<description><![CDATA[So? Paul Krugman does it. &#160; &#8216;]]></description>
				<content:encoded><![CDATA[<p>So? Paul Krugman does it.</p>
<p><iframe width="500" height="375" src="http://www.youtube.com/embed/5tTwYbLkcgQ?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>&nbsp;</p>
<p>&#8216;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxwellrosspierson.com/2012/06/15/friday-night-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interfacing the Arduino to the Taos TCS3414 via I2C</title>
		<link>http://www.maxwellrosspierson.com/2012/06/07/interfacing-the-arduino-to-the-taos-tcs3414-via-i2c/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=interfacing-the-arduino-to-the-taos-tcs3414-via-i2c</link>
		<comments>http://www.maxwellrosspierson.com/2012/06/07/interfacing-the-arduino-to-the-taos-tcs3414-via-i2c/#comments</comments>
		<pubDate>Fri, 08 Jun 2012 05:17:26 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[Electronics]]></category>

		<guid isPermaLink="false">http://www.maxwellrosspierson.com/?p=1957</guid>
		<description><![CDATA[Well, this was a productive night:  I&#8217;ve been working with the Taos TCS3414, which is a light and RGB color sensor.  It&#8217;s a tiny little guy, about 2.5 x 3.5 mm I would guess, and shown above is mounted on breakout boards.  I just had a breakthrough night with it, getting it to correctly return [...]]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-large wp-image-1959" title="Taos TCS3414 sensor on a breakout board" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/06/2010-10-19-19.00.18-375x500.jpg" alt="" width="375" height="500" /></p>
<p><span class="majuscule">Well, this was a productive night:</span>  I&#8217;ve been working with the Taos TCS3414, which is a light and RGB color sensor.  It&#8217;s a tiny little guy, about 2.5 x 3.5 mm I would guess, and shown above is mounted on breakout boards.  I just had a breakthrough night with it, getting it to correctly return values from the sensors, so I thought I&#8217;d share my preliminary code for the benefit of all.</p>
<p class="caption" style="text-align: left;">Update: better code <a title="Interfacing the Arduino to the Taos TCS3414 via I2C, continued" href="http://www.maxwellrosspierson.com/2012/11/18/interfacing-the-arduino-to-the-taos-tcs3414-via-i2c-continued/">here!</a></p>
<p>Helpful tips:</p>
<ul>
<li>The TCS3414 is I<sup>2</sup>C, whereas the TCS3404 uses the similar SMBus.  The Atmega 328 can do both, but I<sup>2</sup>C is easier for reasons of both hardware and libraries, so get the TCS3414.</li>
<li>I<sup>2</sup>C is on <em>analog</em> pins 4 and 5, not <em>digital</em> pins 4 and 5.</li>
<li>It&#8217;s a 3.3V device, so make sure you power it via the 3V output on the Arduino, not the 5V output.  It draws 9ma max, so the 50ma capacity via Arduino is plenty.</li>
<li>Similarly, you&#8217;ll need to level shift 5V bidirectionally to 3V from the Arduino to the sensor, so google logic level converters.  I used a pair of NTE491 MOSFETs.</li>
</ul>
<p>Here&#8217;s what my hardware looks like (note, my breakout board pins aren&#8217;t the same layout as the sensor):</p>
<p style="text-align: center;"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/06/IMG_20120607_221118.jpg"><img class="aligncenter size-large wp-image-1960" title="Example Circuit" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/06/IMG_20120607_221118-666x500.jpg" alt="" width="666" height="500" /></a></p>
<p>That all being said, here&#8217;s my (working concept only) code!:<br />
<code></p>
<p>// 6 June 2012</p>
<p>#include</p>
<p>int ledPin = 13; // LED connected to digital pin 13</p>
<p>byte receivedVal = 0x00;</p>
<p>unsigned int clearLow = 0;<br />
unsigned int clearHigh = 0;</p>
<p>void setup()<br />
{<br />
// initialize the digital pin as an output:<br />
pinMode(ledPin, OUTPUT);</p>
<p>// join i2c bus (address optional for master)<br />
Wire.begin();</p>
<p>Serial.begin(9600);<br />
Serial.write("Serial started" "\n");</p>
<p>digitalWrite(ledPin, HIGH); // set the LED on</p>
<p>Wire.beginTransmission(0x39);<br />
Wire.write(0x80);<br />
Wire.write(0x03); // Turn the device on and enable ADC<br />
Wire.endTransmission();</p>
<p>Wire.beginTransmission(0x39); // Request confirmation<br />
Wire.requestFrom(0x39,1);<br />
receivedVal = Wire.read();<br />
Wire.endTransmission();</p>
<p>if (receivedVal == 0x03) {<br />
Serial.write("ADC Started" "\n");<br />
}<br />
else {<br />
Serial.write("Connect to sensor failed with code: ");<br />
Serial.println(receivedVal, DEC);<br />
}</p>
<p>delay(50); // wait for a moment to allow ADC to initialize<br />
digitalWrite(ledPin, LOW); // set the LED off<br />
}</p>
<p>void loop() {<br />
Wire.beginTransmission(0x39);<br />
Wire.write(0xB8);<br />
Wire.endTransmission();</p>
<p>Wire.beginTransmission(0x39); // Request confirmation<br />
Wire.requestFrom(0x39,2);<br />
clearLow = Wire.read();<br />
clearHigh = Wire.read();<br />
Wire.endTransmission();</p>
<p>clearHigh = (clearHigh * 256) + clearLow;</p>
<p>Serial.println(clearHigh, DEC);</p>
<p>delay(500);<br />
}<br />
</code></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1958" title="2010-10-19 18.59.58 (1)" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/06/2010-10-19-18.59.58-1.jpg" alt="" width="640" height="480" /></p>
<p>If you&#8217;ve done it right, it should start spitting out meaningless numbers, that decrease when you hold your hand over the sensor!  More to come on this topic soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxwellrosspierson.com/2012/06/07/interfacing-the-arduino-to-the-taos-tcs3414-via-i2c/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>An Overview of Daylighting Metrics, with Examples</title>
		<link>http://www.maxwellrosspierson.com/2012/05/19/an-overview-of-daylighting-metrics-with-examples/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=an-overview-of-daylighting-metrics-with-examples</link>
		<comments>http://www.maxwellrosspierson.com/2012/05/19/an-overview-of-daylighting-metrics-with-examples/#comments</comments>
		<pubDate>Sat, 19 May 2012 18:58:25 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[Lighting Design]]></category>

		<guid isPermaLink="false">http://www.maxwellrosspierson.com/?p=1861</guid>
		<description><![CDATA[Why Daylighting: As an (electrical) lighting designer, daylighting is exciting to me for a lot of reasons.  There are energy conservation reasons, of course&#8211;40% of the electricity consumption in commercial spaces is lighting, and daylight harvesting is a mostly untapped method of reducing that sum.  There is evidence that a connection to the outside world [...]]]></description>
				<content:encoded><![CDATA[<div id="attachment_1879" class="wp-caption aligncenter" style="width: 451px"><a href="http://www.maxwellrosspierson.com/2012/05/19/an-overview-of-daylighting-metrics-with-examples/continuous-daylight-autonomy/" rel="attachment wp-att-1879"><img class="size-large wp-image-1879" title="Continuous-Daylight-Autonomy" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Continuous-Daylight-Autonomy-441x500.jpg" alt="" width="441" height="500" /></a><p class="wp-caption-text">A visualization of Continuous Daylight Autonomy (cDA)</p></div>
<p><span class="majuscule">Why Daylighting:</span> As an (electrical) lighting designer, daylighting is exciting to me for a lot of reasons.  There are energy conservation reasons, of course&#8211;40% of the electricity consumption in commercial spaces is lighting, and daylight harvesting is a mostly untapped method of reducing that sum.  There is evidence that a connection to the outside world is beneficial to the happiness and productivity of the occupants, such as the research conducted by the Heschong Mahone Group on <a title="Herschong Mahone Group studies" href="http://www.h-m-g.com/projects/daylighting/projects-pier.htm" target="_blank">classrooms and commercial office spaces.</a>  And, artistically, there&#8217;s a tremendous potential to create dynamic sculptures using the sun and building form, and to contribute to the narrative of the architecture.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1929" title="LFI-2012" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/LFI-2012.jpg" alt="" width="200" height="500" /></p>
<p><span class="majuscule">Know your sDA from your aSE:</span> I just got back from attending the Daylighting Institute at the 2012 Lightfair, which if you have a chance to go is really worth your time.  As the LEED sustainable building program becomes the default for high-profile projects, it is pushing daylighting design from the provenance of academic research and a few specialty firms out into the mainstream of standard architectural practice.</p>
<p>Many of the seminars this year revolved around the various daylighting metrics available, whether moment-in-time based metrics such as that found in LEED 2.2, to dynamic metrics such as daylight autonomy (DA), useful daylight illuminace (UDI), and spatial daylight autonomy (sDA).  I thought a quick reference guide to the various ways of measuring daylight within the space, with examples, might come in handy for people like myself that are trying to get a handle on all this.  The metrics are in approximate order of how established they are within the design community, with metrics that are still under active development like Spatial Daylight Autonomy towards the end.  I&#8217;ve also created a generic example space to help explain the concepts.</p>
<div id="attachment_1864" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Classroom.jpg"><img class="size-large wp-image-1864 " title="Classroom Rendering" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Classroom-680x341.jpg" alt="" width="680" height="341" /></a><p class="wp-caption-text">The example space, rendered in AGI</p></div>
<p><span id="more-1861"></span></p>
<p>For purposes of visualization, the above space a 32&#8242;x32&#8242; classroom, with a large window along one wall.  While I&#8217;ll be referring to this as a classroom, I wanted results that are generally applicable as a basis of comparison, so I have excluded federal holidays from the occupancy profile, but not the summer and winter holidays and the like.  Maybe a lot of kids get detention in this particular class :)</p>
<div id="attachment_1865" class="wp-caption aligncenter" style="width: 690px"><img class="size-large wp-image-1865 " title="The Focal Point Verve IV, used for the electric lighting" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Verve-IV-680x423.jpg" alt="" width="680" height="423" /><p class="wp-caption-text">The Focal Point Verve IV, used for the electric lighting</p></div>
<p>The reflectances are the typical 80% ceiling, 50% walls, and 20% floors.  I am using the Focal Point Verve IV with two outboard up/down lamps and a center downlight lamp for multimedia presentations, along the line of what the Collaborative for High Performing Schools (CHPS) recommends (only the outboard lamps are on for purposes of calculations).  In other words, it&#8217;s a typical classroom lighting setup.</p>
<div id="attachment_1866" class="wp-caption aligncenter" style="width: 451px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Daylight-Factor.jpg"><img class="size-large wp-image-1866 " title="Daylight Factor" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Daylight-Factor-441x500.jpg" alt="" width="441" height="500" /></a><p class="wp-caption-text">Graphic of Daylight Factor, calculated in Daysim</p></div>
<p><span class="majuscule">Daylight Factor (DF):</span> The ratio of internal illuminances to exterior illuminances, under a CIE overcast sky.  For example, if you have 2,000 fc exterior, and 20fc average interior, that&#8217;s a 2% DF.  This is the earliest standard of daylighting, developed as a legal basis in 19th century Britain for determining when a new structure would intrude on the daylighting of another.  A DF greater than 2% is considered adequate, 2-5% is considered well daylit.</p>
<p>Pros:</p>
<ul>
<li>It actually works pretty well if you are somewhere with prevailing foggy or cloudy conditions, such as, well, London for example.</li>
<li>Simple to calculate and can be generated without any additional effort in AGI32.</li>
</ul>
<p>Cons:</p>
<ul>
<li>DF gives the same results independent of orientation, time of day, and climate.  So for a north-facing window in a foggy climate, it would be of some use, whereas for a western exposure in Phoenix, it would give *very* inaccurate results.</li>
</ul>
<p>Our example:  Daysim unfortunately doesn&#8217;t give calculation summaries, but AGI gives us 2% total for the space.  You can see the distribution above.  So that would be considered acceptably daylit.  However, looking at the distribution of daylight factor percentage from Daysim above, supplementary electric lighting would be needed for the row of fixtures furthest from the window on almost every day.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1873" title="leed_02" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/leed_02.jpg" alt="" width="345" height="332" /></p>
<p><span class="majuscule">LEED 2009, Prescriptive Method:</span> Calculate the ratio of window area (above 30&#8243;) to floor area and multiply by the visible light transmittance (VLT).  Achieve a value between .150 and .180.</p>
<p style="text-align: center;">.150 &lt; VLT * WFR &lt; .180</p>
<p>I mention this only in passing because it&#8217;s not really a design tool so much as a LEED compliance metric, but our floor area is 32&#215;32 = 1120 sq. ft., the window surface area is 96 sq. ft., giving a Window to Floor ratio (WFR) of .087.  So unless there is a glass type that will transmit more light that it receives, this space would not qualify for LEED credits via the prescriptive method.</p>
<p>&nbsp;</p>
<div id="attachment_1896" class="wp-caption aligncenter" style="width: 481px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/AGI-illuminance.jpg"><img class="size-large wp-image-1896 " title="AGI-illuminance" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/AGI-illuminance-471x500.jpg" alt="" width="471" height="500" /></a><p class="wp-caption-text">The classroom at 9am on the equinox. Values below 25fc are highlighted in blue.</p></div>
<p><span class="majuscule">LEED 2009, Simulation Method:</span>  &#8221;Demonstrate through computer simulations that 75% or more of all regularly occupied spaces areas achieve daylight illuminance levels of a minimum of 25 footcandles (fc) and a maximum of 500 fc in a clear sky condition on September 21 at 9 a.m. and 3 p.m. Areas with illuminance levels below or above the range do not comply. However, designs that incorporate view-preserving automated shades for glare control may demonstrate compliance for only the minimum 25 fc illuminance level.&#8221;</p>
<p>Pros:</p>
<ul>
<li>I think if you want a pass-fail metric, this gives a lot of value relative to its fairly simple nature. There are a lot of high-performing daylit spaces that would not meet this metric, but you are probably doing more right than wrong if you do.</li>
</ul>
<p>Cons:</p>
<ul>
<li>For most spaces, it&#8217;s very unlikely that you can get this LEED point without skylights.</li>
<li>Automated shades, which would be necessary for most buildings with windows, are expensive and fussy to get working correctly.</li>
<li>Since this is run under clear sky conditions, it&#8217;s more of a worst case scenario than typical of conditions at a given project site.</li>
</ul>
<p>Our example:  Calculated values for the different orientations (in AGI32) are as follows:</p>

<table id="wp-table-reloaded-id-21-no-1" class="wp-table-reloaded wp-table-reloaded-id-21">
<thead>
	<tr class="row-1 odd">
		<th class="column-1"></th><th class="column-2">North</th><th class="column-3">South</th><th class="column-4">East/West</th>
	</tr>
</thead>
<tbody>
	<tr class="row-2 even">
		<td class="column-1">9 a.m., minimum (fc)</td><td class="column-2">10</td><td class="column-3">13</td><td class="column-4">7</td>
	</tr>
	<tr class="row-3 odd">
		<td class="column-1">9 a.m., maximum (fc)</td><td class="column-2">52</td><td class="column-3">121</td><td class="column-4">60</td>
	</tr>
	<tr class="row-4 even">
		<td class="column-1">3 p.m., minimum (fc)</td><td class="column-2">10</td><td class="column-3">13</td><td class="column-4">14</td>
	</tr>
	<tr class="row-5 odd">
		<td class="column-1">3 p.m., maximum (fc)</td><td class="column-2">52</td><td class="column-3">121</td><td class="column-4">202</td>
	</tr>
</tbody>
</table>

<p>So this space would not qualify for LEED points using either method.</p>
<p><span class="majuscule">Dynamic Metrics:</span> the metrics after this point are dynamic, i.e. rather than simulating a few scenarios as typical, they take a weather file with hourly measurements of solar irradiances, and attempt to return a comprehensive result for the performance of the building over the course of a typical year.</p>
<p>For more on this subject, I highly recommend &#8220;Dynamic daylight performance metrics for sustainable building design&#8221; by Reinhart, Mardaljevic, and Rogers.  This is probably a good time to say that this article does not represent original research on my part, I&#8217;m just summarizing notes from lectures I&#8217;ve attended on the subject along with other reading I&#8217;ve done.</p>
<p style="text-align: center;"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Daylight-Autonomy-1.jpg"><img class="size-large wp-image-1884 aligncenter" title="Daylight-Autonomy-1" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Daylight-Autonomy-1-441x500.jpg" alt="Daylight Autonomy for 30fc via Daysim" width="441" height="500" /></a></p>
<p><span class="majuscule">Daylight Autonomy (DA):</span> an annual analysis of the fraction of occupied time that the daylight levels exceed a specified target illuminance.   So for every point in the space, what fraction of the time could an occupant work without supplemental electric lighting?  Put another way, DA as a metric has three inputs: climate-based daylighting levels over an entire year, the actual hours of operation of the facility, and the specific desired lighting level.</p>
<p>Pros:</p>
<ul>
<li>DA gives an intuitive look at how well daylight will penetrate into the space.</li>
<li>Good for determining which fixtures would benefit from automatic daylight harvesting.</li>
<li>Takes into account the hours of actual operation and real weather conditions at the site.</li>
</ul>
<p>Cons:</p>
<ul>
<li>Since there&#8217;s no upper limit on the allowed illuminance levels, poorly performing spaces with direct sunlight could do quite well on this metric.  To put it another way, a glass box would have a DA of 1.0, but that wouldn&#8217;t be a very comfortable space to be in, as it would essentially be a greenhouse.</li>
</ul>
<p>Our example:  Daylighting is present under the first row of fixtures often enough that it might make sense to put them on a switching control as they&#8217;ll likely be off during all daylight hours and on during all occupied night hours.  For the second row, it would appear that supplemental electric lighting would be needed during most of the day.</p>
<p style="text-align: center;"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Continuous-Daylight-Autonomy.jpg"><img class="size-large wp-image-1879 aligncenter" title="Continuous-Daylight-Autonomy" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Continuous-Daylight-Autonomy-441x500.jpg" alt="" width="441" height="500" /></a></p>
<p><span class="majuscule">Continuous Daylight Autonomy (cDA):</span> As per above, but partial credit is given for daylighting that is less than the target illuminance.  For example, if your threshold value is 30fc, and you (somehow) have 15fc at a specific point 100% of operating hours, your cDA for that point would be .500</p>
<p>Pros:</p>
<ul>
<li>I think cDA is intended for use as a compliance metric more than a design tool.  While a space that has enough daylight to reduce electric lighting loads would do pretty well on cDA, problem times and climate scenarios would not necessarily be apparent.</li>
</ul>
<p>Cons:</p>
<ul>
<li>cDA is less suited for comparing two potential designs, because if you have .100 for an area, it&#8217;s not clear whether that&#8217;s because there were 30 fc 10% of the time, or 3fc 100% of the time, or what proportion in between.</li>
</ul>
<p>Our example:  We can resolve that ambiguity above by comparing the cDA map against the DA map in the prior section.   For example, in the side of the room nearest to the windows, the map looks about the same from DA to cDA, so when there *is* daylight, it&#8217;s sufficient for task lighting.  Conversely, for the lower half away from the windows, there&#8217;s hardly ever light above 30fc as the DA map is solid blue, but there is pretty consistently a fraction of the necessary light, so dimming controls would be advantageous for that row of lighting.</p>
<p style="text-align: center;"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Useful-Daylight-Illuminance.jpg"><img class="size-large wp-image-1885 aligncenter" title="Useful-Daylight-Illuminance" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Useful-Daylight-Illuminance-441x500.jpg" alt="" width="441" height="500" /></a></p>
<p><span class="majuscule">Useful Daylight Illuminance (UDI):</span> Another variation on Daylight Autonomy, UDI attempts to penalize for direct sunlight that falls into the space, on the theory that people will find this glary and distracting.  UDI is a set of three numbers for every point in the space, the percentage of time that a point was below a minimum threshold, between a useful minimum and maximum value, and above a maximum value, which could result in glare or thermal discomfort.  Often 10fc is used as the lower bound of useful illuminance, and 250fc on the upper bound.</p>
<p>Pros:</p>
<ul>
<li>Most of the advantages of DA, but an additional dimension for glare and thermal discomfort.</li>
<li>Good for comparing the performance of two design variations.</li>
</ul>
<div>Cons:</div>
<div>
<ul>
<li>Since you&#8217;re generating three data points for every spatial point, it&#8217;s difficult to assess performance at a glance or communicate how well the space performs to someone who isn&#8217;t a specialist.</li>
</ul>
<div>Our example:  Above, I&#8217;ve run it with lower bound 30fc and upper bound 250fc, to make the point that in a space such as our example classroom where the window faces north and thus there&#8217;s no direct sunlight in the room, this is exactly the same as Daylight Autonomy.</div>
</div>
<div id="attachment_1886" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Classroom-equinox-morning_s1_RGB_vp1.jpg"><img class="size-large wp-image-1886  " title="Classroom equinox morning_s1_RGB_vp1" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Classroom-equinox-morning_s1_RGB_vp1-680x344.jpg" alt="" width="680" height="344" /></a><p class="wp-caption-text">Direct sun exposure causing veiling glare on the whiteboard (window faces West in this simulation).</p></div>
<p><span class="majuscule">Daylight Glare Probability (DGP):</span> Glare is when the ratio of luminances within the field of view of an observer exceeds the comfortable dynamic range of the eye, such that the highlights appear blindingly white, and details are obscured by stray light bouncing around in the eye.  It&#8217;s a hard metric to quantify because it&#8217;s very dependent on the observer (personal preference and age), the position relative to sources and the specific task being performed, and can arise in a number of ways such as reflections from the sun or luminance ratios between windows and adjacent surfaces.</p>
<p>The reference method for glare assessment calculations is to generate an HDR image for the position in question for every daylight hour of the year, and then compare the luminance ratios and adjacencies to come up with a probability that an average observer at that point would find it objectionable.  But, doing this for even a simple space with one observer position entails thousands of hours of calculation, so in practice a simpler method is necessary. Daysim is capable of assessing an optimized algorithm DGP for a defined viewpoint.</p>
<p>This is very much an area of active research, but a proposed metric for DGP in <a title="Dynamic Daylight Glare Evaluation by Wienold, 2009" href="http://www.google.com/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CFMQFjAA&amp;url=http%3A%2F%2Fciteseerx.ist.psu.edu%2Fviewdoc%2Fdownload%3Fdoi%3D10.1.1.172.2753%26rep%3Drep1%26type%3Dpdf&amp;ei=nhm4T-GfDebJiQKT4eHdBg&amp;usg=AFQjCNEoQPnVo5Ehyt-emLj0_WZFCwG5NA&amp;sig2=pcAJ97VxzOCWH0arhE7Ykg" target="_blank">Wienold 2009, Dynamic Daylight Glare Evaluation</a>, is below.</p>

<table id="wp-table-reloaded-id-22-no-1" class="wp-table-reloaded wp-table-reloaded-id-22">
<thead>
	<tr class="row-1 odd">
		<th class="column-1"></th><th class="column-2">'Best' class 95% of office-time glare weaker than ´imperceptible´</th><th class="column-3">'Good' class: 95% of office-time glare weaker than ´perceptible´</th><th class="column-4">Reasonable class: 95% of office-time glare weaker than `disturbing`</th>
	</tr>
</thead>
<tbody>
	<tr class="row-2 even">
		<td class="column-1">DGP limit</td><td class="column-2">≤ 0.35</td><td class="column-3">≤ 0.40</td><td class="column-4">≤ 0.45</td>
	</tr>
	<tr class="row-3 odd">
		<td class="column-1">Average DGP limit within 5% band</td><td class="column-2">0.38</td><td class="column-3">0.42</td><td class="column-4">0.53</td>
	</tr>
</tbody>
</table>

<p>Pros:</p>
<ul>
<li>Predicts potential glare issues directly by evaluating luminance ratios, rather than a proxy metric such as aSE.</li>
</ul>
<p>Cons:</p>
<ul>
<li>Even with the simplified/optimized algorithm used in Daysim, it&#8217;s a very time-consuming calculation.</li>
<li>The optimized algorithm does not incorporate peak glare  from sources such as specular reflection or direct sunlight exposure on reflective surfaces, if I understand it right.</li>
<li>Results are only for the location and orientation tested.</li>
<li>Conceptually opaque, i.e. it&#8217;s hard to make a correspondence between the DGP number and what the specific qualitative problem is.</li>
</ul>
<p>Our example:  I wanted to try orienting the classroom to a west-facing window, and then run DGP for a &#8216;student&#8217; position and a &#8216;teacher&#8217; position in front of the whiteboard, but I couldn&#8217;t get Daysim to return a DGP in a reasonable amount of time.  The computer ran for a full day without finishing (3.0 GHz dual-core processor, although it appears to only use one core for this calculation).  I think that any metric that takes longer than 24 hours to calculate has a severely limited utility as a design tool.</p>
<div id="attachment_1912" class="wp-caption aligncenter" style="width: 672px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Annual-Sun-Exposure-Slide.jpg"><img class="size-large wp-image-1912  " title="Annual-Sun-Exposure-Slide" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Annual-Sun-Exposure-Slide-662x500.jpg" alt="" width="662" height="500" /></a><p class="wp-caption-text">Slide from a recent lecture by Lisa Heschong and Kevin Van Den Wymelenberg</p></div>
<p><span class="majuscule">Annual Sunlight Exposure (aSE):</span> is the number of hours per year at a given point where direct sun is incident on the surface.  It has a great deal of import generally for heating and cooling, and is well-established in use for displaying artwork that the sun would damage.  There are IES recommendations for how much annual light exposure artwork of various types may tolerate, in lux-hours.</p>
<p>In the forthcoming IES LM-83, aSE is defined as the percentage of square footage that has direct sunlight for more than 250 hours a year.  Direct sunlight is abstracted as &gt;100fc incorporating glazing materials, but not sky light, bounce light (radiosity), and not incorporating operable shades.</p>
<p>Pros:</p>
<ul>
<li>Fast to calculate, since it doesn&#8217;t require radiosity solutions or luminance maps for an observer point.</li>
<li>Useful as a design tool, since it gives a good handle on where the problem areas might be of a design.</li>
<li>Incorporates potential issues of thermal discomfort.</li>
</ul>
<p>Cons:</p>
<ul>
<li>Does not address issues of glare due to specular reflections or veiling glare from high luminance ratios.  aSE not, strictly speaking, a glare metric at all, it&#8217;s just a proxy that has been found to predict glare discomfort in many cases.</li>
</ul>
<p>Our example: Since this standard is still under development, it&#8217;s not surprising that neither Daysim nor AGI has a pre-built configuration for it.  For the north-facing window, the aSE would be 0 of course, since no direct light from the sun (not sky) would pass through the window.  But, above is a slide from a recent lecture I attended with a similar space, at least in the sense that it has large north-facing windows.  The A-B-C classification is a field study of how highly the occupants rate the quality of the daylight in the space vs. predicted quality via sDA and aSE, somehow?  There were 150 slides, so some of it went by before I could really absorb it.</p>
<p style="text-align: center;"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Spatial-Daylight-Autonomy.jpg"><img class="size-large wp-image-1905 aligncenter" title="Spatial-Daylight-Autonomy" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/05/Spatial-Daylight-Autonomy-680x498.jpg" alt="" width="680" height="498" /></a></p>
<p><span class="majuscule">Spatial Daylight Autonomy (sDA):</span> is another metric that is under active development, but it will described in IES LM-83, which is expected to be released later this year (2012).  sDA is the percentage of area that is above 30fc 50% of the time or more during business hours.</p>
<p>Pros:</p>
<ul>
<li>Unlike Daylight Autonomy which returns an array of data points for every location in the space, it returns a single number for the space.</li>
<li>Experimentally verified to predict occupant satisfaction, using a large study of 61 sites (forthcoming study by HMG group).</li>
</ul>
<p>Cons:</p>
<ul>
<li>I don&#8217;t know if this is a drawback since it&#8217;s by design, but it&#8217;s worth pointing out that sDA does not incorporate glare or direct sun exposure&#8211; it is intended that aSE would be evaluated separately.</li>
</ul>
<div>Our example:  I don&#8217;t have an easy way of assessing this for our example classroom, but in the above graphic from a recent lecture on the subject I attended by Lisa Heschong and Kevin Van Den Wymelenberg, you can see that this south-facing room has an sDA<sub>50%/300lx</sub> of 73%.  It&#8217;s a perfect example of the idea that daylighting penetration is a separate metric from considerations of glare and thermal loading.  Holistically, these south-facing unshaded windows would not be a very good daylight design, in that you would have direct sun coming into the space most of the time.  However, the aSE would be quite high for this space, leading to consideration of exterior shading devices or a lightshelf, perhaps.</div>
<p><span class="majuscule"> In Conclusion:</span></p>
<p>There are a number of discrete tasks that the daylighting consultant has to perform, such as comparing design variants for performance, selection of glazing and operable shading materials, and communication of the impact of design choices to other members of the design team.  All of these metrics can contribute to some of those tasks, and which metric is optimal can depend greatly on the project geometry and location.</p>
<p>It&#8217;s an exciting time to be working in this field, because due to voluntary sustainable building initiatives such as LEED, there is a great deal of visibility for the benefits of daylighting, and I think we&#8217;re on the cusp of it becoming a design fundamental for most projects.  Already, daylighting contribution is routinely considered in some project types, such as classrooms and airport concourses.</p>
<p>While my expertise is in electric lighting, I&#8217;ve been working on learning about this subject, because I think that the next generation of lighting designers will also be daylight consultants&#8211; the interactions between daylight and electric lighting are profound, and lighting designers are or at any rate should be already comfortable with running photometric simulations.  I hope this was interesting and useful to you, please do drop me a line or comment if there&#8217;s anything you&#8217;d like to add!  (or correct, of course)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxwellrosspierson.com/2012/05/19/an-overview-of-daylighting-metrics-with-examples/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fool for Love with Boxcar Theater Company</title>
		<link>http://www.maxwellrosspierson.com/2012/04/29/fool-for-love-with-boxcar-theater-company/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fool-for-love-with-boxcar-theater-company</link>
		<comments>http://www.maxwellrosspierson.com/2012/04/29/fool-for-love-with-boxcar-theater-company/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 00:55:54 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[Lighting Design]]></category>

		<guid isPermaLink="false">http://www.maxwellrosspierson.com/?p=1786</guid>
		<description><![CDATA[Here are some pictures from a production of Fool for Love that I designed with Boxcar Theater Company.  What&#8217;s notable about this production is that I made all of the lighting fixtures.  As a site-specific piece, we didn&#8217;t want to introduce anything into the performance space that didn&#8217;t belong there, such as theatrical lighting equipment. [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/04/IMG1201-crop-blog.jpg"><img class="aligncenter size-large wp-image-1788" title="IMG1201 crop blog" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/04/IMG1201-crop-blog-375x500.jpg" alt="" width="375" height="500" /></a></p>
<p>Here are some pictures from a production of Fool for Love that I designed with Boxcar Theater Company.  What&#8217;s notable about this production is that I made all of the lighting fixtures.  As a site-specific piece, we didn&#8217;t want to introduce anything into the performance space that didn&#8217;t belong there, such as theatrical lighting equipment.  So I modified practical lighting fixtures to work for theatrical purposes.  The result was a performance that was truly without a proscenium frame, more raw and intimate than theater, even good theater, is usually.  Additional pictures after the break.</p>
<p><span id="more-1786"></span></p>
<div id="attachment_1796" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/04/IMG1179-blog.jpg"><img class="size-large wp-image-1796" title="IMG1179 blog" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/04/IMG1179-blog-680x453.jpg" alt="" width="680" height="453" /></a><p class="wp-caption-text">The purpose-built theater as it appeared in preshow</p></div>
<p><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/04/IMG1275-blog.jpg"><img class="aligncenter size-large wp-image-1792" title="IMG1275 blog" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/04/IMG1275-blog-333x500.jpg" alt="" width="333" height="500" /></a></p>
<p><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/04/P1020980-blog.jpg"><img class="aligncenter size-large wp-image-1791" title="P1020980 blog" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/04/P1020980-blog-375x500.jpg" alt="" width="375" height="500" /></a></p>
<p><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/04/P1020974-blog.jpg"><img class="aligncenter size-large wp-image-1790" title="P1020974 blog" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/04/P1020974-blog-666x500.jpg" alt="" width="666" height="500" /></a></p>
<p><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/04/Old-Man-BW-blog.jpg"><img class="aligncenter size-large wp-image-1789" title="Old Man BW blog" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/04/Old-Man-BW-blog-680x453.jpg" alt="" width="680" height="453" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><!--more--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxwellrosspierson.com/2012/04/29/fool-for-love-with-boxcar-theater-company/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Redesign for www.wingedvictorydesign.com</title>
		<link>http://www.maxwellrosspierson.com/2012/03/03/a-redesign-for-www-wingedvictorydesign-com/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-redesign-for-www-wingedvictorydesign-com</link>
		<comments>http://www.maxwellrosspierson.com/2012/03/03/a-redesign-for-www-wingedvictorydesign-com/#comments</comments>
		<pubDate>Sun, 04 Mar 2012 02:42:56 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[Etc.]]></category>

		<guid isPermaLink="false">http://www.maxwellrosspierson.com/?p=1769</guid>
		<description><![CDATA[I am getting to be alright at this WordPress stuff: I&#8217;ve just completed a redesign of www.wingedvictorydesign.com, which is my theatrical lighting design portfolio.  It&#8217;s the same content (for now, I have some new shows to put up there as well), but the pictures are larger and the layout is much nicer. I&#8217;m also working [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.wingedvictorydesign.com"><img class="aligncenter size-large wp-image-1774" title="screenshot" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/03/screenshot-680x382.jpg" alt="" width="680" height="382" /></a><br />
<span class="majuscule">I am getting to be alright at this WordPress stuff:</span> I&#8217;ve just completed a redesign of www.wingedvictorydesign.com, which is my theatrical lighting design portfolio.  It&#8217;s the same content (for now, I have some new shows to put up there as well), but the pictures are larger and the layout is much nicer.<br />
I&#8217;m also working on getting my architectural lighting design stuff up on the web, that will happen soon-ish.  In the meantime, if there&#8217;s anything you find seems broken or hard to use, do drop me a line!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxwellrosspierson.com/2012/03/03/a-redesign-for-www-wingedvictorydesign-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>True West with Boxcar Theater Company</title>
		<link>http://www.maxwellrosspierson.com/2012/03/03/true-west-with-boxcar-theater-company/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=true-west-with-boxcar-theater-company</link>
		<comments>http://www.maxwellrosspierson.com/2012/03/03/true-west-with-boxcar-theater-company/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 07:17:11 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[Lighting Design]]></category>

		<guid isPermaLink="false">http://www.maxwellrosspierson.com/?p=1752</guid>
		<description><![CDATA[Here is something you can do on Friday:  Now playing at the Hyde Street Studios with Boxcar Theater company, True West by Sam Shepard.  This is the first of two plays I&#8217;m designing with Boxcar Theater company, and it&#8217;s a great show, and I&#8217;m very happy with the design.  I&#8217;ll do a writeup for it [...]]]></description>
				<content:encoded><![CDATA[<div id="attachment_1763" class="wp-caption aligncenter" style="width: 690px"><a href="http://www.maxwellrosspierson.com/wp-content/uploads/2012/03/Opening-Panorama.jpg"><img class="size-large wp-image-1763" title="Opening-Panorama" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/03/Opening-Panorama-680x290.jpg" alt="" width="680" height="290" /></a><p class="wp-caption-text">Click to enlarge.</p></div>
<p><span class="majuscule">Here is something you can do on Friday:</span>  Now playing at the Hyde Street Studios with Boxcar Theater company, True West by Sam Shepard.  This is the first of two plays I&#8217;m designing with Boxcar Theater company, and it&#8217;s a great show, and I&#8217;m very happy with the design.  I&#8217;ll do a writeup for it on <a title="Winged Victory Design" href="http://www.wingedvictorydesign.com">my portfolio site.</a></p>

<a href='http://www.maxwellrosspierson.com/2012/03/03/true-west-with-boxcar-theater-company/img_9210/' title='img_9210'><img width="150" height="150" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/03/img_9210-150x150.jpg" class="attachment-thumbnail" alt="img_9210" /></a>
<a href='http://www.maxwellrosspierson.com/2012/03/03/true-west-with-boxcar-theater-company/img_9608/' title='img_9608'><img width="150" height="150" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/03/img_9608-150x150.jpg" class="attachment-thumbnail" alt="img_9608" /></a>
<a href='http://www.maxwellrosspierson.com/2012/03/03/true-west-with-boxcar-theater-company/img_9638/' title='img_9638'><img width="150" height="150" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/03/img_9638-150x150.jpg" class="attachment-thumbnail" alt="img_9638" /></a>
<a href='http://www.maxwellrosspierson.com/2012/03/03/true-west-with-boxcar-theater-company/opening-panorama/' title='Opening-Panorama'><img width="150" height="150" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/03/Opening-Panorama-150x150.jpg" class="attachment-thumbnail" alt="Opening-Panorama" /></a>
<a href='http://www.maxwellrosspierson.com/2012/03/03/true-west-with-boxcar-theater-company/p1020902/' title='P1020902'><img width="150" height="150" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/03/P1020902-150x150.jpg" class="attachment-thumbnail" alt="P1020902" /></a>
<a href='http://www.maxwellrosspierson.com/2012/03/03/true-west-with-boxcar-theater-company/p1020951/' title='P1020951'><img width="150" height="150" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/03/P1020951-150x150.jpg" class="attachment-thumbnail" alt="P1020951" /></a>
<a href='http://www.maxwellrosspierson.com/2012/03/03/true-west-with-boxcar-theater-company/p1020958/' title='P1020958'><img width="150" height="150" src="http://www.maxwellrosspierson.com/wp-content/uploads/2012/03/P1020958-150x150.jpg" class="attachment-thumbnail" alt="P1020958" /></a>

<p>True West runs through April 7 and I hope you can make it.  More information <a href="http://www.boxcartheatre.org/samshep_truewest.php" class="broken_link">here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.maxwellrosspierson.com/2012/03/03/true-west-with-boxcar-theater-company/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 2.171 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-14 15:19:34 -->

<!-- Compression = gzip -->