Please visit http://OpenSCAD.DIY3DTech.com for more information on this and many other projects! As in this episode we will be looking at new water-bath which I designed in Open SCAD for a small CNC machine (a 3040 in this case) to cut and engrave various objects that either require cooling or suppression of particulate such as carbon fiber during the cutting process for safety.
Also if you looking for the mini-vice I used in this build, you can order it here: https://goo.gl/kw9oaH
You can also see other videos of this in use here:
For more information as well as the complete source code, please visit http://openscad.diy3dtech.com/modified-water-bath-design/
If your looking for looking 3D Printer, Laser Cutter and CNC Swag (T-Shirts, Hats, Mugs, etc), please support the channel by visiting our online shop at: http://swag.DIY3DTech.com
Also subscribe to our parent YouTube Channel DIY3DTech.com YouTube Channel for 3D Printing, Laser Manufacturing and CNC Machining: http://YouTube.DIY3DTech.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
/* Open SCAD Name.: WaterBath_v1.scad * Copyright (c)..: 2017 www.DIY3DTech.com * * Creation Date..: 03/25/2017 * Description....: Water Bath for small * * Rev 1: Develop Model * Rev 2: * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ /*------------------Customizer View-------------------*/ // preview[view:north, tilt:top] /*---------------------Parameters---------------------*/ brace_thick = 5.0; brace_width = 35.0; brace_opening = 7.0; box_length = 186.0; box_height = 80.0; box_thick = 3.0; box_width = 76.0; bottom_thick = 8.0; nut_size = 12.5; nut_offset = 7.2; spout_dia = 20.0; spout_open_dia = 12.0; bolt_size = 10.0; bolt_spread = 40.0; bolt_one_x = -20.0; bolt_one_y = 40.0; bolt_two_x = -20.0; bolt_two_y = 72.0; /*-----------------------Execute----------------------*/ main_module(); /*-----------------------Modules----------------------*/ module main_module(){ //create module difference() { union() {//start union //create outside of box translate ([0,0,box_width/2]) rotate ([0,0,0]) rounded(box_width,box_length,box_height,3,true); //create brace one translate ([0,(box_length*.33),(brace_thick/2)-2.0]) rotate ([0,0,0]) brace_module(); //create brace twwo translate ([0,-(box_length*.33),(brace_thick/2)-2.0]) rotate ([0,0,0]) brace_module(); //create brace for drain translate ([0,-((box_length/2)+box_thick),bottom_thick+(spout_dia/4)]) rotate ([90,0,0]) cylinder(15,spout_dia/2,spout_dia/2,$fn=60,true); } //end union //start subtraction of difference //diff out inside of box translate ([0,0,(75/2)+bottom_thick]) rotate ([0,0,0])rounded(box_width-(box_thick*2),box_length-(box_thick *2),75,3,true); //create drain hole translate ([0,-((box_length/2)+box_thick),bottom_thick+(spout_dia/4)]) rotate ([90,0,0]) cylinder(20,spout_open_dia/2,spout_open_dia/2,$fn=60,true); //create opening for nuts translate ([bolt_one_x,(box_length /2)-bolt_one_y,bottom_thick-(round(nut_offset)/2)]) rotate ([0,0,0]) cylinder(nut_offset,nut_size/2,nut_size/2,$fn=6,true); translate ([bolt_one_x+bolt_spread,(box_length /2)-bolt_one_y,bottom_thick-(round(nut_offset)/2)]) rotate ([0,0,0]) cylinder(nut_offset,nut_size/2,nut_size/2,$fn=6,true); translate ([bolt_two_x,(box_length /2)-bolt_two_y,bottom_thick-(round(nut_offset)/2)]) rotate ([0,0,0]) cylinder(nut_offset,nut_size/2,nut_size/2,$fn=6,true); translate ([bolt_two_x+bolt_spread,(box_length /2)-bolt_two_y,bottom_thick-(round(nut_offset)/2)]) rotate ([0,0,0]) cylinder(nut_offset,nut_size/2,nut_size/2,$fn=6,true); } //end difference }//end module module brace_module(){ //create module difference() { union() {//start union translate ([0,0,0]) rotate ([0,0,0]) rounded(150,brace_width,brace_thick,3,true); } //end union //start subtraction of difference translate ([0,0,0]) rotate ([0,0,0])rounded(140,brace_opening,brace_thick*2,3,true); } //end difference }//end module module rounded(x,y,z,c,center) { // c = Chamfer amount this will add (in mm) to each axis //create overlapping cubes //cube one overlapps in the X axis with chamfer "c" being doubled cube ([x+(c*2),y,z],true); //cube two overlapps in the Y axis with chamfer "c" being doubled cube ([x,y+(c*2),z],true); //end overlapping cubes //create corner circles translate ([-(x/2),-(y/2),0]) { cylinder( z,c,c,$fn=60,true); } translate ([-(x/2),(y/2),0]) { cylinder( z,c,c,$fn=60,true); } translate ([(x/2),-(y/2),0]) { cylinder( z,c,c,$fn=60,true); } translate ([(x/2),(y/2),0]) { cylinder( z,c,c,$fn=60,true); } //end coner circle } //end module /*----------------------End Code----------------------*/ //translate ([0,0,0]) rotate ([0,0,0]) cylinder(5,3,3,true); //translate ([0,0,0]) rotate ([0,0,0]) cube([18,18,18],true); //translate ([0,0,0]) sphere($fn = 0, $fa = 12, $fs = 2, r = 1); //translate ([0,0,0]) rotate ([0,0,0]) rounded (15,15,1,1,true); |
More Ideas!
OpenSCAD – Designing a Compression Cover!
OpenSCAD – Designing a Pressure Fit Endcap!
Open SCAD – Complex Flange Designer!