Please visit http://OpenSCAD.DIY3DTech.com for more information on this and many other projects! As in this episode we will be finialy building that that 40mm to 500mm fan adapter for the extruder of the Wanhao as I simply stuck the Allen wrench in there just one to many time plus it needs more air dosen’t it? As you you never can enough cool air right! But in all seriousines this model shows how build up simple manifolds in Open SCAD which is a handy ability for have.
Wanhao 40mm Extruder Cooling to 50mm Adapter:
http://www.thingiverse.com/thing:1917376
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 140 141 142 143 144 145 146 147 148 149 150 |
/* Open SCAD Name.: wanhao_50mm_fan_v1.scad * Copyright (c)..: 2016 www.DIY3DTech.com * * Creation Date..: Nov 24th 2017 * Description....: 50mm fan adapter for Wanhao i3 * * 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---------------------*/ cap_head = 7; /*-----------------------Execute----------------------*/ wanhao_50mm_fan_adapter(); /*-----------------------Modules----------------------*/ module wanhao_50mm_fan_adapter(){ //create module difference() { union() {//start union //create basic shape translate ([0,0,0]) create_case(); translate ([0,50,0]) fan_50mm_stanchion(); translate ([0,0,0]) fan_40mm_stanchion(); } //end union //start subtraction of difference translate ([0,50,0]) fan_50mm_hole(); translate ([0,0,0]) fan_40mm_hole(); } //end difference }//end module wanhao_50mm_fan_adapter (main) module create_case() { difference() { union() {//start union //create basic shape translate ([0,6,0]) rounded (40,50,10,3,true); translate ([0,50,0]) rounded (50,50,10,3,true); } //end union //start subtraction of difference //open up inside my creating a smaller version translate ([0,15,0]) rounded (36,40,7,1,true); translate ([0,50,0]) rounded (30,30,7,1,true); translate ([0,50,1.5]) cylinder(10,(47/1.5)/2,47/2,$fn=60, true); translate ([0,0,-1.5]) cylinder(10,37/2,(37/2)/2,$fn=60, true); } //end difference }//end modulecreate_case module fan_50mm_stanchion() { //create fan mounting stanchions translate ([20,20,0]) cylinder(10,8.4/2,8.4/2,$fn=60, true); translate ([-20,-20,0]) cylinder(10,8.4/2,8.4/2,$fn=60, true); translate ([20,-20,0]) cylinder(10,8.4/2,8.4/2,$fn=60, true); translate ([-20,20,0]) cylinder(10,8.4/2,8.4/2,$fn=60, true); } //end module 50mm_fan module fan_40mm_stanchion() { //create fan mounting stanchions translate ([16,16,0]) cylinder(10,8.4/2,8.4/2,$fn=60, true); //translate ([-20,-20,0]) cylinder(10,8.4/2,8.4/2,$fn=60, true); translate ([16,-16,0]) cylinder(10,8.4/2,8.4/2,$fn=60, true); //translate ([-20,20,0]) cylinder(10,8.4/2,8.4/2,$fn=60, true); } //end module 50mm_fan module fan_50mm_hole() { //create pass though holes in fan mounting stanchions translate ([20,20,0]) cylinder(12,3.8/2,3.8/2,$fn=60, true); translate ([-20,-20,0]) cylinder(12,3.8/2,3.8/2,$fn=60, true); translate ([20,-20,0]) cylinder(12,3.8/2,3.8/2,$fn=60, true); translate ([-20,20,0]) cylinder(12,3.8/2,3.8/2,$fn=60, true); } //end module 50mm_fan module fan_40mm_hole() { //create pass though holes in fan mounting stanchions translate ([16,16,0]) cylinder(12,3.8/2,3.8/2,$fn=60, true); //translate ([-15,-15,0]) cylinder(12,3.8/2,3.8/2,$fn=60, true); translate ([16,-16,0]) cylinder(12,3.8/2,3.8/2,$fn=60, true); //translate ([-15,15,0]) cylinder(12,3.8/2,3.8/2,$fn=60, true); //create cap head pocket in fan mounting stanchions translate ([16,16,3]) cylinder(5,cap_head/2,cap_head/2,$fn=60, true); //translate ([-15,-15,2.6]) cylinder(5,5/2,5/2,$fn=60, true); translate ([16,-16,3]) cylinder(5,cap_head/2,cap_head/2,$fn=60, true); //translate ([-15,15,2.6]) cylinder(5,5/2,5/2,$fn=60, true); } //end module 40mm_fan module rounded(x,y,z,c,center) { /* variables: * x = X Axis length * y = Y Axis Length * z = Z Axis Height * 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 rounded /*----------------------End Code----------------------*/ |
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
More Ideas!
OpenSCAD – Designing a Compression Cover!
OpenSCAD – Designing a Pressure Fit Endcap!
Open SCAD – Complex Flange Designer!