-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaddle.scad
101 lines (66 loc) · 2.15 KB
/
paddle.scad
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
/* Marc Amil
Project date: 28/12/2020
Deadline: 30/12/2020
PROJECT: PROPELLER FOR MYCELIUM BIOREACTOR
four bladed paddle used for a mixing close to the bottom of a tank.
*/
//
//////////////////////////////////////////////////////////////////////////////PARAMETERS////////////////////////////////////////////////////////////////////////////////////
// I assume that every unit is in mm
$fn = 100;
//BLADE PARAMETERS
blade_length = 100;
blade_width = 2;
blade_height = 50;
//HINGE PARAMETERS
hinge_height = 15;
hinge_width = 5;
hinge_length = 5;
//CORE PARAMETERS
outercore_height = 30;
outercore_radius = 15;
innercore_height = 60;
innercore_radius = 10;
////////////////////////////////////////////////////////////////////////////RENDERS////////////////////////////////////////////////////////////////////////////////////////
core();
translate([20, 0, 25])
union(){
hinge(hinge_height, hinge_width, hinge_length);
blades(blade_height, blade_width, blade_length);
}
mirror([1,0,0])
translate([20, 0, 25])
union(){
hinge(hinge_height, hinge_width, hinge_length);
blades(blade_height, blade_width, blade_length);
}
rotate([0,0,90])
translate([20, 0, 25])
union(){
hinge(hinge_height, hinge_width, hinge_length);
blades(blade_height, blade_width, blade_length);
}
mirror([0,1,0])
rotate([0, 0, 90])
translate([20, 0, 25])
union() {
hinge(hinge_height, hinge_width, hinge_length);
blades(blade_height, blade_width, blade_length);
}
//
/////////////////////////////////////////////////////////////////////////////MODULES/////////////////////////////////////////////////////////////////////////////////////
module core(){
difference(){
cylinder(h = outercore_height, r = outercore_radius, center = true);
cylinder(h = innercore_height , r = innercore_radius, center = true);
}
}
module hinge(hinge_height, hinge_width, hinge_length){
translate([-5, 0, -35])
cube([hinge_width, hinge_length, hinge_height]);
}
module blades(blade_height, blade_width, blade_length){
rotate([0, 90, 0])
translate([-1, 1, -1])
cube([blade_height, blade_width, blade_length]);
}