Project Development

Week 18

Fabrication Process

Model 1.0_Firts Prototype

Design

This was the first model of my final prototype were I tried to synthesize all the ideas that I had along this weeks. The result was the base of developing the whole process. The learnings and the discoverings in this prototype were fundamental to solve and debug the final project.

I started with a basic model in “Rhinoceros”. This is one of the CAD software with which I feel more confident. The system consisted in a basic rack and pinion that allows me to rotate the polarizer panels in a circular motion from the linear motion of the rack.

I quickly jumped to computer controlled cutting. I decided to make a first prototype that was not completely solved. As Neil said in Invention, intellectual property and income lecture, “ready, FIRE, aim”. Don’t wait to fabricate until you have totally resolved your project. Rapid prototyping it’s the best option to learn in the way. Almost every part of this prototype was 2mm “Cast Acrylic Clear” and linear polarizer.

As I said before I “fired” having a lot of things to solve, but this prototype helped me to have things clear, realize what parts were not working correctly and think how to make it work. The images below are pretty clear, I had to work hard to correct all the mistakes of this model. Major errors of this model were: the joints were too fragile, the panels were not enough close to the base and the polarizer effect was not as I imagined. The panels were no attached to the base and fall down . The axis didn’t were aligned... among others.

Model 2.0_Second Prototype

Design

With the first prototype I could improve a lot of things, the number of parts reduced radically, and the system itself works better. I continued drawing in “Rhinoceros” thinking in on how to make a module that could be associated with others modules.

In Week 10 (input & output devices) I moved a servo with a photoresistor as input. That board was the base of the final board. The components remained the same but I added a few components to connect the whole system to a 9v battery or a battery charger in any outlet. I added the next components: (1) REGULATOR 1117 5v, (1) CAPACITOR VALUE 100uf and (1) CAPACITOR VALEU 1uf.

The next step was to milling the board. I used the same parameters that have always worked for me.

The soldering process was a bit difficult because I used a busbar (to provide voltage to the board) a little bit big for the board, and i have to solder it in a non-conventional way. Latter I changed to a double pin and that solve my problems.

Code

 /*
 Juan Pablo Gutierrez Salazar Attiny code for servo controlling 
 with help from Daniel Pineda and Manuela Bermudez.
 June 2015
  */


int analog1 = 3; //Analog Input
int pwm1 = 7; //PWM Output
int i = 0;

void setup(){

  pinMode(analog1,INPUT);
  pinMode(pwm1, OUTPUT); //pinmodes
}

void loop(){

  int an1 = analogRead(analog1); 
  int pwmServo = (int)((255.*an1)/1023.);
  analogWrite(pwm1, 1023); //set pwm                
  delayMicroseconds(pwmServo);
  analogWrite(pwm1, 0);
}

I decided to make a frame in the Shopbot CNC machine; I used a leftover of 15mm MDF. The bit I used was a ¼”. The framework had a pocket that allows the acrylic coupled with it.

The GIFT bellow shows the prototype working. The panels rotate with some difficult because the joints were not enough loose.

As you can see, the second prototype had a lot of improvements; it acquired complexity and shape. But had a lot of work to do before becoming the final model.

Final Prototype

Design

I had a system that worked, but there was something missing, the shape was not good enough and the system worked but it could be more efficient. By recommendation of my local instructor I started all over again. The purpose was clear; achieve a modular shape with more “formal richness”. I started by looking for tessellations, and any other modular shape that could be used in my final project.

In the image bellow can be seen a few the explorations that I made using “Rhinoceros”. At the end I used a hexagon module.

The basic system remains nearly the same, a planetary gear works even better than the rack and pinion of the first two prototypes. With some improvements in the joints the panels rotate pretty well. I used the software called Gear template generator for the pinions.

For the final prototype I worked also with 2mm “Cast Acrylic Clear” and linear polarizer. The reason to use the Acrylic Clear was because it is similar to glass. It is Weather-resistant; it’s resistant to mechanical stress, 100% recyclable among others. I used laser cutter to cut the basic gear system and the linear polarizer.

I also made a new board with 2 pin heads to connect the 9v battery or the charger. I also connected the photoresistor to the board with 2 jumpers in order to have the input device in the front of the prototype.

The framework took a new meaning in this prototype. I made a double sided frame with the CNC shopbot machine. I used a leftover of 15mm MDF available in our lab and cut it with the same parameters of the previous one.

In the images bellow you can see what I mentioned above, the frame was milled in both sides. The front side had the pocket were the acrylic fits, and the back side has also pockets for the board, the cables and a 9v battery adapter.

The final prototype works pretty fine, the movement is fluid, the polarizer effect is clear and the input and output fulfills their role.

This final prototype does not end here my expectations are to continue improving it and fabricate new ones. There are a few things that could be improved to make the system more efficient.