Posted by: mec1423 | July 10, 2011

My Space Balloon

I have this project that has taken about a year for me to finish that involved launching a balloon into near space and capturing pictures and footage of the earth.  I released the balloon at 7:35pm on Wednesday.  At about 7000ft, it went out of tracking range, but when it came back down to earth it never started tracking again.

However, I have not lost hope.  Someone may still find the box and call me for the $30 reward.  Here are some pictures from the project as it developed:

This slideshow requires JavaScript.

This project is almost identical to the one found described on this site, and theirs worked:

http://space.1337arts.com/

Equipment:

-Canon A550 (found in pawn shop)   $20
-Cheap flip camcorder (also from a pawn shop) $26
-Motorola i290 (ebay) $25
-Small Beer Cooler (hardware store) $2.16
-Handwarmers
-4GB (camera) and 8GB (camcorder) SD cards  $15
-300 gram weather balloon $42
(http://www.scientificsales.com/8237-Weather-Balloon-300-Grams-Natural-p/8237.htm)
-80 Cubic Foot Helium Tank (Airgas Safety) $50
-Zip Ties (for sealing the neck of the balloon)
-36 in. Parachute (http://spherachutes.com/items/spherachutes/list.htm) $31
 

Software:  All of it was free!

-I loaded my camera with CHDK so that it could take pictures at 5 second intervals:
http://chdk.wikia.com/wiki/CHDK
 
-I installed instamapper on the cell phone so that I could track it:
http://www.instamapper.com/
 
-In order to get a forecast of the balloon trajectory I used these sites:
http://weather.uwyo.edu/polar/balloon_traj.html  (This one is easier to use)
http://nearspaceventures.com/w3Baltrak/readyget.pl
 

Advice:

1.  The phone with instamapper is a really inexpensive GPS tracker.  However, it only works in areas with cellphone coverage.  Therefore, you won’ t be able to track most of the flight (no coverage above 7000 feet) and the balloon has to land in an area with coverage if you ever want to find it again.  It can really limit your possibilities depending on where you live.  If I had to do it over again, I would buy an actual GPS tracker, which can function virtually anywhere at any height.

2.  I paid way too much money for the parachute.  Go to your local hobby shop and get a big rocket parachute instead.  They’re only about $15.  Probably less.

3.  When you are filling the balloon, make sure you have it underneath a weighted down tarp or tent canvas or something like that.  My first balloon escaped me before I had anything attached; a costly mistake!

Videos that inspired me:

Edge of Space I:

Stratos I

More on this later.  Feel free to ask any questions that you may have about specific details.  I know that I had a lot when started the project.

 
Posted by: mec1423 | July 9, 2011

Bored at a Restaurant

Don’t ask.

Posted by: mec1423 | July 2, 2011

I Finished my Cube!

Here are my cube pictures.  I really like how it turned out.  I think that I could mass produce this and sell it as promotional material.  I could also put a coin slot on one side and a hole and cap on the other and turned into a sort of piggy bank.

 

This slideshow requires JavaScript.

 

Posted by: mec1423 | July 1, 2011

Day 4 – Programming and the Face

Learning how to code in Python was quite interesting.  It’s very similar to Rhinoscript so there wasn’t much of a learning curve.  I wrote a program that could generate random knot.

I really like the idea of creating organic shapes, and one of the best ways to do that is to have your script generate hundreds of random points and then to use them in whatever way you think of.

I also milled a face out of foam:

I didn’t actually draw the face myself.  I found it on Google 3D Warehouse at this link:

http://sketchup.google.com/3dwarehouse/details?mid=42067fdd5130ebcaf9e5286b0eab37fe&prevstart=24

Apparently, it was produced by a user called moon, so I give the drawing credit to him.  I just made the milling path for the CNC machine that we have.

Posted by: mec1423 | July 1, 2011

Final Project: The Fractal Cube

The goal of the project is to make a 4 inch cube out of quarter inch plexiglass.  On each side of the cube I will score a different fractal, except for one side on which I will score “All Hands on DECK 2011.”

I like to think of this as a sort of promotional material.  This cube could be mass produced and distributed as advertising for the class.  You could give it to someone and say:  “Come to All Hands on Deck.  We make cool stuff like this!”

Here are some pictures of the work in progress:

 

Posted by: mec1423 | June 29, 2011

Day 3 – Rhinocam toolpath

In the morning we worked on techniques for shaping surfaces.  One method involved creating a rectangular surface using certain geometry as such:

And then lofting those geometries.  Using the record history function, I could move the geometry and the loft would update accordingly.  I came up with these shapes.

We were taught how to use the surface sculpting function of rhinocam in order to cut these shapes out using the CNC machine.  I didn’t get around to making the toolpath for my surface though.

However I did work more on my bowl.  I laid out all the pieces flat.

And then spent a while figuring out how to make the toolpath for theses parts.

In the end, rhinocam produced the g-code, which is basically a long list of coordinates that outline the path the CNC drill bit has to take in order to cut out my parts.

Posted by: mec1423 | June 29, 2011

The Mandelbrot Set

Yesterday I generated this image of the mandelbrot set using Rhinoscript:

The actual script can be copied and pasted from the word document below into the Rhinoscript editor:

Mandelbrot.doc

So how does it work?

The Mandelbrot fractal works on the basis of this function:

Z = Z2 + C

Now the variables Z and C represent complex numbers.  The reason that Z is on both sides of the equation is that the resulting Z value can be put back into the equation in an infinite loop.  A complex number is the combination of a real and an imaginary number such as 1 + 2i where i is the square root of -1.  An imaginary number can also be expressed as a coordinate such as (1, 2).  Complex numbers can be added together or multiplied or squared just like integers.

For instance, if you wanted to add (1, 2) and (3, 4), you would go about it this way:

1 + 2i + 3 + 4i = 4 + 6i

or (4, 6)

If you wanted to multiply the two coordinates:

(1 + 2i) ( 3 + 4i) = 3 +6i – 8 = -5 + 6i

or (-5, 6)

Testing a point

With that explained, the rest is pretty simple.  The Mandelbrot set is just a test of points.  You can test any point in the x-y coordinate plane using the afore-mentioned function and what you will find out is that that point is either in the mandelbrot set or it isn’t.

Say you want to test to point (-1, 0); you will use this complex number as your C value and Z will start out as (0, 0). So,

Z = (0, 0)2 + (-1, 0) = (-1, 0)

Now you have just calculated the first iteration of that point.  (-1, 0) is now your new Z value.  For the next iteration you just feed this value back into the equation (the C value never changes, it is always your original point):

Z = (-1, 0)2 + (-1, 0) = (0, 0)

Then you can plug this value back in:

Z = (0, 0)2 + (-1, 0) = (-1, 0)

As you continue to run iterations on a point, one of two things will happen.  Either the point will eventually move away from the origin into inifinity, or it will never do so.  The points that move away into infinity are called the escape set.  The points that are effectively trapped in an area around the origin are called the prisoner set or the Mandelbrot set.  In the image above, the points shown are those that are in the M-set.

Of course it would take a person months to run 20 iterations on each point in a set of 10,000 points.  That is why, using the principles above, I had a computer do it for me.

So that is how the Mandelbrot set works.

Posted by: mec1423 | June 29, 2011

Day 2 Bowl

Well, it took me hours of work and frustration and pulling at my hair, but I finally did it:  I made a bowl.

My original bowl shape just didn’t work for making notches.  The walls were too thin.

 

So I started over with a new shape.  I kind of created a system for getting the notches by using rings that were half the width of the actual stacked rings.  I ended up with this:

 

 

Posted by: mec1423 | June 28, 2011

The Dragon Fractal

As one of my first posts, I’m going to quickly explain how to reproduce the dragon fractal in the Rhino 3D environment.

You start out with just one line like so:

Then you rotate a copy of the line 90 degrees counter clockwise, using the top of the line as your center of rotation:

Then, you rotate a copy of the two lines 90 degrees counter clockwise, using the end of your most recent line as the center of rotation:

Then you continue rotating a copy of your entire shape using the newest end as your rotation point.

Eventually you will end up with something like this.

Posted by: mec1423 | June 23, 2009

First Post

Just trying to figure out how this works and testing out the post tool.

Categories

Follow

Get every new post delivered to your Inbox.