-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCADMachine.html
More file actions
117 lines (117 loc) · 5.82 KB
/
Copy pathCADMachine.html
File metadata and controls
117 lines (117 loc) · 5.82 KB
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
<!doctype html>
<html>
<head>
<link href="styles.css" rel="stylesheet">
<meta charset="utf-8">
<title>CAD and Machinery</title>
</head>
<body>
<header id="header">
<section class = "headerContainer">
<h2 class="headerName">Jeremy<br>       Murray</h2>
<h3 class="headerContact">Contact me at: <br> <a href="mailto: jermurray2@gmail.com" id="emailLink">jermurray2@gmail.com</a></h3>
</section>
<nav class="navContainer">
<button class="navButton" onclick="window.location.href = 'Index.html';">Home</button>
<button class="navButton" onclick="window.location.href = 'FTCRobotics.html';">FTC Robotics</button>
<button class="navButton" onclick="window.location.href = 'DevBlog.html';">DevBlog</button>
</nav>
</header>
<section id="aboutContainer">
<img src="Imgs/Drawer%20Slides.png" id="selfPic">
<div id="aboutText">
<h4 id="aboutTitle">CAD and Machinery</h4>
<p><br>The team uses Autodesk Inventor in Computer Aided Design (CAD). We can use these CADs to better visualize software, or to create
custom parts through the machine's in our schools techlab. Scroll down for more info on what I've done with CAD as well as the machines that we use.</p>
</div>
</section>
<section class="quoteContainer">
<h4 class="quoteText">"Sometimes life is too uncertain to have regrets."</h4>
<h5 class="quoteCite"><i>-Son Goku</i></h5>
<img src="Imgs/Goku.png" class="quoteImg">
</section>
<section class="standardContainer">
<div class="standardTextBox">
<div class="standardTextBoxSub">
<h4 class="standardHeader">Custom Elevator System</h4>
<p>To the right is an elevator that I design in Autodesk Inventor. This elevator uses custom parts out of hollow aluminum bars and plates, as well as
imported parts from STEP designs provided by manufactures.</p>
</div>
</div>
<div class="standardImageBox">
<img src="Imgs/elevator.PNG.png"class="standardImg">
</div>
</section>
<section class="standardContainer left">
<div class="standardTextBox">
<div class="standardTextBoxSub">
<h4 class="standardHeader">CAMaster Stinger II CNC Router</h4>
<p>The router is capable of cutting simple plates of materials, most commonly aluminum, into custom plates for our robot. This was the machine used to create
the custom plates for our drivetrains during the 2019-2020 season.</p>
</div>
</div>
<div class="standardImageBox">
<img src="Imgs/Router.jpg" class="standardImg">
</div>
</section>
<section class="standardContainer">
<div class="standardTextBox">
<div class="standardTextBoxSub">
<h4 class="standardHeader">Tormach 1100 PCNC Mill</h4>
<p>Simply called "The Mill" in the techlab, it's a machine capable of creating custom parts from CADs and can work on more complex pieces than a Router.
We've used this to cut custom aluminum bars for our drivetrain as well as a prototype elevator system during the 2018-2019 season.</p>
</div>
</div>
<div class="standardImageBox">
<img src="Imgs/tormach.jpg"class="standardImg">
</div>
</section>
<section class="standardContainer left">
<div class="standardTextBox">
<div class="standardTextBoxSub">
<h4 class="standardHeader">Lathe</h4>
<p>The tech lab also grants access to a Lathe, which we've used to create custom spacers, as well as custom axles for our odometry wheels in the 2019-2020 system.
(Note: This picture was taken for aesthetic purposes, machine power was off, and the piece was not worked on with omni wheels or retention rings attached.)</p>
</div>
</div>
<div class="standardImageBox">
<img src="Imgs/Lathe2.PNG" class="standardImg">
</div>
</section>
<section class="standardContainer">
<div class="standardTextBox">
<div class="standardTextBoxSub">
<h4 class="standardHeader">Robots to the Rescue Competition</h4>
<p>When the 2020 FIRST season was canceled, FIRST worked with ONSHAPE to create a challenge where students would CAD robots that could solve a world problem.
I teamed up with several students from NEMESIS Prime, and CADed together a robot to submit for the competion. The attached picture is
of one of the sides of the drive train that I designed for the competition.</p>
</div>
</div>
<div class="standardImageBox">
<img src="Imgs/RRRCAD2.PNG" class="standardImg">
</div>
</section>
<section class="standardContainer left">
<div class="standardTextBox">
<div class="standardTextBoxSub">
<h4 class="standardHeader">Teaching Others</h4>
<p>NEMESIS Prime strives to spread our knowledge of STEM skills to others, as such, two other members and I have planned and taught two different lessons on CAD
software. The first one was hosted at our high school, where we taught students of VEX robotics teams from the area about Autodesk Inventor. For the second, we went
to Cinnaminson High School and taught students there about ONSHAPE, a free, browser and cloud-based software.</p>
</div>
</div>
<div class="standardImageBox">
<img src="Imgs/Cinnaminson.jpg" class="standardImg">
</div>
</section>
<section class="quoteContainer">
<h4 class="quoteText">"If my mind can conceive it, and my heart can believe it - then I can achieve it."</h4>
<h5 class="quoteCite">-Muhammad Ali</h5>
<img src="Imgs/Ali.png" class="quoteImg">
</section>
<footer class="footer">
<p>©Copyright 2020 Jeremy Murray</p>
</footer>
<script src="siteJS.js"></script>
</body>
</html>