Skip to content

Computer Controlled Cutting

Starting up with this assigmnet I have leared a new term called "RTFM".

The user manual is important to read to know how to use the machine and It’s a good start to learn about what the machine can or cannot do. Safety comes first! so make sure that the surroundings of the printer is dust free, clean and far from falling objects.

Disconnect the printer if you’re not using it for long and keep your hands away while the machine is printing. Before printing anything I need to load the material correctly and initiate a test cut to determine how much force is needed to perfectly cut out a shape from the material.

Note: “The material used must be clean, dust free and flat! Flatten and clean the material before use.”

ROLAND GX-24

photo of a clean cut

Loading the material

  1. Load the material into the ROLAND GX-24 by lowering the loading level located at the back of the printer.
  2. There are grits on the printer that are guidelines for the printer to determine where it will be cutting.
  3. Place the material so it’s aligned with the grits.
  4. Place the pinch rollers on their verification marks.
  5. Align the material so it’s parallel with the guidelines of the printer.
  6. Raise the loading level to lock on the material.

The needle was pre-installed and ready to go, but we took a moment and investigated how the needle is loaded and functions.

Test cut

The test cut is the most important step taken in the cutting process because we determine how much force is needed to cut through the material. Make sure that the correct drivers are installed and that connection to the vinyl cutter are right.

  1. Turn on the printer.
  2. Set the pen force to (0) located on the printer.
  3. On printer display choose the type of sheet you’ll be using and press enter.
  4. The cartridge moves, determines and shows the dimensions of the piece on the display.
  5. Press the test button for two seconds and the machine should commit the test.
  6. Press the down button on the printer to feed the piece towards you.

2th the rectangle, the force was set to 50 GF.

I repeated the process to do another test with 55 GF and the circle came off clean.

To change the force of the you need to:

  1. Press the force button located on the printer.
  2. Using the left and right arrow to increase or decrease value.
  3. Press enter.
  4. Using the arrows you can locate the next cut. “Keep it close to the first location you tested.”
  5. Press the test button for two seconds again

Result:

photo of a clean cut

Cutting

For cutting I’m going to use the triangle I designed on the computer aided design week.

  1. First we need to set the height and width of the paper we get the dimentions from the printer once we load the paper. photo of a clean cut

  2. Since we are cutting we only going to need the strokes, set stroke width to Hairline. photo of a clean cut

  3. For printing on the correct dimentions go to printing prefrecences and click on get from machine and then print. photo of a clean cut

Result:

photo of a clean cut

Parametric Press-Fit Construction Kit

Inkscape

For creating the fit kit I went through the Fab Academy tutorial I find them very useful and helpful.

  1. Start by drawing a square.
  2. Draw a smaller rectangle and center align it with the square. vector_image
  3. Click on the rectangle and go to: object/ raise to top.
  4. Select both object and go to: path/ difference. vector_image
  5. Create a square and object/ transform 45 degrees and overlay it on the offset we created. vector_image
  6. Use snapping to lay the square in the middle of the intersecting object. vector_image
  7. Select both objects and go to: path/ difference. vector_image
  8. Repeat step 5,6 for other side of the object. vector_image
  9. Select object go to: path/ object to path.
  10. Select nodes and then click on break path. vector_image
  11. Ctrl – Shift – K to commit the function. vector_image
  12. With this part i'll be able to create different shapes for my press kit. vector_image

Results:

vector_image

OpenSCAD

During last weeks recitment our regional mentor Ohad asked me to check a 3D modeling software called OpenScad. OpenScad works on code, making all the parameters entered symmetric. I found plenty of information regarding this beautiful software right in it’s help menus cheat sheet. Going through the cheat sheet you can find plenty of information and video tutorials, what I really liked about this software is it’s simplicity and precision.

I'm using Ubuntu and OpenScad doesn't support it’s newer versions due to build failures but you can download OpenScad PPA repositories which work just fine.

Installation:

  1. sudo add-apt-repository ppa:openscad/releases.6
  2. open software update and edit OpenScad repositories and change distribution from cosmic to bionic.
  3. sudo apt-get update
  4. sudo apt-get install openscad

press fit kit openscad

Code


joint=8;
difference() {
cylinder (h = 1, r=50, center = true, $fn=100);

    for(i=[0:512])
        rotate ([0,0,i*360/joint])


    translate([0,60,0]) 
    cube([2,50,4], center = true);

}

Tolerance Sheet

After doing a couple of tutorials I got a picture of what I need to create a tolerance test sheet.

I used simple commands to create a test comb, the commands I used are cube, translate and difference.

  1. I started by creating the cube and setting the dimensions of the rectangle. vector_image
  2. Creating another object to define it’s dimension - offset @ 4 mm. vector_image
  3. Duplicating the cubes and dropping the offset @ 3.60 mm vector_image
  4. Adding the command “difference” to subtract the from the primary object. vector_image

Code

//Tolerance Sheet

//Cube
difference(){
    cube ([105,30,4]);

    //offsets

    translate([10,0,0])
    cube([4,15,4]);

    translate([20,0,0])
    cube([3.95,15,4]);

    translate([30,0,0])
    cube([3.90,15,4]);

    translate([40,0,0])
    cube([3.85,15,4]);

    translate([50,0,0])
    cube([3.80,15,4]);

    translate([60,0,0])
    cube([3.75,15,4]);

    translate([70,0,0])
    cube([3.70,15,4]);

    translate([80,0,0])
    cube([3.65,15,4]);

    translate([90,0,0])
    cube([3.60,15,4]);

}

Note:

Use this command to export your files to DXF projection(cut=false) import("/Users/josephzakarian/desktop/ts.stl"); this is a good documentation OpenSCAD to DXF on how to convert your OpenSCAD files.

Laser Cutting

The most important thing is safety! The laser system uses high intensity beam light that can generate high temperatures when it comes into contact with materials being engraves or cut. Some materials are highly flammable when using never keep the laser unattended, keep the area around the machine clean, always keep maintained and have a fire extinguisher close to the machine. Read the Epilog Mini Helix - 40 Watt manual before use.

Group Assignment

Testing the lasercutter’s focus, power, speed and frequency rate using cardboard. knowing the thickness and type of the material will help us determine the speed and power recommended to cut or engrave the material. If you're using the 40 Watt - Epilog Mini/Helix open the owners manual to page: 197 for speed and power recommendations.

The thickness of the carbboard varies from 3.85cm - 4.00cm. cardboard

We want to create a range of tests with speed, power and frequency by drawing an object and values, a test sheet. For cuting an object you need to select the outline width to Hairline and for engraving by selecting a Solid Fill to the object.

Hairline, no fill for vector cutting... cardboard Solid fill, no hairline for engraving... cardboard

Quick Start

Test Sheet

  1. Turn on the power and wait for a "Beep".

  2. Load the material to printer alligned with the rulers on the upper corner.

  3. Using the Manual Focus Gauge we need to manually set the focusing point of the laser to have clean cuts and results, on printer control panel select focus and by using the arrows on the panel make the triangle close to the material, once done flip back the gauge. cardboard

  4. Turn on the exhaust and filter.

  5. Close the door and on your software go File, Print select your printer then click on Preferences. cardboard

  6. By changing the values from low to high, this is the result we got which will help us determine the power, speed and frequency used.

By adding the values to Corel Draw one by one we were able to determine the right power for the material. cardboard cardboard

Tolerance Sheet

The after cutting the sheet which I designed beforehand on OpenSCAD we found out this the value of 3.60 mm is the the best overall because it fit perfectly, I will use this number for my press fit kit. cardboard

Press Fit Kit

Here are the shapes I created on OpenSCAD imported on Corel and aligned accordingly. Press Fit Kit Hero Shot

  1. The first try was not successful because I didn't re-focusing the gauge. always refocus the printer even if you’re using the same material. Press Fit Kit Hero Shot

  2. I'll go through the same process again, but before cutting the whole board I did a test and found out that I need to increase the power by 5% and found the results to be excellent. Press Fit Kit Hero Shot

Hero Shot

Press Fit Kit Hero Shot

Conclusion

Going through the lab machines I found the laser cutter to be on top of the list favorite machine due to its speed and precision. These are great machines that can bring ideas to reality. The process from starting with a parametric 2D object on your computer and having that file as a real 3D object is the most exciting part. Getting to know more about open-source CAD softwares made me think twice about paid softwares. Coding an object on OpenSCAD without having a background in coding is a great way to learn coding “fact”.

Design Files

File Type
Tolerance Sheet .scad
Press Fit Kit - OpenSCAD .scad
Inkscape - Press Fit Kit .FCStd

Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.