<?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>New Textiles 2012 &#187; rbatzer</title>
	<atom:link href="http://newtextiles.media.mit.edu/2012/?feed=rss2&#038;author=14" rel="self" type="application/rss+xml" />
	<link>http://newtextiles.media.mit.edu/2012</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Fri, 25 May 2012 04:00:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Lissajous &amp; Prolate Code</title>
		<link>http://newtextiles.media.mit.edu/2012/?p=3500</link>
		<comments>http://newtextiles.media.mit.edu/2012/?p=3500#comments</comments>
		<pubDate>Mon, 21 May 2012 17:26:43 +0000</pubDate>
		<dc:creator>rbatzer</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://newtextiles.media.mit.edu/2012/?p=3500</guid>
		<description><![CDATA[/*This example draws voronoi diagram generated by a random set of points.*/ void setup() { size(1200,600,P3D); //size of your intended pattern noLoop(); // don&#8217;t need to use the draw loop /*unique name for your file. if left unchanged, will simply save file with current milisecond*/ String fileName= &#8220;voronoi&#8221;+millis()+&#8221;.pdf&#8221;; beginRaw(PDF, fileName); //enables you to save your [...]]]></description>
			<content:encoded><![CDATA[<div>/*This example draws voronoi diagram generated by a random set of points.*/</div>
<div>void setup() {</div>
<div>size(1200,600,P3D); //size of your intended pattern</div>
<div>noLoop(); // don&#8217;t need to use the draw loop</div>
<div>/*unique name for your file. if left unchanged,</div>
<div>will simply save file with current milisecond*/</div>
<div>String fileName= &#8220;voronoi&#8221;+millis()+&#8221;.pdf&#8221;;</div>
<div>beginRaw(PDF, fileName); //enables you to save your design to a pdf</div>
<div>setupVoronoi(); // create your voronoi generator</div>
<div>int a = 3;</div>
<div>int b=4;</div>
<div>int numPoints=200; //must be multiple of n</div>
<div>float x=0;</div>
<div>float y=0;</div>
<div>float delta =0;</div>
<div>float t=0;</div>
<div>delta=(b-1)/b*3.14159265/2;</div>
<div>for (int k=1;k&lt;numPoints;k++) {</div>
<div>t= k*2*3.14159265/numPoints;</div>
<div>x=200*sin(t*a+delta)+600;</div>
<div>y=150*sin(b*t)+300;</div>
<div>voronoi.addPoint(new Vec2D(x,y));</div>
<div>}</div>
<div>int c = 3;</div>
<div>int d=4;</div>
<div>int numPoints2=200; //must be multiple of n</div>
<div>float theta =0;</div>
<div>for (int k=1;k&lt;numPoints2;k++) {</div>
<div>y=5*(c*theta-d*sin(theta));</div>
<div>x=5*(c-d*cos(theta))+20;</div>
<div>theta= theta+23*3.14159/numPoints2;</div>
<div>voronoi.addPoint(new Vec2D(x,y));</div>
<div>voronoi.addPoint(new Vec2D(1200-x,y));</div>
<div>}</div>
<div>drawVoronoi(); //renders your voronoi</div>
<div>endRaw(); //ends the recording</div>
<div>}</div>
<p>/*This example draws voronoi diagram generated by a random set of points.*/<br />
void setup() { size(1200,600,P3D); //size of your intended pattern noLoop(); // don&#8217;t need to use the draw loop  /*unique name for your file. if left unchanged, will simply save file with current milisecond*/ String fileName= &#8220;voronoi&#8221;+millis()+&#8221;.pdf&#8221;;    beginRaw(PDF, fileName); //enables you to save your design to a pdf        setupVoronoi(); // create your voronoi generator     int a = 3;   int b=4;    int numPoints=200; //must be multiple of n    float x=0;    float y=0;    float delta =0;    float t=0;<br />
delta=(b-1)/b*3.14159265/2;    for (int k=1;k&lt;numPoints;k++) {       t= k*2*3.14159265/numPoints;    x=200*sin(t*a+delta)+600;    y=150*sin(b*t)+300;          voronoi.addPoint(new Vec2D(x,y));  }     int c = 3;   int d=4;    int numPoints2=200; //must be multiple of n    float theta =0;   for (int k=1;k&lt;numPoints2;k++) {       y=5*(c*theta-d*sin(theta));    x=5*(c-d*cos(theta))+20;    theta= theta+23*3.14159/numPoints2;         voronoi.addPoint(new Vec2D(x,y));         voronoi.addPoint(new Vec2D(1200-x,y));  }   drawVoronoi(); //renders your voronoi   endRaw(); //ends the recording<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://newtextiles.media.mit.edu/2012/?feed=rss2&#038;p=3500</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Laser Cut Vest</title>
		<link>http://newtextiles.media.mit.edu/2012/?p=3217</link>
		<comments>http://newtextiles.media.mit.edu/2012/?p=3217#comments</comments>
		<pubDate>Sun, 20 May 2012 06:49:50 +0000</pubDate>
		<dc:creator>rbatzer</dc:creator>
				<category><![CDATA[Final Project]]></category>

		<guid isPermaLink="false">http://newtextiles.media.mit.edu/2012/?p=3217</guid>
		<description><![CDATA[Laser Cut Wool Vest presentation Final Project: A professional style women’s vest with laser cut lace appliqué based on a vornoi digram of a lissajous curve and a prolate cycloid. The laser cut dresses are very delicate and would be difficult to wear. The goal of this project is to make a usable clothing item [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/Laser-Cut-Wool-Vest-presentation.pptx">Laser Cut Wool Vest presentation</a></p>
<p>Final Project: A professional style women’s vest with laser cut lace appliqué based on a vornoi digram of a lissajous curve and a prolate cycloid.</p>
<p style="text-align: center"><strong><a href="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/previous-work.png"><img class="size-full wp-image-3502   aligncenter" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/previous-work.png" alt="" width="452" height="346" /></a><br />
</strong></p>
<p>The laser cut dresses are very delicate and would be difficult to wear. The goal of this project is to make a usable clothing item by iron on fusing and sewing the laser cut pattern down.</p>
<p>The pattern will be based on mathematical shapes with a voronoi diagram.  Once the 2D pattern is created, it will be modified to fit the panels of the vest pattern.</p>
<p style="text-align: center"><a href="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/fabricandpattern.png"><img class="size-full wp-image-3517 aligncenter" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/fabricandpattern.png" alt="" width="674" height="509" /></a></p>
<p><strong>Lissajous curve on the back of the vest</strong></p>
<p>Using Lincoln Labs Logo <a href="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/LL.png"><img class="alignnone size-full wp-image-3512" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/LL.png" alt="" width="78" height="77" /></a></p>
<p><em>x</em> = 3 sin(8π<em>t</em>/<em>T</em>) and <em>y</em> = 4 sin(6π<em>t</em>/<em>T</em>)</p>
<p><a href="http://www.ll.mit.edu/about/History/logo.html">http://www.ll.mit.edu/about/History/logo.html</a></p>
<p><strong>Prolate Cycloid on the front flaps</strong></p>
<p style="text-align: center"><strong><a href="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/curves.png"><img class="size-full wp-image-3510 aligncenter" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/curves.png" alt="" width="539" height="326" /></a></strong></p>
<p style="text-align: center">
<p style="text-align: left">The Voronoi diagram selected has 200 points per geometric figure and is 1200 x 600. A selection of design iterations is below.</p>
<p><a href="http://newtextiles.media.mit.edu/2012/?p=3500">Lissajous &amp; Prolate Code</a></p>
<p><a href="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/design3.png"><img class="alignleft size-full wp-image-3504" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/design3.png" alt="" width="200" height="100" /></a><a href="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/design2.png"><img class="alignleft size-full wp-image-3505" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/design2.png" alt="" width="200" height="100" /></a><a href="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/design1.png"><img class="size-full wp-image-3506 alignnone" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/design1.png" alt="" width="200" height="100" /></a></p>
<p>Once the vest pattern and diagram were selected, the diagram needed to be modified to fit the pattern</p>
<p>1.Measure vest pattern and put in SolidWorks</p>
<p>2.Line up edges close together</p>
<p>3.Move individual lines so that the lines will touch at the seams.</p>
<p>4.Extend lines to account for seams.</p>
<p><strong>SolidWorks drawing of pattern ( converted by hand)</strong></p>
<p><a href="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/sw1.png"><img class="alignnone size-full wp-image-3518" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/sw1.png" alt="" width="532" height="302" /></a></p>
<p><strong>Final Design</strong></p>
<p><a href="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/total-design.png"><img class="alignnone size-full wp-image-3222" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/total-design.png" alt="" width="347" height="415" /></a></p>
<p><a href="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/cut-patterns.png"><img class="alignnone size-full wp-image-3508" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/cut-patterns.png" alt="" width="599" height="408" /></a></p>
<p><strong><strong>Cutting the diagrams</strong></strong></p>
<p><strong>laser cutting wool<strong> SMELLS. </strong>You are literally burning hair.  It works best if you cut with the iron on facing up because it reduces the burning. I found it effective to cut with 100% speed and about 45 watts. </strong></p>
<p><strong><strong>The smell is reasonably easily washed out and the burned areas gets washed away so the final product looks very nice. </strong></strong></p>
<p><a href="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/lasering.png"><img class="alignnone size-full wp-image-3509" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/lasering.png" alt="" width="308" height="310" /></a></p>
<p><strong>The Fun Part:<br />
Making the patterns line up at the seams</strong></p>
<p>Cut patterns seam to be a little too large making fitting difficult</p>
<p>Below is the simplified version of how the fitting was done:</p>
<p>1. Line up patterns on the front and back panel</p>
<p>2.Iron down central area of the back and front panels</p>
<p><img class="alignnone" src="https://lh3.googleusercontent.com/-nhbMsDDzMLY/T7frL-d4P5I/AAAAAAAABgU/E8O8DbPNczs/w158-h210-n-k/IMG_0190.JPG" alt="" width="158" height="210" /><img class="alignnone" src="https://lh5.googleusercontent.com/-IxLnJtmNl4g/T7frNFdpPBI/AAAAAAAABgs/8EKMwcMyJhc/w143-h190-n-k/IMG_0192.JPG" alt="" width="143" height="190" /></p>
<p>3.Line up middle two patterns: Excessive pinning is the answer to your problems.</p>
<p><img class="alignnone" src="https://lh4.googleusercontent.com/-pHzH6mA-Fuo/T7frNgdajlI/AAAAAAAABgw/eLVHmnkXqSI/w257-h192-n-k/IMG_0194.JPG" alt="" width="257" height="192" /><img class="alignnone" src="https://lh4.googleusercontent.com/-5vhd9DVGaRc/T7frPZFbqDI/AAAAAAAABjk/z73KioeuVFM/w214-h160-n-k/IMG_0198.JPG" alt="" width="214" height="160" /></p>
<p>4.Iron down remainder</p>
<p><a href="https://lh5.googleusercontent.com/-ozl2fNSK5Gg/T7frPzVmpGI/AAAAAAAABhg/nTj2zwaXDqo/w215-h160-n-k/IMG_0199.JPG"><img class="alignnone" src="https://lh5.googleusercontent.com/-ozl2fNSK5Gg/T7frPzVmpGI/AAAAAAAABhg/nTj2zwaXDqo/w215-h160-n-k/IMG_0199.JPG" alt="" width="215" height="160" /></a></p>
<p><strong>Finishing Touches</strong></p>
<p>Sew over the pattern: more stable than iron-on alone. This takes a<strong> HUGE </strong>amount of time. It took me about 10 hours and I was aiming for speed over accuracy. It is worth it if you want the garment to last.</p>
<p><img class="alignnone" src="https://lh5.googleusercontent.com/-APvvLQbW3GA/T7frO_c-YvI/AAAAAAAABhI/O-r8rGLffFk/w257-h192-n-k/IMG_0196.JPG" alt="" width="257" height="192" /></p>
<p>Complete edges with bias tape.</p>
<p>Steps: sew 1/4 seam flat, iron over, sew down</p>
<p><a href="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/seams.png"><img class="alignnone size-full wp-image-3570" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/seams.png" alt="" width="686" height="156" /></a></p>
<p><strong>Finished Vest ( ~25 hours of work )</strong></p>
<p><a href="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/finished.png"><img class="alignnone size-full wp-image-3569" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/05/finished.png" alt="" width="755" height="303" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://newtextiles.media.mit.edu/2012/?feed=rss2&#038;p=3217</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>L-system Embroidery</title>
		<link>http://newtextiles.media.mit.edu/2012/?p=2702</link>
		<comments>http://newtextiles.media.mit.edu/2012/?p=2702#comments</comments>
		<pubDate>Mon, 30 Apr 2012 15:37:40 +0000</pubDate>
		<dc:creator>rbatzer</dc:creator>
				<category><![CDATA[Embroidery/3d Print]]></category>

		<guid isPermaLink="false">http://newtextiles.media.mit.edu/2012/?p=2702</guid>
		<description><![CDATA[I used Matlab open source code to generate L-system diagrams and a few interesting dynamic systems and output a vector graphic. A selection of patterns produced are below. I ended up only printing a few L-system designs because of time constraints. I used green as the main thread and purple on the bobbin. I ran [...]]]></description>
			<content:encoded><![CDATA[<p>I used Matlab open source code to generate L-system diagrams and a few interesting dynamic systems and output a vector graphic. A selection of patterns produced are below.</p>

<a href='http://newtextiles.media.mit.edu/2012/?attachment_id=2719' title='lorentz1'><img width="150" height="112" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/04/lorentz1.png" class="attachment-thumbnail" alt="lorentz1" title="lorentz1" /></a>
<a href='http://newtextiles.media.mit.edu/2012/?attachment_id=2710' title='lorentz2'><img width="150" height="112" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/04/lorentz2.png" class="attachment-thumbnail" alt="lorentz2" title="lorentz2" /></a>
<a href='http://newtextiles.media.mit.edu/2012/?attachment_id=2718' title='molecule7'><img width="150" height="112" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/04/molecule7.png" class="attachment-thumbnail" alt="molecule7" title="molecule7" /></a>
<a href='http://newtextiles.media.mit.edu/2012/?attachment_id=2716' title='molecule6'><img width="150" height="112" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/04/molecule6.png" class="attachment-thumbnail" alt="molecule6" title="molecule6" /></a>
<a href='http://newtextiles.media.mit.edu/2012/?attachment_id=2717' title='molecule5'><img width="150" height="112" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/04/molecule5.png" class="attachment-thumbnail" alt="molecule5" title="molecule5" /></a>
<a href='http://newtextiles.media.mit.edu/2012/?attachment_id=2715' title='ikeda2_1'><img width="150" height="112" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/04/ikeda2_1.png" class="attachment-thumbnail" alt="ikeda2_1" title="ikeda2_1" /></a>
<a href='http://newtextiles.media.mit.edu/2012/?attachment_id=2714' title='mackeyglass'><img width="150" height="112" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/04/mackeyglass.png" class="attachment-thumbnail" alt="mackeyglass" title="mackeyglass" /></a>
<a href='http://newtextiles.media.mit.edu/2012/?attachment_id=2713' title='dragon30'><img width="150" height="112" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/04/dragon30.png" class="attachment-thumbnail" alt="dragon30" title="dragon30" /></a>
<a href='http://newtextiles.media.mit.edu/2012/?attachment_id=2712' title='flowsnake4'><img width="150" height="112" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/04/flowsnake4.png" class="attachment-thumbnail" alt="flowsnake4" title="flowsnake4" /></a>
<a href='http://newtextiles.media.mit.edu/2012/?attachment_id=2711' title='hilbert5'><img width="150" height="112" src="http://newtextiles.media.mit.edu/2012/wp-content/uploads/2012/04/hilbert5.png" class="attachment-thumbnail" alt="hilbert5" title="hilbert5" /></a>

<p>I ended up only printing a few L-system designs because of time constraints. I used green as the main thread and purple on the bobbin. I ran out of bobbin thread several times and had tension issues when re-threading which caused color variation within each pattern. The effect actually looked quite nice, but would need to be fixed for a more consistent result.   In progress printing is below.</p>
<p><img class="alignnone" src="https://lh4.googleusercontent.com/-T9pbHDOu4JA/T56uAM6Fr5I/AAAAAAAABdI/Pa3l0yOPn6I/w115-h152-n-k/IMG_0121.JPG" alt="" width="115" height="152" /><img class="alignnone" src="https://lh3.googleusercontent.com/-XDx6IPmBqu4/T56uAXlHfrI/AAAAAAAABdU/gsEUfwIJ7XM/w204-h152-n-k/IMG_0122.JPG" alt="" width="204" height="152" /></p>
<p>I attempted to make a lace pattern with a background pattern and a dynamic system pattern, but the background program was far too long (about 3 hours) and started ripping the dissolvable  substrate so I abandoned the project.</p>
<p><img class="alignnone" src="https://lh3.googleusercontent.com/-b2iwFVns5uA/T56uAS77P0I/AAAAAAAABdQ/dPbm8YrWPgk/w204-h152-n-k/IMG_0123.JPG" alt="" width="204" height="152" /></p>
<p>Images of my final project are below.</p>
]]></content:encoded>
			<wfw:commentRss>http://newtextiles.media.mit.edu/2012/?feed=rss2&#038;p=2702</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>laser cut lace final objects</title>
		<link>http://newtextiles.media.mit.edu/2012/?p=2397</link>
		<comments>http://newtextiles.media.mit.edu/2012/?p=2397#comments</comments>
		<pubDate>Mon, 09 Apr 2012 00:38:36 +0000</pubDate>
		<dc:creator>rbatzer</dc:creator>
				<category><![CDATA[Final Project Proposals]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://newtextiles.media.mit.edu/2012/?p=2397</guid>
		<description><![CDATA[Final Project Proposal: A professional style women’s vest with laser cut lace appliqué based on a mathematical design. The work will be an extension of the Laser Cut Lace assignment and will further the project by the creation of more Processing models and shapes fit to clothing dimensions. Project Goals: Usable final product Durable: Lace [...]]]></description>
			<content:encoded><![CDATA[<p>Final Project Proposal: A professional style women’s vest with laser cut lace appliqué based on a mathematical design. The work will be an extension of the Laser Cut Lace assignment and will further the project by the creation of more Processing models and shapes fit to clothing dimensions.</p>
<p>Project Goals:</p>
<p>Usable final product</p>
<p>Durable:</p>
<ul>
<li>Lace bonded and edges sewn to lower layer cloth.</li>
<li>Low stretch possible with wool felt: Vest, chest areas of jacket, bag</li>
<li>Careful attention to pattern and sewing  </li>
</ul>
<p>Unique design with pattern tailored to available space instead of choosing a design and fitting it to the space.  </p>
<p>Fully patterned on front and back</p>
<p><a href="http://dl.dropbox.com/u/4695837/Laser%20Cut%20Wool%20Vest.pdf">Presentation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://newtextiles.media.mit.edu/2012/?feed=rss2&#038;p=2397</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pearls and extra thread 3D stiches</title>
		<link>http://newtextiles.media.mit.edu/2012/?p=2395</link>
		<comments>http://newtextiles.media.mit.edu/2012/?p=2395#comments</comments>
		<pubDate>Wed, 04 Apr 2012 19:28:41 +0000</pubDate>
		<dc:creator>rbatzer</dc:creator>
				<category><![CDATA[Knitting]]></category>

		<guid isPermaLink="false">http://newtextiles.media.mit.edu/2012/?p=2395</guid>
		<description><![CDATA[knit pattern meanings 10 stitches across of each patter will be shown at minimum, more if needed for pattern pattern spacing for readability 1 leave hook in knit position 0 pull hook all the way forward &#62; move stitch one to the right &#60; move stitch one to the left &#8230;.. continue pattern x# number [...]]]></description>
			<content:encoded><![CDATA[<p><strong>knit pattern meanings</strong></p>
<p>10 stitches across of each patter will be shown at minimum, more if needed for pattern</p>
<p>pattern spacing for readability<br />
1 leave hook in knit position<br />
0 pull hook all the way forward<br />
&gt; move stitch one to the right<br />
&lt; move stitch one to the left<br />
&#8230;.. continue pattern<br />
x# number of times row is repeated</p>
<p><strong>Seed Stitch Test:</strong><br />
<strong><a href="http://newtextiles.media.mit.edu/2012/?p=2408">seed pattern</a></strong><br />
<img class="alignright" src="http://media.wiley.com/Lux/89/107889.image0.jpg" alt="" width="185" height="144" /></p>
<div>
<p>The seed stitch was made by pulling a needle completely out and knitting to leave behind extra strings. The needle was then put back into the knit position to create a bunched stitch which looks raised on the knit side of the fabric.</p>
<p>Three extra string was the maximum the machine was able to knit over.</p>
<p>A similar look is easy to achieve with hand knitting by switching to pearl on the knit side, but the traditional pattern is a lot of work on the machine version.  A hand knit seed stitch from knit/pearl is seen at right.<br />
image: full patter from knit side, knit side close-up, pearl side close-up, hand knit seed (knit/pearl altering)</p>
<p><img class="alignnone" src="https://lh6.googleusercontent.com/-nDLTaCuIgsk/T3suQVF3dlI/AAAAAAAABas/EZApM0zKCA4/s0-d/IMG_0083.JPG" alt="" width="190" height="206" /><img class="alignnone" src="https://lh4.googleusercontent.com/-GLoifjurxBo/T3suQuEDOiI/AAAAAAAABXc/0CPXcapZnGI/s573/IMG_0085.JPG" alt="" width="275" height="206" /><img class="alignnone" src="https://lh6.googleusercontent.com/-AOwRbnq3LX8/T3suRkstiMI/AAAAAAAABXs/3B8MUx8jILA/s573/IMG_0087.JPG" alt="" width="275" height="206" /></p>
<p><strong>Extra thread 3D structures</strong></p>
<p>Adding stitches to create bumps is usually done without extra threads being left behind by not knitting over areas in between stitches. In this pattern, the 3D structures were made in the middle of the pattern so that a thread is left after every stitch. Depending on the direction of pattern decrease, either a set of loose threads of a thick bunch of stitched threads will be left behind.</p>
<p>Knit side</p>
<p><img class="alignnone" src="https://lh5.googleusercontent.com/-e_32spwg-Gw/T3suThZnCQI/AAAAAAAABZM/B7fQtpsYPUc/s796/IMG_0090.JPG" alt="" width="191" height="287" /></p>
<p>pearl side</p>
<p><strong>loose bunch</strong></p>
<p>11111  11111     11111  11111</p>
<p>11111  00000  11111  00000<br />
x number of threads per section</p>
<p>11111  11111     11111  11111</p>
<p><img class="alignnone" src="https://lh6.googleusercontent.com/-ferIJjNjxtw/T3sw8yazeRI/AAAAAAAABZk/H9SoDNEP344/w500-h116-k/image" alt="" width="500" height="116" /></p>
<p><strong>loose rainbow pattern</strong><br />
11111 &#8230;.11111<br />
11111 11110 01111 11111<br />
11111 11100 00111 11111<br />
11111 11000 00011 11111<br />
11111 10000 00001 11111<br />
11111 00000 00000 11111<br />
11111 11111     11111     11111</p>
<p><img class="alignnone" src="https://lh3.googleusercontent.com/-gybKeNArWEs/T3suT2JI-mI/AAAAAAAABZc/dXPcN97VuPU/w438-h123-k/IMG_0092.JPG" alt="" width="437" height="123" /></p>
<p><strong>bunched thread pattern</strong></p>
<p>11111 &#8230;.11111<br />
11111 0000 &#8230;0000 11111 (leave unstitched desired size of bunch)<br />
decrease number of unstitched threads each row until all are picked up as shown below<br />
11111 1000 &#8230; 0001 11111<br />
11111 1100  &#8230; 0011 11111<br />
11111 1110  &#8230;  0111 11111<br />
etc.</p>
<p>The maximum number of threads that can be picked up is around 10.</p>
<p><img class="alignnone" src="https://lh5.googleusercontent.com/-0V_sbipeIYs/T3sxvBNhweI/AAAAAAAABZo/-_zsppGTczo/w500-h123-k/image" alt="" width="500" height="123" /></p>
<p><strong>Two color variation on rainbow pattern</strong></p>
<p>Using a second color for the rainbow pattern can create a nice effect, especially if the extra threads are stitched back into the pattern as seen below. This can be accomplished by simply laying the excess thread across the needles to be stitched.</p>
<p><img class="alignnone" src="https://lh6.googleusercontent.com/-Xf-u1j8vSy4/T3suVNVLjCI/AAAAAAAABZw/3_L6tjKpmaA/s573/IMG_0094.JPG" alt="" width="206" height="183" /><img class="alignnone" src="https://lh5.googleusercontent.com/-KDTjB2V_d4Q/T3suVhwEXzI/AAAAAAAABZ0/3f-8dg6Ebpo/s573/IMG_0095.JPG" alt="" width="247" height="180" /></p>
<p><strong>Cone</strong></p>
<p>A variation on the assigned pattern to create a non-uniform cone. At the end of the pattern, the first stitches are added to the needs and knit together with the end of the pattern to bind them together.</p>
<p><strong>seam pattern</strong><br />
11111 &#8230; 11111<br />
01111 &#8230; 11111<br />
00111 &#8230; 11111<br />
00011 &#8230; 11111<br />
continue until desired seam length is reached and reverse pattern until all are knit<br />
00000 &#8230; 00001<br />
00000 &#8230; 00011<br />
00000 &#8230; 00111<br />
&#8230;<br />
11111 &#8230; 111111</p>
<p><strong>cone pattern</strong></p>
<p>30 stitches<br />
seam of length 5<br />
seam of length 15<br />
seam of length 25<br />
knit cast-on back to current stitch<br />
cast off</p>
<p><img class="alignnone" src="https://lh4.googleusercontent.com/-wVY3pTHLAHs/T3suSdWQmpI/AAAAAAAABZE/CPusnrD8fVA/s573/IMG_0089.JPG" alt="" width="266" height="246" /><img class="alignnone" src="https://lh6.googleusercontent.com/-roS7Bf3XHbo/T3suR5pgzvI/AAAAAAAABY8/mEjfrHKd2IA/s643/IMG_0088.JPG" alt="" width="219" height="246" /><br />
<strong> Water Droplet</strong></p>
<p>30 stitches wide<br />
11111 &#8230; 11111  x2<br />
01111 &#8230; 11110 x2<br />
00111 &#8230; 11100 x2<br />
&#8230;<br />
&#8230; 001100 &#8230;  x2<br />
11111 &#8230; 11111 x25<br />
11111&#8230;11&lt;&gt;11&#8230;11111<br />
11111 &#8230; 11111 x10<br />
<img class="alignnone" src="https://lh4.googleusercontent.com/-_kmS6B1yI18/T3suPz8_lxI/AAAAAAAABao/36g7FaRFJ6M/s0-d/IMG_0082.JPG" alt="" width="295" height="257" /><img class="alignnone" src="https://encrypted-tbn1.google.com/images?q=tbn:ANd9GcR4LCQ0-m6LEXHeE4e_CxxiBLhI2Jm3VIGVMiWM1zAfa7JskrJd" alt="" width="285" height="257" /></p>
<p><strong>Two color knit on the fine gauge machine</strong></p>
<p>I wanted to try out the computer controlled knitting available in the lab and decided to make an MIT Solar Car logo.  I first made a test run with one of the designs on the machine to figure out what issues I would have.</p>
<p>test pattern</p>
<p><img class="alignnone" src="https://lh5.googleusercontent.com/-MNwzzG-zO48/T4Q8b3moO-I/AAAAAAAABbU/Fdbq_Hk8cpI/w634-h285-n-k/IMG_0119.JPG" alt="" width="634" height="285" /></p>
<p><img class="alignnone" src="https://lh4.googleusercontent.com/-g8fTQcA5vrs/T4Q8jnuQh-I/AAAAAAAABbY/nWDM1-Xb5i4/w571-h286-k/solarcarknit_full.png" alt="" width="571" height="286" /></p>
<p>The solar car is 100&#215;200 stitches</p>
<p><img class="alignnone" src="https://lh4.googleusercontent.com/-93uvFy65j_8/T4Q8bbS_lQI/AAAAAAAABbQ/Qwfkc8o2ZV0/w500-h363-k/IMG_0118.JPG" alt="" width="500" height="362" /></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://newtextiles.media.mit.edu/2012/?feed=rss2&#038;p=2395</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rose Voronoi and Lorenz Attractor Designs</title>
		<link>http://newtextiles.media.mit.edu/2012/?p=1931</link>
		<comments>http://newtextiles.media.mit.edu/2012/?p=1931#comments</comments>
		<pubDate>Tue, 20 Mar 2012 16:53:21 +0000</pubDate>
		<dc:creator>rbatzer</dc:creator>
				<category><![CDATA[Laser Cut Lace]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://newtextiles.media.mit.edu/2012/?p=1931</guid>
		<description><![CDATA[I made paper lace using a Voronoi diagram generated with a polar rose and a 2D graph of a Lorenz Attractor. The polar rose is a the forms generated by the equation r= a*cos(theta*n/d) and results in the possible forms shown below (from Wikipedia). I chose this equation because it produces a large range of [...]]]></description>
			<content:encoded><![CDATA[<p>I made paper lace using a Voronoi diagram generated with a polar rose and a 2D graph of a Lorenz Attractor.</p>
<p>The polar rose is a the forms generated by the equation r= a*cos(theta*n/d) and results in the possible forms shown below (from Wikipedia). I chose this equation because it produces a large range of shapes from a single code.</p>
<p><img class="alignnone" src="http://upload.wikimedia.org/wikipedia/en/thumb/b/b4/Rose-rhodonea-curve-7x9-chart-improved.svg/452px-Rose-rhodonea-curve-7x9-chart-improved.svg.png" alt="" width="271" height="349" /></p>
<p>I inserted this equation in the the &#8220;Random&#8221; Voronoi generator by Jennifer. My code is below, but not properly commented.</p>
<div style="text-align: left"><strong>void setup() {</strong></div>
<div style="text-align: left"><strong>size(600,600,P3D); //size of your intended pattern</strong></div>
<div style="text-align: left"><strong>noLoop(); // don&#8217;t need to use the draw loop</strong></div>
<div style="text-align: left"><strong>/*unique name for your file. if left unchanged,</strong></div>
<div style="text-align: left"><strong>will simply save file with current milisecond*/</strong></div>
<div style="text-align: left"><strong>String fileName= &#8220;voronoi&#8221;+millis()+&#8221;.pdf&#8221;;</strong></div>
<div style="text-align: left"><strong>beginRaw(PDF, fileName); //enables you to save your design to a pdf</strong></div>
<div style="text-align: left"><strong>setupVoronoi(); // create your voronoi generator</strong></div>
<div style="text-align: left"><strong>int petalLength = 250; // variable to control the maximum length of each petal</strong></div>
<div style="text-align: left"><strong>float n=.232; //this is n/d and determines the petal shape</strong></div>
<div style="text-align: left"><strong>int numPoints=100; //number of points plotted.</strong></div>
<div style="text-align: left"><strong>float theta = 0;</strong></div>
<div style="text-align: left"><strong>float r=0;</strong></div>
<div style="text-align: left"><strong>float x=0;</strong></div>
<div style="text-align: left"><strong>float y=0;</strong></div>
<div style="text-align: left"><strong>//this will draw one spiral</strong></div>
<div style="text-align: left"><strong>for (int k=1;k&lt;numPoints;k++) {</strong></div>
<div style="text-align: left"><strong>theta = 2*3.14159/numPoints*k;//change first number to decide how many times around the circle are plotted.</strong></div>
<div style="text-align: left"><strong>r=petalLength*cos(n*theta);</strong></div>
<div style="text-align: left"><strong>x=r*cos(theta)+300;</strong></div>
<div style="text-align: left"><strong>y=r*sin(theta)+300;</strong></div>
<div style="text-align: left"><strong>voronoi.addPoint(new Vec2D(x,y));</strong></div>
<div style="text-align: left"><strong>}</strong></div>
<div style="text-align: left"><strong>drawVoronoi(); //renders your voronoi</strong></div>
<div style="text-align: left"><strong>endRaw(); //ends the recording</strong></div>
<div style="text-align: left"></div>
<div style="text-align: left"></div>
<div style="text-align: left">Several generated images:</div>
<div style="text-align: left"><strong><img class="alignnone" src="https://lh4.googleusercontent.com/-TjCOLtNlDrs/T2iqettNWfI/AAAAAAAABVY/ngDvO2Ibews/w387-h389-k/Untitled2.png" alt="" width="250" height="250" /><img class="alignnone" src="https://lh6.googleusercontent.com/-z9ETrouL31U/T2iqe892rbI/AAAAAAAABVc/OY5tGnKN4vY/w411-h413-k/Untitled21.png" alt="" width="250" height="250" /><img class="alignnone" src="https://lh4.googleusercontent.com/-8bssjqS8xEQ/T2iqe47wGEI/AAAAAAAABVg/Sxo5_MUILe0/w413-h414-k/Untitled245.png" alt="" width="250" height="250" /><img class="alignnone" src="https://lh5.googleusercontent.com/-ZOM9czd1c4M/T2iqgPtUBKI/AAAAAAAABVk/NiyfMSqEqD0/s368-c-k/Untitled5.png" alt="" width="250" height="250" /><img class="alignnone" src="https://lh6.googleusercontent.com/-ht4y2AL2XsE/T2iqgEW5k1I/AAAAAAAABVo/ayeICVzTpgk/w266-h266-n-k/fig1.jpg" alt="" width="250" height="250" /><img class="alignnone" src="https://lh6.googleusercontent.com/-3yl5mI3hPJ8/T2iqg1_GMwI/AAAAAAAABVs/Xli1fBH_39A/w402-h401-k/fig2.png" alt="" width="250" height="250" /><img class="alignnone" src="https://lh4.googleusercontent.com/-WXXe0r7obHE/T2iqhKO3C7I/AAAAAAAABVw/UC4gYteCYfg/w365-h368-k/fig3.png" alt="" width="250" height="250" /></strong></div>
<div style="text-align: left"><strong>Resulting Lace:</strong></div>
<div style="text-align: left"><strong><img class="alignnone" src="https://lh6.googleusercontent.com/-ygLzVQkzqNE/T2izHN_p07I/AAAAAAAABWw/d7xxEjc3hoY/w344-h332-k/IMG_0079.JPG" alt="" width="350" height="350" /><img class="alignnone" src="https://lh6.googleusercontent.com/-IUK1gNcBPes/T2izHUY0swI/AAAAAAAABW0/df_DcxCYPBY/w468-h432-k/IMG_0080.JPG" alt="" width="350" height="350" /></strong></div>
<div style="text-align: left"></div>
<div style="text-align: left"></div>
<div style="text-align: left"><strong>My second interest is in using a Lorenz Attatractor to generate interesting shapes. Lorenze is a chaotic system that generates spirals on two planes. I used Matlab code I found online to produce the following images. All are from the same 3D plot shown from different directions.<br />
</strong></div>
<p><img class="alignnone" src="https://lh4.googleusercontent.com/-EOHNMp6gONo/T2iuLmOBE0I/AAAAAAAABV0/9ViTOEVl1To/w500-h253-k/bit1.bmp" alt="" width="300" height="151" /><img class="alignnone" src="https://lh4.googleusercontent.com/-SBxr2NaoDT0/T2iuL80srcI/AAAAAAAABV8/fVkQAiH26u8/w570-h288-k/bit2.bmp" alt="" width="342" height="173" /><img class="alignnone" src="https://lh4.googleusercontent.com/-aDwE0jEqY-g/T2iuL3UM2kI/AAAAAAAABWA/T-b6a8Fe-ps/w500-h253-k/bit3.bmp" alt="" width="300" height="151" /></p>
<p>Lace for one view</p>
<p><img class="alignnone" src="https://lh3.googleusercontent.com/-L8cFI3fwo6k/T2izHdiZHaI/AAAAAAAABW4/v8aw4G7hKjY/w260-h342-k/IMG_0081.JPG" alt="" width="259" height="342" /></p>
]]></content:encoded>
			<wfw:commentRss>http://newtextiles.media.mit.edu/2012/?feed=rss2&#038;p=1931</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Micro (really mili) Fluidic Device</title>
		<link>http://newtextiles.media.mit.edu/2012/?p=1780</link>
		<comments>http://newtextiles.media.mit.edu/2012/?p=1780#comments</comments>
		<pubDate>Tue, 13 Mar 2012 16:46:21 +0000</pubDate>
		<dc:creator>rbatzer</dc:creator>
				<category><![CDATA[Nonwoven]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://newtextiles.media.mit.edu/2012/?p=1780</guid>
		<description><![CDATA[Micro fluidic devices are an emerging topic in Mechanical Engineering and have many applications in chemistry, biology, and medicine. The goal of this project was to create a larger micro fluidic device from silicone to demonstrate some of the properties of low Reynolds number flows  without a microscope. A few mili fluidic devices I made in 2.674 are [...]]]></description>
			<content:encoded><![CDATA[<p>Micro fluidic devices are an emerging topic in Mechanical Engineering and have many applications in chemistry, biology, and medicine. The goal of this project was to create a larger micro fluidic device from silicone to demonstrate some of the properties of low Reynolds number flows  without a microscope.</p>
<p>A few mili fluidic devices I made in 2.674 are below. They are fabricated with UV curing epoxy on glass which are both stiff materials, so they will not work for a soft device as required by the project.</p>
<p><img class="alignnone" src="https://lh5.googleusercontent.com/-Rpn91TXKAjc/T194jvRFVZI/AAAAAAAABR4/0YE3Y__gpdw/w236-h360-k/lab1basic%2Bchannel.JPG" alt="" width="236" height="365" /><img class="alignnone" src="https://lh3.googleusercontent.com/-2SMy-NjyZbs/T194nF34b-I/AAAAAAAABR8/Md6W6dQ1UGk/w230-h438-k/lab1%2Btrial%2B3.png" alt="" width="193" height="365" /></p>
<p>Micro fluidic devices are usually fabricated with PDMS which is flexible, but the PDMS is bonded to glass to make the structure rigid. I did not have access to PDMS for this project, so I decided to use the DragonSkin silicone provided by the class as my base material.</p>
<p>My first test used straws to create a hole in a silicone part. This worked well to make a passage, but allowed for only  very limited geometry.</p>
<p><img class="alignnone" src="https://lh6.googleusercontent.com/-vxRotbnzSvs/T1_-_LHcfwI/AAAAAAAABTE/9-D0gybaYR0/w500-h268-k/IMG_0067.JPG" alt="" width="498" height="263" /><img class="alignnone" src="https://lh4.googleusercontent.com/-QBhXKbOcvKc/T1_-_YV4vYI/AAAAAAAABTI/438r6unIwDU/w429-h290-n-k/IMG_0068.JPG" alt="" width="386" height="263" /></p>
<p>The channels needs to be produced in a two part mold for more intricate geometries.</p>
<p>In the conventional method, the PDMS is bonded to glass by exposing both surfaces to an oxygen plasma and the same process should work for silicone. Cured silicone is nearly impossible to bond to by conventional means, to the plasma treatment was a reasonable option.</p>
<p>I modeled the channels I wanted to make in SolidWorks and machined the mold for the silicone on a CNC mill.  I then molded the silicone in the mold and a flat panel for the top as seen below.</p>
<p><img class="alignnone" src="https://lh6.googleusercontent.com/-6I5R7sEZT3Q/T1_-9WI1m0I/AAAAAAAABSA/GSTi-BdyuCo/w477-h359-k/IMG_0062.JPG" alt="" width="477" height="360" /><img class="alignnone" src="https://lh6.googleusercontent.com/-7Q0s6qtR2Ks/T1_-9gQ8xbI/AAAAAAAABSI/uWxNhocT_d4/w485-h363-k/IMG_0063.JPG" alt="" width="484" height="360" /></p>
<p>The plasma chamber pictured below was used to prepare the surface for bonding. The purple seen through the chamber window is the plasma. Unfortunately, the silicone did not bond.</p>
<p><img class="alignnone" src="https://lh3.googleusercontent.com/-pp0q5PM4Z6Q/T1_--REiedI/AAAAAAAABSY/9bsJuxCCXiA/w500-h374-k/IMG_0065.JPG" alt="" width="329" height="243" /><img class="alignnone" src="https://lh4.googleusercontent.com/-dPecfCfKf8s/T1_--7P1aXI/AAAAAAAABSg/zH17h4SvGqc/w319-h239-n-k/IMG_0066.JPG" alt="" width="319" height="242" /></p>
]]></content:encoded>
			<wfw:commentRss>http://newtextiles.media.mit.edu/2012/?feed=rss2&#038;p=1780</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Curling flower</title>
		<link>http://newtextiles.media.mit.edu/2012/?p=1238</link>
		<comments>http://newtextiles.media.mit.edu/2012/?p=1238#comments</comments>
		<pubDate>Sun, 04 Mar 2012 06:34:21 +0000</pubDate>
		<dc:creator>rbatzer</dc:creator>
				<category><![CDATA[Shape Changing Textile]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://newtextiles.media.mit.edu/2012/?p=1238</guid>
		<description><![CDATA[My idea for the Shape Memory Alloy assignment was to make a curling flower that would react to light by opening up.  I started by making several prototype petals to see how well my idea would work. I experimented with fabric and paper petals and used a power supple to test how well they curled. Testing Fabric [...]]]></description>
			<content:encoded><![CDATA[<p>My idea for the Shape Memory Alloy assignment was to make a curling flower that would react to light by opening up.  I started by making several prototype petals to see how well my idea would work. I experimented with fabric and paper petals and used a power supple to test how well they curled.</p>
<p><strong>Testing</strong></p>
<p><img class="alignnone" style="border-style: initial;border-color: initial" src="https://lh4.googleusercontent.com/-Tg5f-4UqAso/T08GImDbYnI/AAAAAAAABHU/oPKfLg0uU2g/s573/IMG_0050.JPG" alt="" width="230" height="170" /></p>
<p><strong>Fabric Petal</strong></p>
<p><img class="alignnone" src="https://lh4.googleusercontent.com/-S1vWjLtFyZg/T08GHAGoarI/AAAAAAAABQc/AD8-wxwzlLM/w249-h117-k/IMG_0046.JPG" alt="" width="360" height="170" /><img class="alignnone" src="https://lh3.googleusercontent.com/-SIdWTsoWXJg/T08GHfzUK0I/AAAAAAAABQk/hhe1_u08r-w/w185-h138-k/IMG_0047.JPG" alt="" width="250" height="170" /></p>
<p><strong>Paper Petal</strong></p>
<p><img class="alignnone" src="https://lh4.googleusercontent.com/-TTsTRyNWIRk/T08GHlNSU8I/AAAAAAAABQo/gSFDfpdJ_SE/w288-h138-k/IMG_0048.JPG" alt="" width="320" height="170" /><img class="alignnone" src="https://lh5.googleusercontent.com/-eGceg8hBq38/T08GInCgwEI/AAAAAAAABQs/KReB6rVDZAs/w252-h170-k/IMG_0049.JPG" alt="" width="250" height="170" /></p>
<p>I wanted to have at least five petals to make a complete flower. I found that the amount of Nitinol we were provided with would not be enough to make the flowers curl completely like the longest section of demo from class. I decided to settle for slightly scrunched petal tips which I did have enough Nitinol to achieve.</p>
<p>Each petal needed 2.5 inches of Nitonol, so I was able to make six petals. I tested my first complete petal as shown in the video below to find out how much resistance each flower had. A 2.5 inch piece of Nitinol nominally has 3.5 Ohms of resistance. I measured one petal at 410mA and 1.2 V for 2.9 Ohms per petal. I decided to connect three petals together and use 3.7 volts from the LiPo battery. I used wire for my power connections to limit other possible power losses.</p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/QUa0Z3TQLMQ?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p><strong>Parts for the final flower</strong></p>
<p>The petals are connected in sets of three. They are connected positive to negative by a wire soldered between each petal as seen in the third picture. The first picture shows a stiff fabric ironed onto the back where the Nitinol wire goes which prevents the fabric from crumpling and forces it to bend.</p>
<p><img class="alignnone" src="https://lh3.googleusercontent.com/-zBoBuvqqQwQ/T1L_be-HBMI/AAAAAAAABP8/gA5F8krSfOM/w227-h170-k/IMG_0055.JPG" alt="" width="226" height="170" /><img class="alignnone" src="https://lh3.googleusercontent.com/-XXxpmu-E8Qs/T1L_ZabcEII/AAAAAAAABQw/xglMKI1xFQY/s573/IMG_0052.JPG" alt="" width="247" height="170" /><img class="alignnone" src="https://lh6.googleusercontent.com/-2U4FJOYJOr0/T1L_Zi5NGDI/AAAAAAAABPw/nAnz9cjr3Go/s817/IMG_0054.JPG" alt="" width="130" height="170" /><img class="alignnone" src="https://lh3.googleusercontent.com/-KU-EWW5tlNc/T1L_ZmyPE_I/AAAAAAAABQg/03kFh8K40RY/w407-h191-k/IMG_0053.JPG" alt="" width="340" height="170" /></p>
<p>The leaves are just for decoration and hold the button to turn the MOSFET for the petals &#8220;on&#8221;. The wiring in the leaves is stitched into the middle of the felt so it will be electrically isolated.</p>
<p><img class="alignnone" src="https://lh6.googleusercontent.com/-hdHrX2JyXnA/T1L_bWNuxDI/AAAAAAAABQA/LFhyvFFlLoc/w227-h170-k/IMG_0056.JPG" alt="" width="226" height="170" /><img class="alignnone" src="https://lh5.googleusercontent.com/-AhXMurBPmfw/T1ZN4iWMGrI/AAAAAAAABQ8/djIoBwzt7Z8/w341-h255-n-k/IMG_0059.JPG" alt="" width="226" height="170" /></p>
<p>The final flower is assembled below. All the electronics are houses under the lilypad in the flower center. This produces a clean look, but the electrical connections ended up very jumbled and are difficult to debug. I forgot to account for the diode voltage drop at the MOSFET, so I ended up using the 5V supply from the laptop instead of the 3.7 V from the battery.</p>
<p><img class="alignnone" src="https://lh4.googleusercontent.com/-x4sSMc_R5Vo/T1ZN5SWhIlI/AAAAAAAABRg/VNQ_e1GULi8/w423-h399-k/IMG_0060.JPG" alt="" width="423" height="399" /></p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/Vey2e8z2AlE?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://newtextiles.media.mit.edu/2012/?feed=rss2&#038;p=1238</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pressure Glove Arduino Code</title>
		<link>http://newtextiles.media.mit.edu/2012/?p=1224</link>
		<comments>http://newtextiles.media.mit.edu/2012/?p=1224#comments</comments>
		<pubDate>Thu, 01 Mar 2012 06:01:12 +0000</pubDate>
		<dc:creator>rbatzer</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://newtextiles.media.mit.edu/2012/?p=1224</guid>
		<description><![CDATA[int sensorPin = A4; int sensorValue; int internalLED = 13; int LED1 = 5; int LED2 = 6; int LED3 = 9; int LED4 = 10; int val1 = 200; int val2 = 110; int val3 = 60; int val4 = 30; void setup() { pinMode(sensorPin, INPUT); digitalWrite(sensorPin, HIGH); //turns on the internal pull-up resistor [...]]]></description>
			<content:encoded><![CDATA[<div>int sensorPin = A4;</div>
<div>int sensorValue;</div>
<div>int internalLED = 13;</div>
<div>int LED1 = 5;</div>
<div>int LED2 = 6;</div>
<div>int LED3 = 9;</div>
<div>int LED4 = 10;</div>
<div>int val1 = 200;</div>
<div>int val2 = 110;</div>
<div>int val3 = 60;</div>
<div>int val4 = 30;</div>
<div>void setup() {</div>
<div>pinMode(sensorPin, INPUT);</div>
<div>digitalWrite(sensorPin, HIGH); //turns on the internal pull-up resistor</div>
<div>pinMode(internalLED, OUTPUT);</div>
<div>pinMode(LED1, OUTPUT);</div>
<div>pinMode(LED2, OUTPUT);</div>
<div>pinMode(LED3, OUTPUT);</div>
<div>pinMode(LED4, OUTPUT);</div>
<div>digitalWrite(internalLED, HIGH);</div>
<div>Serial.begin(9600);</div>
<div>}</div>
<div>void loop() {</div>
<div>sensorValue=analogRead(sensorPin);</div>
<div>Serial.println(sensorValue);</div>
<div>delay(100);</div>
<div>if (sensorValue &lt; val1)</div>
<div>{</div>
<div>analogWrite(LED1, sensorValue*255/(val1-val2)-val2*255/(val1-val2));</div>
<div>if (sensorValue &lt;val2)</div>
<div>{</div>
<div>digitalWrite(LED1, HIGH);</div>
<div>analogWrite(LED2, sensorValue*255/(val2-val3)-val3*255/(val2-val3));</div>
<div>if (sensorValue &lt;val3)</div>
<div>{</div>
<div>digitalWrite(LED2, HIGH);</div>
<div>analogWrite(LED3, sensorValue*255/(val3-val4)-val4*255/(val3-val4));</div>
<div>if (sensorValue &lt;val4)</div>
<div>{</div>
<div>digitalWrite(LED3, HIGH);</div>
<div>analogWrite(LED4, sensorValue*255/val4);</div>
<div>}</div>
<div>else</div>
<div>digitalWrite(LED4, LOW);</div>
<div>}</div>
<div>else</div>
<div>{</div>
<div>digitalWrite(LED3, LOW);</div>
<div>digitalWrite(LED4, LOW);</div>
<div>}</div>
<div>}</div>
<div>else</div>
<div>{</div>
<div>digitalWrite(LED2, LOW);</div>
<div>digitalWrite(LED3, LOW);</div>
<div>digitalWrite(LED4, LOW);</div>
<div>}</div>
<div>}</div>
<div>else {</div>
<div>digitalWrite(LED1, LOW);</div>
<div>digitalWrite(LED2, LOW);</div>
<div>digitalWrite(LED3, LOW);</div>
<div>digitalWrite(LED4, LOW);</div>
<div>}</div>
<div>}</div>
]]></content:encoded>
			<wfw:commentRss>http://newtextiles.media.mit.edu/2012/?feed=rss2&#038;p=1224</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pressure Sensing Glove</title>
		<link>http://newtextiles.media.mit.edu/2012/?p=1003</link>
		<comments>http://newtextiles.media.mit.edu/2012/?p=1003#comments</comments>
		<pubDate>Tue, 28 Feb 2012 13:37:02 +0000</pubDate>
		<dc:creator>rbatzer</dc:creator>
				<category><![CDATA[Resistive Sensor]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://newtextiles.media.mit.edu/2012/?p=1003</guid>
		<description><![CDATA[The goal of the project is to create a pressure sensing glove to find the force used when blowing glass to help design glass tools. The most important glass blowing tool are jacks, which are pictured below. Jacks are extremely expensive ranging from $250 to $2000 because they are hand made in low volumes. Thinner blades [...]]]></description>
			<content:encoded><![CDATA[<p>The goal of the project is to create a pressure sensing glove to find the force used when blowing glass to help design glass tools. The most important glass blowing tool are jacks, which are pictured below. Jacks are extremely expensive ranging from $250 to $2000 because they are hand made in low volumes.</p>
<p><img class="alignnone" src="https://encrypted-tbn1.google.com/images?q=tbn:ANd9GcSr2gzCTUBg-rVxY7-oSD76SCmQDV0GUXkj83-X-30XEBJV-2ftEg" alt="" width="119" height="152" /><img class="alignnone" src="https://encrypted-tbn2.google.com/images?q=tbn:ANd9GcQsZiVoNEhphegjNwatPCaGpt3LPczX0WsTCXeMuKUCgH-qcSL86w" alt="" width="160" height="160" /></p>
<p>Thinner blades are helpful when blowing because they have less thermal capacity and cool the glass less when used.  If you know the maximum force being applied to the glass, you can calculated the required blade thickness so they will not bend and therefore make them as small as possible.</p>
<p>Glass blowing is usually done with bare hands and I wanted to the gloves to interfere as little as possible. I ordered very thin liner gloves to house my pressure sensor with an unhemed liner glove on the inside and a second handed glove for the outside.</p>
<p><img class="alignleft" src="https://encrypted-tbn3.google.com/images?q=tbn:ANd9GcRv81OowksHjnaQoeUHCj41N2-K3dXG4nn20_Dpl-gtPkm1jqsXAg" alt="" width="134" height="134" /> <img class="alignnone" src="https://encrypted-tbn0.google.com/images?q=tbn:ANd9GcTk2DKh1NHEvzWXCWC28ydmL-DDmiYryiL0iqX7vXAEIH_w71kumA" alt="" width="99" height="128" /></p>
<p>For the sensor, I chose the to use a cross between the sticky tape and fabric pressure sensors because it could be very thin with  Velostat as the sensor. The graphite infused rubber had a better resistance range, but it was too bulky to integrate into a glove.  I initially tried to make the sensor using iron-on conductive fabric, but I had trouble with the fabric melting through the Velostat as seen below.</p>
<p><img class="alignnone" src="https://lh3.googleusercontent.com/-xDnRldtGN7o/T08GjAR_2SI/AAAAAAAABKo/jdVGz9F0xvI/w258-h194-k/IMG_0025.JPG" alt="" width="258" height="194" /></p>
<p>The best sensor was single layer Velostat which had higher linearity then multilayer Velostat. I used conductive fabric instead of thread for the Velostat connection because to provides more uniform sensing. The sensor read between 2k and 150k Ohms.</p>
<p><img class="alignnone" src="https://lh6.googleusercontent.com/-agzt8f_1UH8/T08GTaYNXOI/AAAAAAAABIs/d2ryQEUHZpE/s637/IMG_0029.JPG" alt="" width="229" height="172" /><img class="alignnone" src="https://lh6.googleusercontent.com/-SSouMCrHKc8/T08GTGoRrhI/AAAAAAAABLc/0u3HvlecJAk/w566-h138-k/IMG_0028.JPG" alt="" width="340" height="83" /></p>
<p>The sensor was then sewn onto the interior glove using non conductive thread to hold the conductive thread down. The inside surface of glove needs to be non-conductive because it will be used with metal tools which would short the sensor.</p>
<p><img class="alignnone" src="https://lh5.googleusercontent.com/-0zbK7V0xqvE/T08J2AlRlhI/AAAAAAAABLk/QEl6uADhuD4/s337/image" alt="" width="337" height="216" /></p>
<p>The sensor output is displayed with four LEDs and uses PWM fading with the AnalogWrite command to give finer resolution. I used the internal 35k Ohm pull up resistor which required me to use only 25% of the voltage reading range.</p>
<p><a href="http://newtextiles.media.mit.edu/2012/?p=1224">Arduino Code</a></p>
<p>The final glove worked well for showing variation in bending or squeezing, but the resistance goes too low from squeezing alone for it to work well with glass blowing. I would need to change the sensor to not be effected by bending to make it more effective.</p>
<p><img class="alignnone" src="https://lh6.googleusercontent.com/-LTLwyo7WrEU/T08GMbd6fkI/AAAAAAAABLs/AKo1Tb-w1nA/w255-h192-k/IMG_0034.JPG" alt="" width="255" height="191" /><img class="alignnone" src="https://lh3.googleusercontent.com/-qZJm96-4hRM/T08GMbCCe9I/AAAAAAAABLw/5wneX-cgOr0/s631/IMG_0035.JPG" alt="" width="227" height="170" /><img class="alignnone" src="https://lh3.googleusercontent.com/-M1FXesPEF1I/T08GVckdYpI/AAAAAAAABL8/nodWGdTJX6Y/w255-h192-k/IMG_0032.JPG" alt="" width="204" height="153" /><img class="alignnone" src="https://lh6.googleusercontent.com/-x7yU-uT3tvE/T08GGaOoiUI/AAAAAAAABMA/LbFW7hgCIj4/w209-h156-k/IMG_0045.JPG" alt="" width="208" height="156" /></p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/nvl6JuahBLk?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/JeBQf2g2qDk?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/IA62hiU5zQA?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>Calculations:</p>
<p>R_min = 2kOhms</p>
<p>R_max = 150 kOhms</p>
<p>R_pullup = 35 kOhms</p>
<p>V_max = 5V (doesn&#8217;t actually matter since LED control is from relative voltage readings, not absolute)</p>
<p>V_out = V_max * R / (R + R_pullup)</p>
<p>V_outmax = 4.05 V</p>
<p>V_outmin = 0.27 V</p>
<p>Once the sensor was installed in the glove, the pressure from just being in the glove lowered the maximum resistance to about 30 kOhms</p>
<p>V_outmax = 2.30 V</p>
<p>I used these ranges to calibrate the values for my LED turn-on.</p>
]]></content:encoded>
			<wfw:commentRss>http://newtextiles.media.mit.edu/2012/?feed=rss2&#038;p=1003</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
