I have uploaded a locked Excel spreadsheet to the google drive. This spreadsheet contains the grades that have been recorded for
Pre-Lab 1
Pre-Lab 2
Pre-Lab 3
Quiz 1
Quiz 2
SolidWorks mini-project 1
Please review the grades and send an email to your TA if you come across an error or have a question. The TA's are
Christie Bielmeier
Sections 804, 805, 806
christie_bielmeier@student.uml.edu
Pengtao (Peter) Wang
Sections 801, 803, 808
pengtao_wang@student.uml.edu
Kevin Truong
Sections 802, 807, 809
kevin_truong@student.uml.edu
A number of students have made mistakes sending in their quizzes and their quiz grades are listed as QNF (quiz not found). At the present time, the TA's are looking through the email directories in an effort to locate these misplaced quizzes.
I have included in the spreadsheet a calculation of each student's current grade in the class - the results (see below) are not encouraging.
I would normally expect that most students would have either an A or B grade in this course. To find that 53% of the class presently have a C or lower does not bode well for the rest of the semester.
Create a six-bar linkage assembly in SolidWorks and perform a motion analysis
The six bar mechanism is an approximation of a design from the text "Mechanisms in Modern Engineering Design, Vol 1" by I. I. Artbolevsky which was published by the USSR Academy of Sciences in 1947. The following image is from the text...
The mechanism that you are going to create in this challenge is only an approximation of this design because the ratio of the lego beam lengths do not match those stated in the design. You may want to repeat the design of the assembly using parts of your own design to see if this mechanism actually creates straight-line motion.
Step 1
Create a new SolidWorks assembly and create the six-bar linkage shown below using the Lego parts that are available here.
The parts required for the assemble are:
beam_3
beam_7
beam_11
beam_13
beam_15
The assembly can be created using only two types of mates:concentric and coincident.
Note that this assembly is configured such that the beams do not pass through each other when the mechanism is actuated. The parts can be thought of as being connected by "virtual pins" but the coincident and concentric mates are sufficient to define the geometry.
Step 2
Add a motor to the input link (beam_3) and use it to drive the mechanism.
The following video shows how to add a motor to an assembly and perform a motion analysis. The second video shows the resulting motion for the 6-bar assembly.
The third video below shows another linkage that is a bit more challenging... If you are able to complete the 6-bar linkage, go ahead and give this one a shot. This assembly uses the following parts:
3D printers that run on FDM Technology build parts layer-by-layer by heating thermoplastic material to a semi-liquid state and extruding it according to computer-controlled paths.
FDM uses two materials to execute a print job: modeling material, which constitutes the finished piece, and support material, which acts as scaffolding. Material filaments are fed from the 3D printer’s material bays to the print head, which moves in X and Y coordinates, depositing material to complete each layer before the base moves down the Z axis and the next layer begins.
PolyJet 3D printing is similar to inkjet document printing. But instead of jetting drops of ink onto paper, PolyJet 3D printers jet layers of liquid photopolymer onto a build tray and cure them with UV light. The layers build up one at a time to create a 3D model or prototype. Fully cured models can be handled and used immediately, without additional post-curing. Along with the selected model materials, the 3D printer also jets a gel-like support material specially designed to uphold overhangs and complicated geometries. It is easily removed by hand and with water.
PolyJet 3D printing technology has many advantages for rapid prototyping, including superior quality and speed, high precision, and a very wide variety of materials. Based on PolyJet technology, Objet Connex 3D Printers from Stratasys are the only additive manufacturing systems that can combine different 3D printing materials within the same 3D printed model, in the same print job.
Applications
Cortex is a 3D printed exoskeletal cast designed to be fit around the wearer and snapped shut with fasteners.
The following are isometric views of the parts that you are to create for the LAB 3 CAD challenge. I had mentioned to some students that I would post my solutions so that they could double check their work...
You may or may not be aware that Amazon provides students with a six-month free trail for Amazon Prime - this service provides free two-day shipping on many items
If you do this you can order an Arduino kit via Amazon and have it in hand sometime on Tuesday.
The past two lab meetings have provided an introduction to the Arduino Board. By this time you should be relatively comfortable with
Connecting the Arduino board to the PC, selecting the correct board type and selecting the correct COM port.
Using the digitalWrite function to "blink" an LED
Using the digitalRead function to accept input from a push button
(this of course assumes that you actually have a board - if you don't have one, please read the previous post, and try to get together with someone who has a kit to go through the following exercises)
Pre-Lab Task 1 - SIK Circuits
The Sparkfun Inventors Kit Guide provides instructions for 15 circuits. You should set up and run the following circuits...
Circuit 1 - Blinking a LED .... we have already done this
Circuit 2 - Potentiometer .... introduction to AnalogRead function
Circuit 3 - RGB LED .... introduction to Pulse Width Modulation (PWM)
Circuit 4 - Multiple LEDs .... this has been demonstrated in lab - see blog post on LED Array
Circuit 5 - Push Buttons .... this is a variation of what was covered in this week's lab
Circuit 8 - A Single Servo .... its time to get stuff moving...
Pre-Lab Task 2 - LED's, Buttons and functions
Set up the multiple LED circuit shown in the Lab 3 blog post. Once you have the circuit configured load the code and test the circuit. Then print out the code and examine it carefully to see how functions are used to create more readable code.
See if you can figure out how to add in a function that can be used to control the position of a servo motor as well as the indicator light. This is show in the video below...
You should have this circuit laid-out on your breadboard when you come to lab next week.
Pre-Lab Task 3 - Video Tutorials
The following three videos should complement the preceding two tasks and hopefully provide you with some additional insight on how to get the Arduino to do your bidding...
I have had no luck getting Sparkfun to provide me with an estimated ship date for the kits... I am rather frustrated with the company and have told them that I am going to provide those of you who still do not have kits with a list of alternate suppliers.
So if you have already paid money to the bookstore request you money back...
If you need a kit, I would request that you order one of these kits from Adafruit Industries...
Microprocessors can be used to read signals from the outside environment.
The command that can be used to read the state of a digital pin is digitalRead.
A simple way to see how this works is to use a pushbutton to toggle the voltage of an I/O pin between +5V and ground.
The following circuit created using Frizting shows one possible way that this can be accomplished.
So what's happening here??
The Arduino board is used to supply both +5V and GND to the rails of the breadboard.
The left pushbutton is used to light an LED in a simple electrical circuit.
The right pushbutton is used to control the voltage state of digital I/O pin 2.
Pin 2 is connected to both one leg of the pushbutton and to +5V through a 10k resistor. So when the button is open, pin 2 is HIGH.
The other leg of the pushbutton is connected to GND. When the button is closed the voltage of Pin 2 is "pulled-down" to GND.
The state of Pin 2 is determined using digitalRead in the program loop. When the program determines that the button has been pushed, it sends a digitalWrite(13, HIGH) this results in the other LED to turn on.
There a a few more things that need to be explored and these will be covered in lab.
Using the above set-up explore the behavior of the example Sketches...
Button
StateChangeDetection
Debounce
After this exploration - take a look at the following code that combines some of these ideas together.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Modify the circuit such that indicator LED's are connected to pins 9, 10, 11, and 12.
The following code is a variation of the above code where functions are used to better define what is happening.
The Loop section only contains calls to a series of user defined functions and then updates to loop variables. The functions called are
debounceButton - this checks the current state of the button
checkForChange - this checks to see if the button has switched state (HIGH to LOW or LOW to HIGH)
getButtonNumber - this will increment the button counter it a change from a HIGH to LOW button state has been detected
indicatorLight - this turns on the LED associated with the button value. Either LED 1, 2, 3, or 4, on the 5th button push all LED's are tunred off.
The code for this setup is shown below the video...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Arduino code - Example of how to use a single push-button to cycle through a number of choices. This example code uses functions to:
** debounce the button
** check the state of the button
** keep track of the current selection of the push button (in this case 1, 2, 3, 4, or 5)
** turn on an LED on the board that corresponds to the button selection
** a dummy function is included that can be used to set the condition of some device (motor speed, servo position, etc...) that corresponds to the button choice.
One of the students in the class created a project that uses a sine wave to control an array of LED's. A pushbutton allows the user to toggle between different input modes and a potentiometer is used to adjust the parameter in each mode - phase, wave speed and brightness.
This project introduces two new functions, analogWrite and analogRead. The analogWrite function names use of pulse-width modulation (PWM) to control the brightness of the LED's. The analogRead function is used to read the value of the potentiometer. You can explore these two functions using the Arduino Example sketches...
The code is also a very nice example of both how to use functions to make your code easier to read and the proper use of comments to provide clarity.
Here is a video of the system in action. The code used to create this set-up is listed after the video.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A few students have inquired if there is any way to make certain that they have completed 100% of the Solid Professor Pre-Lab material. At the present time, Solid Professor does not provide any indication on the Home Tab as to the percentage of an assignment that has been completed. You can only see the list of te assignments and the total duration of the video tutorials.
In order to verify that you have completed all the sections of each Pre-Lab assignment, you need to verify that each section of the assignment is followed by the icon that looks like an eye. As you complete each video or download the hands-on exercise, you should notice that the icon appears for that portion of the assignment. If the eye icon does not appear, you may need to reload the page.
In lab this week we got started with the Sparkfun kit and hopefully you all got acquainted the Sparkfun RedBoard (a.k.a. the Arduino Uno).
I believe that all the groups working with the board got the Blink program to work and were able to "blink" the on-board blue LED that is connected to Pin 13. Some groups were able to progress to setting up multiple LED's on the breadboard.
I noticed that some groups were doing this without using a current limiting resistor. Hooking up the LED without the resistor results in a maximum current from the I/O pin and this situation can end up "killing" the pin and can also burn out the whole ATmega328 chip.
You can read about this on the web - google "arduino max current", here is a summary...
LED Array and other circuits
I would encourage those of you with kits to go ahead and explore the kit and create a bunch of the test circuits. I would also like to share a couple circuits and sketches with you.
The first of these is and LED array. The following images show both the actual circuit on the breadboard and then three diagrams of the same circuit that I created using the Fritzing utility.
LED Array setup on Sparkfun breadboard
Diagram of circuit created using Fritzing
Schematic of circuit created using Fritzing
PCB layout for LED Array using Fritzing
Code samples
If you construct this circuit you can use it to run a number of test programs that you can use to explore some elements of C coding.
The Arduino sketches are below.
BlinkTwo - as the name implies, this program demonstrates how to set the sketch to blink two LEDs in unison.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BlinkTwoAlternate - as the name implies, this program demonstrates how to set the sketch to blink two LEDs in an alternating pattern.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LEDarray - this sketch uses the C array construct to simplify the process of setting up and running multiple LEDs. This code also introduces the use of the For Loop and IF and IF-Else constructs. Use this program o create the Knight-Rider effect.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I called Sparkfun today to check on the status on the next (and final) shipment of Arduino kits. When I spoke to the customer service representative, I learned that Sparkfun is located in Boulder, CO. You may have heard that they have had a bit of rain in the past week...
Well - their Boulder facility had to close for four days due to the flooding and they fell a bit behind schedule. The UML order is a priority item for them and the order will ship overnight on Monday, so the remainder of the boards should be in by mid-afternoon on Tuesday.
Fingers crossed!!
Lecture
In order to accommodate the 180+ students in 22.201, there are two lecture sections - one on Monday at 10:00 AM (-201) and the other on Wednesday at 10:00 AM (-202).
In a perfect world the students that attend the Monday lecture would then attend the lab sections that meet on Monday (-804, -806) and Tuesday (-801, -807, -803) and the students who attend the Wednesday lecture would then attend the lab sections that meet on Wednesday (-805, -808) and Thursday (-802, -809). But of course we don't live in a perfect world...
However...we can make it a little bit better by allowing you to attend the lecture session that will maximize your lab experience. So if you attend a Monday or Tuesday lab and are scheduled for the Wednesday lecture, please feel free to attend the Monday lecture if it fits into your schedule. And likewise if you attend a Wednesday or Thursday lab, feel free to attend the Wednesday lecture.
If you wish to do this, there is no need to make it "official" by switching sections in ISIS. Just show up....
Fritzing
Many of the following posts that deal with the Arduino board will contain images created using the open-source program called Fritzing.
It is a great program for documenting your projects and providing you the necessary tools to create custom PCB's (printed circuit boards) that are based on your designs. I recommend that you check it out at Fritzing.org
I was informed yesterday that the bookstore had received another shipment of the Sparkfun Kits. I don't know how many but please make and effort to get yourself one before lab this week.
Also...please, please, please, play with these kits. you do not need to wait until you come to lab to start using these things. They are FUN....
As stated on the course syllabus - the grading for the Solid Professor Pre-Labs is binary. If you have completed all the materials (16/16 for Pre-Lab 1) and (18/18 for Pre-Lab 2) you receive credit - a grade of 1. If you have not completed all the materials you do not get credit - a grade of 0.
Also - in order to receive credit for a Pre-Lab you must complete all the previous exercises...
If you complete all 18 modules of Pre-Lab 2 but have skipped some of the modules of Pre-Lab 1, you will not receive credit for either Pre-Lab. The reason for this is that the tracking software only reports a cummulative effort. The figure shows an example of the output from the reporting utility
All of you should plan on joining at least one of the main engineering societies. We will be discussing this during one of the lectures. This Thursday there is an informational session about the UML student chapter of the American Society of Mechanical Engineering.
Course documents and supplemental materials will be placed into a Google Drive folder.
The course syllabus and schedule is located in the Course Documents subfolder.
Copies of the Powerpoints I use during the course lectures are contained in the Lectures subfolder.
Practice material is located in the SolidWorks Practice Material subfolder.
I have uploaded a PDF document to the Practice Material Folder that contains many parts that you can use to challenge yourself. I have put a couple examples below.
Subscription to SolidProfessor (see
blog for details)
Sparkfun Inventor’s Kit (see blog for
details)
Grading
Completion of Pre-Labs
5%
Lab Quizzes
20%
SolidWorks mini-projects
15%
Arduino mini-projects
15%
Group Design Project
20%
SolidWorks Final Exam
25%
Scale
A
94% - 100%
B-
80% - 82%
D+
66% - 69%
A-
90% - 93%
C+
76% - 79%
D
60% - 65%
B+
86% - 89%
C
73% - 75%
F
< 60%
B
83% - 85%
C-
70% - 72%
Lecture Topics:
Lecture 1
Course Overview
Introduction to “Makers”, Resources
Lecture 2
Arduino Introduction
Hand drawing: free sketching, using a straightedge, isometric
projections)
Lecture 3
Arduino Tutorials / Arduino Libraries
/ The C programming language
Hand drawing: orthographic projections
Lecture 4
Introduction to rapid prototyping
3D printing, laser cutting, CNC routers, STL files, feature resolution, use
in industry
Lecture 5
Topics in circuits: Digital input and output,
Using a microcontroller to read analog input, Pulsed width modulation, Pull-up
and pull-down resistors, Ohms law, batteries
Lecture 6
The Group Design Project
Lecture 7
Communicating with a skilled machinist.
Creation of a basic 2D machine drawing
Title block, Revision block
Lecture 8
Creating motion: DC motor, servo
motors, stepper motors, brushless electric motors
Lecture 9
Dimensioning standards and best
practices, ASME dimensioning codes
Dimensioning of holes, thread callouts
Lecture 10
Engineering Notes, Engineering Change
Notices
Lecture 11
Tolerance considerations
Dollar cost of over specifying
tolerances
Tolerance stack-up calculations
Machining set-ups / dollar cost of a
machined part
Lecture 12
Professional Societies
Overview and sign-up for both ASME and
SAE
SolidProfessor
Pre-Labs
Each lab session has an associated Pre-Lab
assignment that consists of a specified set of material from the SolidProfessor
site. You are expected to complete all of the Pre-Lab with a focus on learning
and becoming competent in the concepts and techniques that are introduced in
the video tutorials. Each Pre-lab includes a set of exercises that you are
expected to complete. These exercises will not be collected.
Most Pre-labs will have supplemental
materials in the form of extra modeling suggestions that you can use to gain
more practice in the concepts covered in the Pre-lab. These materials will be
located under the Assignment Add-ons tab in the Solid Professor
interface.
The Pre-lab grade is based upon your
completion of the Pre-lab. The percentage of each Pre-lab that is completed is
available to the course instructors through a SolidProfessor reporting tool.
The Pre-lab grade is “all or nothing” – you must complete the entire Pre-lab assignment
prior to your weekly lab meeting for you to receive any credit for this work.
The Pre-labs will include materials from
the SolidProfessor SolidWorks 2013 Course List the primary modules to be
covered are:
·2013 SolidWorks 101 – Academic
·2013 Core Concepts
·2013 Drawings
·2013 Advanced Parts
Arduino Pre-Labs
The Sparkfun Inventor’s kit includes a
Guide book that contains 15 exercises. Prior to each lab session you will be
assigned one or more of these exercises to complete. You will also be assigned
a number of video tutorials to watch. This Pre-lab information will be listed
on the course blog.
Lab Quizzes
Each lab session will begin with a short
quiz that allows you to demonstrate competency in the concepts and techniques
that have been introduced in the Pre-Lab. This will typically include both a
SolidWorks exercise and some questions that cover the Arduino topics.
Mini-Projects
Most lab sessions will introduce
mini-projects that are meant to provide you with a means to expand your ability
to both create solid models and use a microcontroller. These projects will also
provide you with the ability to create a physical object using a 3D printer.
Some of these mini-projects will be individual efforts and some will be
collaborative.
Group Design Project
The group design project is an opportunity
to work in a team environment to design, build and test a device. The device
will be designed in SolidWorks, contain parts that have been 3D printed (and
possibly laser-cut) and be designed to interact with its environment via
sensors and actuators.