Exam Prep Flashcards

1
Q

What is fixed precision?

A

A tool used by microprocessors or computing systems to limit the numbers to a fixed number of bits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is overflow?

A

When two numbers are added or subtracted and the correct result is a number that is outside of the range of allowable numbers for that precision

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is signed magnitude representation?

A

A way to sign integers. Put a 1 in front of a binary number to make it negative, a 0 to make it positive

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is ones complement representation?

A

A way to sign integers. Invert (replace 0s with 1s, vice versa) a binary number to it’s negative form

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is twos complement representation?

A

A way to sign integers. Use ones complement, but add 1 to its least significant bit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

N bits can represent ___ different values

A

2^N

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Define system clock

A

A component of a microcontroller. Provides a stable and consistent beat for the embedded control system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Define the central processing unit (CPU)

A

A component of a microcontroller. A multifunction math engine that takes commands stored in memory and uses them as an instruction list to accomplish tasks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Define the register

A

A component of a microcontroller. A digital location for holding temporary data, instructions or addresses

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Define memory

A

A component of a microcontroller. Used to hold instructions and data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Define Line I/O

A

A component of a microcontroller. Standard input/output functions. Allows data to be transferred to and from the microcontroller

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Define timer

A

A digital memory location that is updated or counted (incremented or decremented) at predetermined times

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Define the accumulator (A) (a.k.a. working register)

A

A register type. This is where data for an input to the ALU is temporarily stored.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Describe how an accumulator system operates in steps

A

Example: Sum

  1. One number is fetched from memory and placed in the accumulator
  2. Second number is fetched from memory and placed in accumulator
  3. Result is placed into accumulator
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Define status (a.k.a. condition code or flag register)

A

A register type. Contains information related to the result of the latest process carried out in the ALU. Each bit, called a flag, has a special significance. After an operation, each flag (bit) is set (1) or reset (0) to indicate a specific status

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Define program counter (PC) (a.k.a. instruction pointer)

A

A register type. Used by the CPU to keep track of its position in a program. Contains the address of the memory location that contains the next program instruction. Updated after each instruction is executed. Program is executed sequentially unless an instruction alters the program counter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Define memory address register (MAR)

A

A register type. Contains the address of data. Example: Sum

  1. MAR loaded with address of first number
  2. Data at that address is then moved to the accumulator
  3. Memory address of second number loaded
  4. Data at the address is then added to data in the accumulator
  5. The result is then stored in a memory location addressed by the MAR
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Define instruction register (IR)

A

A register type. Stores an instruction. Used by CPU to store an instruction after fetching it from memory, prior to decoding and execution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Define stack pointer register (SP)

A

A register type. Contents form an address which defines the top of the stack in RAM. The stack is a special area of the memory in which program counter values can be stored when a subroutine is being executed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Define general-purpose registers

A

A register type. May serve as temporary storage for data and addresses. May also be used in operations involving transfers from various other registers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Define buses

A

The bus is a shared set of communication lines that serves as the central nervous system of the computer. Data, address, and control signals are shared by all system components via the bus

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

Define data bus

A

Used to communicate words to and from data registers in the various system components

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

Define address bus

A

Used to select devices on the bus or specific data locations within memory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

Define control bus

A

Transmits read and write signals, the system clock signal, and other control signals such as system interrupts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

What is ROM?

A

Read Only Memory. Used for permanent storage of data, programmed at time of manufacture, don’t lose memory when power is removed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

What is PROM?

A

Programmable ROM. ROM chips that can be programmed by the user. Cannot be reprogrammed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

What is EPROM?

A

Erasable and Programmable ROM. Programmable and contents can be altered, cells store charges, programmed by producing a pattern of charged and uncharged cells, memory erasedb by shining ultraviolet light through quartz window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

What is EEPROM?

A

Electrically Erasable PROM. Memory erased by applying a relatively high voltage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

What is FLASH?

A

Similar to EEPROM with much larger capacities. Generally addressed by blocks rather than words

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

What is RAM?

A

Random Access Memory. Can be read or written to, holds data temporarily. Once power is removed, data in memory is lost

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

What is firmware?

A

Refers to programs stored in ROM

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

What is software?

A

Refers to programs stored in RAM. Must be loaded into memory each time system is powered up

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

What does the following assembly language program do?

LOAD
04
ADD
03
STORE
00
09
A

This program adds the numbers 4 and 3 together and stores the result in address 9. “LOAD 04” loads the accumulator with data 04. “ADD 03” takes data 03 into the ALU and adds the accumulator contents to it, result is copied to accumulator. “STORE 0009” stores accumulator content at address 0009.

Note: Addresses in this program are 16-bits long, so each address is split into high and low bytes

This is probably not super necessary to know anyways

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

Binary numbers presented to the microprocessor are called ________________

A

Machine language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

Define mnemonics

A

Because programming in machine language is nearly impossible, every manufacturer of microcontrollers defines a three or four-letter code that describes the function of each instruction. These are called mnemonics, and programs written in mnemonics are referred to as assembly language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

Define pipelining

A

Makes programs run faster. Since most microcontrollers fetch and execute instructions sequentially, pipelining is used to allow fetch and execution actions to overlap

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
37
Q

Define an input/output (I/O) operation

A

A way for the CPU and external world to transfer data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
38
Q

Define peripheral device

A

The pieces of equipment that are interfaced to the I/O ports of a microcontroller

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
39
Q

Define polling

A

A way to verify that the data retrieved from an I/O device is valid. Status bit is continually checked, CPU must wait for desired condition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
40
Q

Define interrupt

A

A way to verify that the data retrieved from an I/O device is valid. Interface chip sends interrupt to CPU when it has valid data; operation of CPU is suspended to handle interrupt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
41
Q

Define digital I/O

A

Digital input consists of reading the state on a given pin or line (bit) or group of pins (word). Digital output involves setting the output condition of a pin (or pins) to GND (0) or VCC (1)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
42
Q

Define multiplexers (MUX)

A

Essentially an electronic switch. Expands the number of available I/O lines. Could introduce errors such as crosstalk (adjacent channels interfere with channel being read), or transfer (output voltage not exactly the same as input)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
43
Q

Define serial I/O

A

Allows communication of data between devices one bit at a time. Utilize two or more digital I/O pins (TX and RX usually at minimum). Popular methods include:

USB (Universal Serial Bus)
CAN (Controller Area Network)
SPI (Serial Peripheral Interface)
I^2C Bus (Inter-IC Bus)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
44
Q

What are a few Arduino commands?

A

pinmode(pin, mode): configures specified pin as input or output

digitalRead(pin): reads value from specified pin, returned as HIGH or LOW

digitalWrite(pin, value): sets pin to value (HIGH or LOW)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
45
Q

Define Analog-to-Digital Converter (ADC)

A

Hybrid device with both an analog and digital side. Converts an analog voltage into a binary number through a process called quantization

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
46
Q

Define resolution

A

The smallest increment of voltage that can be resolved by the ADC. The resolution per bit, Q, depends on the full-scale voltage range and the number of bits of the converter:

Q=E/(2^M)
E: full-scale voltage range
M: number of bits of the ADC

Note: Also a static characteristic in sensors (discussed later)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
47
Q

Define saturation error

A

Result from finite upper and lower limits of voltage response for an ADC. If the voltage exceeds upper or lower limits, the converter saturates (recorded signal does not vary with input)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
48
Q

Define conversion error

A

ADC converters may suffer from slight nonlinearity, zero offset errors, scale errors, or hysteresis. Errors are a direct consequence of the input quantization method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
49
Q

What are the most common ADC types?

A

Successive approximation converters, ramp converters, dual-ramp converters, and parallel or flash converters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
50
Q

Define successive approximation ADC

A

Most common type of ADC. Uses a trial-and-error approach for estimating the input voltage to be converted. This process requires one clock tick per bit. Increasing the number of bits to lower quantization error results in a direct increase in conversion time. Noise is the principle weakness of this type of ADC, particularly at the decision point for higher-order bits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
51
Q

Define ramp converters

A

Use the voltage level of a linear reference ramp signal to discern the voltage level of an analog input signal. Good for high accuracy, low level (<1 mV) measurements. Reference signal starts at zero and is increased at set time steps. At each time step, the ramp level is compared with the input voltage level

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
52
Q

Define dual ramp converters

A

Similar to ramp converter, uses both a charge cycle and discharge cycle. Most accurate ADC type. Conversion times are relatively slow (4-8 ms), often used for digital voltmeters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
53
Q

Define parallel or flash converters

A

Fastest type of ADC (1 clock cycle). Typically used in oscilloscopes and spectral analyzers. Also expensive

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
54
Q

What are some common Arduino commands for analog I/O

A

analogReference(type): configures the reference voltage used for analog input. type = DEFAULT, INTERNAL or EXTERNAL. DEFAULT: supply voltage, INTERNAL: built-in reference, EXTERNAL: defined by the voltage applied to the AREF pin

analogRead(pin): reads value from specified analog pin. returns int ranging from 0 to 1023 or 0 to 4095

analogWrite(pin, value): Approximates analog voltage on pin by writing a PWM square wave (f = 490 Hz). value sets the duty cycle (0 = always off; 255 = always on)

dacWrite(pin, value): value is the digital value to be converted, ranging from 0 to 255

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
55
Q

Define duty cycle

A

How long the output is high during one period, varying the duty cycles will vary the output voltage in PWM

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
56
Q

Define version control

A

Refers to the management of changes to documents, programs, and other information stored in computer files. Typically only stores differences between file versions “diffs”, rather than entire copy of file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
57
Q

Define a version control system (VCS)

A

Stores all revisions made to files, along with timestamps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
58
Q

What are the advantages of using version control?

A

Backup and Restore: Files are saved as hey are edited, and you can jump to any moment in time

Synchronization: Allows people to share files and stay up-to-date with the latest version

Short-Term Undo: Trying something out with a file and messed it up? Throw away your changes and go back to “last known good” version in the database

Long-Term Undo: Really bad screw up, you can go back to the very beginning of the screw up

Track Changes: Can leave messages explaining why certain changes were made, makes it easy to see how file has changed over time

Track Ownership: A VCS tags every change with the name of the person who made it

Sandboxing: If you’re making a big change, you can make temporary changes in an isolated area, test and work out the kinks before “checking in” your changes

Branching and Merging: Larger sandbox, can branch a copy of your code into a separate area and modify it in isolation (tracking changes separately), can merge back later

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
59
Q

Define centralized version control

A

Traditional version control system; server with database maintains repository, clients have a working version. Challenges include multi-developer conflicts, client/server communication

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
60
Q

Define distributed version control

A

Authoritative server by convention only, every working checkout is a repository, get version control even when detached, backups are trivial

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
61
Q

What are some version control terms and their definitions?

A

Repository (repo): The database storing the files in VC

Add: Put a file into the repo for the first time (i.e. begin tracking with version control)

Revision: What version a file is on

Check out: Set the current version of the file from the repo

Commit: Write changes to repository

Head: The latest revision in the repo

Branch: Establishes a “fork” of the code that may be developed independently

Merge: Combining changes from multiple branches

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
62
Q

Define git

A

Open source, multiplatform, very fast, distributed VCS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
63
Q

Define transducer

A

A device that converts variations of one quantity into those of another (same or different form). Transducer encompass both sensors and actuators

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
64
Q

Define sensor

A

A device that detects a change in a physical stimulus and turns it into a signal that can be measured or recorded

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
65
Q

Define actuator

A

A device that produces an observable output

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
66
Q

What are the six signal types? (Hint: they’re all based on types of energy)

A
  1. Radiant: Radio waves, visible light, infrared
  2. Mechanical: Motion and forces (displacement, velocity, acceleration, etc.)
  3. Thermal: Kinetic energy of atoms and molecules
  4. Electrical: Current, voltage, resistance, etc.
  5. Magnetic: Magnetic flux, field strength, etc.
    6: Chemical: Chemical composition, pH value, etc.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
67
Q

What are the three main types of transducer signals?

A
  1. Analog: Signal is a proportional representation, or analogy, of the original parameter
  2. Digital: A function is used to represent the original parameter value
  3. Coded digital: A parallel digital signal represents the original parameter signal
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
68
Q

Define static charactersistics

A

Relate to performance, given a steady-state input condition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
69
Q

Define dynamic charactersistics

A

Describe behaviour between the time that the input value changes and the time at which the steady-state condition is achieved

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
70
Q

Define range and span

A

A static characteristic. Range defines the limits between which the input can vary (ideal would be from negative infinity to positive infinity), in general, a wide range implies low resolution and low accuracy. Span is just maximum value minus minimum value (i.e. -3 to 3, span = 6)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
71
Q

Define error

A

A static characteristic. Difference between the result of the measurement and the true value of the quantity being measured (error = measured value - true value)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
72
Q

What are the two types of errors and their definitions?

A
  1. Bias error: Consistent and repeatable. Could be calibration issues, loading (intrusive sensor, alters measurand), and variables other than the measurand. Bias error = average of readings - true value
  2. Precision error: Random. Precision errors originate from the sensor itself, caused by uncontrolled variables in the sensing process
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
73
Q

Define accuracy

A

A static characteristic. Measure of how closely a measured value agrees with the true value. Accuracy (%) = 100 - (reference value - measured value)/(reference value) * 100

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
74
Q

Define precision

A

A static characteristic. Clarity or sharpness of a measurement, closely related to accuracy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
75
Q

Define sensitivity (scale factor)

A

A static characteristic. Ratio of the change in input to the change in output. Often a key factor in sensor selection

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
76
Q

Define hysteresis

A

A static characteristic. Providing a different output value for the same input, depending on whether that value was reached by a continuously increasing change or a continually decreasing change

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
77
Q

Define threshold

A

A static characteristic. Smallest input change from zero that makes an output change discernable. Note: Dead zone is the total range of input over which the output remains zero

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
78
Q

Define stability

A

A static characteristic. The ability of a sensor to give the same output when used to measure a constant input over a period of time. Expressed as a percentage of the full output range. Described by drift (shifts in measured reading while physical variable remains unchanged) and zero drift (drift at the zero value of the variable). Caused by sensitivity to factors other than the measurand and internal sensor changes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
79
Q

Define repeatability

A

A static characteristic. Ability to produce the same output for repeated applications of the input value. Includes measurement process and environment, same physical variable and conditions, every time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
80
Q

Define linearity

A

A static characteristic. A measure of the “steadiness” of sensitivity throughout the active range (dx/dy constant over entire range)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
81
Q

Define input/output impedances

A

A static characteristic. Minimize loading effects: Changing behaviour of the system that device is attached to, changing process

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
82
Q

Define response time

A

A dynamic characteristic. Time that elapses before 95% of actual value is reached after a step input is applied

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
83
Q

Define time constant

A

A dynamic characteristic. 63.2% of response time, measure of inertia, how fast sensor responds to changes in input, the bigger this value = slower the response

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
84
Q

Define rise time

A

A dynamic characteristic. Time taken for output to rise to some specified percentage of steady-state output

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
85
Q

Define settling time

A

A dynamic characteristic. Time to settle within a specified percentage of the steady-state value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
86
Q

Describe the process of sensor selection

A
  1. Identify the nature of the measurement required:
Variable to be measured
Nominal range
Range of value
Accuracy required
Required speed of measurement
Reliability required
Environmental conditions
  1. Identify the nature of the output required from the sensor

Needed to determine signal conditioning requirements

  1. Identify possible solutions, should consider:
Range
Accuracy
Linearity
Speed of response
Reliability
Maintainability
Life
Power supply requirements
Ruggedness
Availability
Cost
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
87
Q

What are the categories of electronic sensors

A
  1. Go/No Go sensors - On/Off sensors

2. Analog sensors - output proportional to stimulus

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
88
Q

Define microswitch

A

Commonly used, small electric switch that requires physical contact and a small operating force to close the contacts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
89
Q

Define sensing resistors

A

Resistance proportional to target measurement (angular/linear position, force/pressure, temperature, light intensity, sound intensity)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
90
Q

Define potentiometer

A

Converts mechanical input (position of wiper terminal) into electrical signal by potential/voltage divider principle

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
91
Q

Define force sensing resistors (FSR)

A

Polymer thick film (PTF) devices which exhibit a decrease in resistance with an increase in applied force. In general, FSR response approximately follows an inverse power-law characteristic

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
92
Q

Define thermistor

A

Temperature sensitive resistors. Resistance of a thermistor decreases with increasing temperature

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
93
Q

Define photoresistors

A

Resistance varies with light intensity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
94
Q

Define electromagnetic spectrum

A

The distribution of electromagnetic radiation according to energy, frequency, or wavelength

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
95
Q

Define PN junction light detectors

A

All PN junctions are light sensitive, largest family of photonic semiconductors, most are made from silicon and can detect both visible light and near-infrared, photodiodes are PN junctions specifically designed for light detection

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
96
Q

Define photodiodes

A

Essentially reverse-biased diodes with a transparent envelope. Photodiodes generally have a fast response, have a peak response in the near infrared region, response in the visible spectrum is often significantly weaker

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
97
Q

Define phototransistors

A

Photo-conductive detector that allows current from an external power supply to flow in response to light. A series resistor is necessary to ensure that current flows through the phototransistor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
98
Q

Define digital optical encoders

A

Optical rotary encoders use geometric masking which allows light to pass through unmasked slits and be detected by photodetectors on the other side of the disk. Designed to produce a digital word that distinguishes 2^N distinct positions of the shaft, where N is the number of tracks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
99
Q

Define gray code

A

One track (bit) changes state for each count transition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
100
Q

Define binary code

A

multiple tracks (bits) can change during count transitions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
101
Q

Define incremental (relative) encoders

A

Uses only two tracks and two sensors. Tracks A and B are a 1/4 cycle out of phase with one another yielding quadrature signals

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
102
Q

Define IR distance measuring sensors

A

Sharm analog output distance measuring sensor. There are three models with different ranges (4-15 cm, 10-80 cm, 20-150 cm)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
103
Q

Define sharp IR distance sensors

A

Uses a lens and a position sensitive detector (PSD) to accurately determine distance to object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
104
Q

What is the process for selecting a photodetector?

A

A few considerations when selecting a photodetector include:

  1. Is the device sensitive enough for the application?
  2. Do the wavelength characteristics of the detector match the source?
  3. Is the device cost effective?
  4. Is there a clear path between the light source(s) and detector?
  5. Is the device electrically compatible with the rest of the circuit
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
105
Q

Define ultrasonic sensors

A

Noncontact measurement of distance to nearby objects. A single transducer may operate as a source/sensor pair. Transducer generates a short burst of high frequency sound, travels as a narrow cone, objects in path of sound are reflected back to sensor, same transducer acts as a microphone and converts to an electrical signal, time between pulse and echo are measured

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
106
Q

Define the hall effect

A

The phenomenon of current flowing through a conductor being deflected from a straight-line path by a magnetic field

107
Q

Define hall effect sensors

A

Sensors that detect the hall effect lol. If a sensor is supplied by a constant current, the hall voltage is a measure of the magnetic flux density. Generally supplied as an integrated circuit, complete with necessary signal processing circuitry. Able to operate as switches at rates up to 100 kHz, cost less than electromechanical switches, immune to environmental contaminants, can be used as position/displacement/proximity sensors if object being sensed is fit with a small permanent magnet

108
Q

Define design

A

The quest for simplicity and order, the process of inventing artifacts that display a new physical order, organization, and/or form in response to function

109
Q

What are five types of engineering design?

A
  1. Selection design: Choose item(s) from a catalog
  2. Configuration design: Organize the packaging of components
  3. Parametric design: Finding variables or parameters
  4. Redesign, alternative design: Modifying and existing product
  5. Original design: Develop a totally new product
110
Q

What factors must be considered in configuration design?

A

Spatial limitations, product interactions with other physical objects/the user(s), maintenance, wear, desired customization by the user, need to include standard parts and assemblies, need to conform to industrial standards, need to replace consumable materials

111
Q

Define analysis problem

A

A well-defined problem with one correct solution

112
Q

Define design problem

A

An ill-defined problem with numerous satisfactory solutions

113
Q

Describe the engineering design process

A
  1. Specification Development/Planning Phase: Determine need, customer and engineering requirements, develop a project plan
  2. Conceptual Design Phase: generate and evaluate concepts select best solution
  3. Detail Design Phase: CAD models, engineering drawings, design documentation, part specification, software development, prototype evaluation
  4. Production Phase: Component manufacture and assembly, plant facilities/capabilities
  5. Service phase: Installation, use, maintenance and safety
  6. Product retirement phase: Length of use, disposal, and recycle

Note: Steps 1-3 are the MSE 2202 design project. Steps 4-6 are the consideration of production, service, and retirement phases will have an impact on the MSE 2202 design project, especially in the detailed design phase

114
Q

Describe the importance of customer research

A

Customer research is essential to developing any new product or service. Without a complete understanding of your customers’ wants and needs, you may be developing a product that is out of sync with your market and ultimately doomed to failure

115
Q

What methods could be used to determine customer wants and needs?

A

Use existing feedback, surveys, customer interviews, focus groups, competitive analysis, or just ask them

116
Q

What do we mean when we say “customer requirements must be discriminatory” when talking about customer wants and needs?

A

Requirements must reveal the differences between alternatives, requirements should serve to distinguish alternatives from one another during evaluation

117
Q

What do we mean when we say “customer requirements must be measurable” when talking about customer wants and needs?

A

Ideally, all identified requirements are measurable, should be quantifiable

118
Q

What do we mean when we say “customer requirements must be orthogonal” when talking about customer wants and needs?

A

Each requirement should identify a unique feature of the alternative

119
Q

What do we mean when we say “customer requirements must be universal” when talking about customer wants and needs?

A

A universal requirement characterizes an important attribute of all of the proposed alternatives, applicable to all alternatives under consideration

120
Q

What do we mean when we say “customer requirements must be external to the problem” when talking about customer wants and needs?

A

Must not impose design choices

121
Q

Define product design specification (PDS) list

A

A detailed summary of the design requirements to be met in order to produce a successful product or process, write a separate specification for each element of the PDS list. If possible, the specification should be expressed in quantitative terms (give limits within which acceptable performance lies if appropriate). Performance attributes may be divided into attributes that must be satisfied or would be nice to satisfy

122
Q

In the context of PDS lists, define performance

A

List the functions to be performed by the product and the desired level of performance (engineering requirements, targets, etc.)

123
Q

In the context of PDS lists, define operating environment

A

Specify the operating environment for the product (range of temperature, pressure range, etc.)

124
Q

In the context of PDS lists, define standards

A

List relevant standards that must be adhered to (ANSI, ASTM, etc.)

125
Q

In the context of PDS lists, define materials

A

Poorly chosen materials can lead to product failure or unnecessary costs (material performance characteristics, key material properties)

126
Q

In the context of PDS lists, define customer

A

List an information on customer likes, dislikes, preferences, and prejudices

127
Q

In the context of PDS lists, define ergonomics

A

Identify any man-machine interface (need for handles, buttons, displays, etc.)

128
Q

In the context of PDS lists, define aesthetics, appearance, and finish

A

Consider colour, shape, texture, and form at the onset of design (this is what the customer sees first)

129
Q

In the context of PDS lists, define competition benchmarking

A

Perform a thorough analysis of existing and future competitors (determine how the customer perceives the competition’s ability to meet each design requirement)

130
Q

In the context of PDS lists, define quality and reliability

A

High risk areas of the product should be identified, and the risks minimized using formal trade-off techniques in the design process (product must meet or exceed customer’s expectations)

131
Q

In the context of PDS lists, define testing and inspection

A

Specify the tests required to demonstrate that the product meets the desired specifications, and any quality requirements

132
Q

In the context of PDS lists, define maintenance and logistics

A

Specify ease of access to the components likely to require maintenance (speed and ease of repair can influence customer’s acceptance of the product)

133
Q

In the context of PDS lists, define service life

A

Establish the expected service life and operation duty cycle for the product (how long is it expected to last while in operation)

134
Q

In the context of PDS lists, define market constraints

A

List any feedback from the marketplace

135
Q

In the context of PDS lists, define target product cost

A

Establish selling cost at the onset of the design process (retail price is often 3x manufacturing cost for mass produced items)

136
Q

In the context of PDS lists, define quantity

A

Estimate the number of products to be produced (cost/unit to fabricate is influenced by production method)

137
Q

In the context of PDS lists, define product life span

A

Predict how long the product is to remain on the market (influences investment decisions, potential sales)

138
Q

In the context of PDS lists, define shelf life in storage

A

Consideration must be made for protecting parts from the natural elements wile not in use (some products must be stored on hazardous sites for prolonged periods of time)

139
Q

In the context of PDS lists, define size

A

This is an important constraint for shipping, storage, and marketing

140
Q

In the context of PDS lists, define weight

A

An important factor in handling a product on the manufacturing floor, transportation and installation (related to size and cost)

141
Q

In the context of PDS lists, define shipping

A

Determine how the product will be delivered (size of box cars, weight on trucks)

142
Q

In the context of PDS lists, define packaging

A

Specify the type of packaging required for shipping and storage (protection during transportation, display)

143
Q

In the context of PDS lists, define in-house processes

A

Identify any specified treatment of parts (heat treatment, water resistant coating)

144
Q

In the context of PDS lists, define manufacturing facilities

A

Determine whether the product is to be produced in an existing facility or a new plant must be built (affects design choices, directly affects cost)

145
Q

In the context of PDS lists, define patents

A

Consult all areas of useful information prior to launching the design (prevent costly lawsuits)

146
Q

In the context of PDS lists, define design schedule

A

List definite milestones that the design team is required to meet (schedule adequate time to due design activity, testing)

147
Q

In the context of PDS lists, define company constraints

A

Any constraints imposed by company must be listed (limits on new plant investments, preferred vendors/suppliers)

148
Q

In the context of PDS lists, define social and political factors

A

List any constraints arising from government regulation (pollution laws, seatbelt legislation, sustainability)

149
Q

In the context of PDS lists, define safety

A

Critical parts whose failure will cause injury must be identified and documented (warning labels should be devised and operating manuals should clearly spell out what is abusive use of the product)

150
Q

How can customer and design needs be balanced?

A

Customer requirements are linked with product design specifications by a QFD

151
Q

Describe the steps in the QFD process

A
  1. Identify the customers
  2. Determine the customers’ requirements
  3. Determine relative importance of the requirements
  4. Generate engineering specifications
  5. Relate customers requirements to engineering specifications
  6. Identify relationships between engineering requirements
  7. Identify and evaluate the competition
  8. Set engineering targets
152
Q

Describe the “Identify Customers” step in the QFD process

A

Listen to the voice of the customer, but the customer must be identified first. In most cases, there is more than one customer (consumer, regulatory agencies, manufacturing, etc.)

153
Q

Describe the “Determine Customer Requirements” step in the QFD process

A

What do the customers need and want? Example:

Consumer: Product works as it should, lasts long, easy to maintain, etc.

Manufacturing: Easy to produce, uses available resources, etc.

Marketing/Sales: Meets customer requirements, easy to package, etc.

154
Q

Describe the “Determine Importance” step in the QFD process

A

Consider relative importance of customers’ requirements. Use a weighting factor for each requirement. For rank ordering, assign “1” to the requirement with lowest priority, then increase from there

155
Q

Describe the “Generate Engineering Specifications” step in the QFD process

A

How will the customers’ requirements be met? The goal is to develop a set of engineering specifications from the customers’ requirements

156
Q

Describe the “Relate Requirements” step in the QFD process

A

Relate customer requirements to engineering specifications. Each cell represents how an engineering parameter relates to a customer requirement. Each customer requirement should have at least one specification with a strong relationship (9=strong relationship, 3=medium relationship, 1=weak relationship, blank=no relationship)

157
Q

Describe the “Identify Relationships” step in the QFD process

A

Identify relationships between engineering specifications, may be dependent on one another (9=strong relationship, 3=medium relationship, 1=weak relationship, -1=weak negative relationship, -3=medium negative relationship, -9=strong negative relationship, blank=no relationship)

158
Q

Describe the “Identify and Evaluate Competition” step in the QFD process

A

How satisfied are customers now? The goal is to determine how the customer perceives the competition’s ability to meet each of the requirements. The ranking system goes as follows:

  1. Does not meet the requirement at all
  2. Meets the requirement slightly
  3. Meets the requirement somewhat
  4. Meets the requirement mostly
  5. Fulfills the requirement completely
159
Q

Describe the “Set Engineering Targets” step in the QFD process

A

How much is good enough? Determine target value for each engineering specification: Evaluate competing products with respect to engineering specification, look at set customer targets, use the above two pieces of information to set targets

160
Q

Define concept

A

An idea that can be represented in a rough sketch or with notes of what might someday be a product

161
Q

What are some sources for concept ideas

A

Ideation, brainstorming, patents, reverse engineering, reference books and trade journals, experts to help generate concepts, functional decomposition and morphological analysis

162
Q

Describe ideation in the context of concept ideas

A
  1. Get a general idea of the design problem ad develop different ways to tackle it
  2. Find feasible ideas
  3. Pick, choose, and recombine ideas
  4. Refine
163
Q

Describe brainstorming in the context of concept ideas

A

Organized approach for producing creative ideas by letting the mind think without interruption

164
Q

What are the fundamental principles of brainstorming

A
  1. Criticism is not allowed
  2. All ideas brought forth should be picked up by the other people
  3. Participants should divulge all ideas that enter their mind
  4. Provide as many ideas as possible within a relatively short time
165
Q

Describe the functional decomposition technique and how it coincides with morphological analysis

A
  1. Find the overall function that needs to be accomplished
  2. Decompose the function into sub-functions (perform functional decomposition). Goal is to refine the overall function statement as much as possible

Functional decomposition is used to identify the necessary product functionality. Morphological analysis is used to explore alternative means and combinations of achieving that functionality

166
Q

Describe the process for developing concepts for each function

A
  1. List product functions (functional decomposition)
  2. List the possible “means” for each function (morphological analysis)
  3. Chart functions and means and explore combinations
167
Q

What are the steps in concept evaluation?

A
  1. Feasibility Judgement
  2. Technological Readiness Assessment
  3. Go/No-Go Screening
  4. Decision Tree
  5. Decision Matrix
168
Q

Describe the “Feasibility Judgement” step in concept evaluation

A

Eliminating unfeasible concepts based on engineering judgement, supported by simple mathematical models, estimates and rough calculations if possible

169
Q

Describe the “Technological Readiness Assessment” step in concept evaluation

A

Determining the readiness of the technology incorporated in the design concepts. Selecting immature technology may lead to excessive costs, delays, unexpected problems, and customer dissatisfaction. Selecting new technology can additionally provide competitive advantage

170
Q

What are some guidelines for the technology readiness assessment

A
  1. Has the technology been demonstrated to work?
  2. Can the technology be manufactured with known processes?
  3. Is the cost of the technology competitive with existing technology?
  4. Do the benefits justify the risk and uncertainty associated with the new technology?
  5. Can the technology be safely controlled?
  6. Have the failure modes been identified?
  7. Is the technology controllable throughout the product’s life cycle?
171
Q

Describe the “Go/No-Go Screening” step in concept evaluation

A

Compare each alternative with the customer requirements in an absolute fashion. Each customer requirement must be transformed into a question and should be answerable as either yes (go), maybe (go), or no (no-go)

172
Q

Describe how the decision matrix works

A

Identifies the strongest concepts, and helps foster new concepts. Provides a means of scoring each concept relative to another

173
Q

Describe Pugh concept selection

A

The simple version of the decision matrix. Used for rough comparison of concepts at the early stage of design

174
Q

Describe how to use the Pugh concept selection method

A
  1. Identify criteria for evaluation
  2. Choose one concept to be a datum
  3. For each criterion, decide if a candidate is:

Better than the datum (+)
The same (S)
Worse than the datum (-)

  1. Pick the best concepts based on the total score, then attack their weaknesses (minuses) or combine the best aspects of different concepts if possible (combine pluses)
175
Q

Describe how to go from Pugh to decision matrices

A

Include the relative importance or weights of the criteria, use a multi-valued numeric scale to rate concepts (e.g. 1 - 10), multiply ratings with weights, and sum to get relative total scores

176
Q

Describe how to assign relative importance weight factor (WF)

A
  1. Decide upon the range of values (e.g. 1 - 100)
  2. Separate the range into general categories of significance, e.g. critical, important, optional
  3. Assign a weighing factor for each goal, considering all available information

Might be helpful to look at the slides for this week for the visual examples

177
Q

Define finite state machines (FSM)

A

Very common in mechatronic systems for us to do different things in response to the same input, FSMs are an attempt to capture the idea that the response of the system depends NOT ONLY on the input, BUT ALSO on the history of the system

178
Q

Identify and define the two building blocks of FSMs

A

Bubbles: A state. States have names (best to use a name that somehow represents the history that got there, can also be associated with activities or outputs)

Arcs: Directed lines that join states. Always associated with input conditions. An arc means we go from source state to destination state in response to input condition. Putting an output on an arc is a way to capture that we do the activity during the transition

Might be helpful to look at the slides for this

179
Q

Define event driven programming

A

Requires significant software infrastructure. Basically, it requires associating input changes with triggered events or messages or callbacks. In most cases, this implies the presence of a modern, real-time operating system, though it doesn’t need it

180
Q

Define polled, synchronous programming

A

“Pretend” the system is a synchronous circuit with a clock. These operations work as a team. The goal is that one path through the loop always takes exactly the same time.

Might be helpful to look at the slides for this

181
Q

With physical inputs, bouncing becomes an issue (think of a button, when you press it down, it physically bounces and messes up the state that is trying to be communicated). What are some solutions to this?

A
  1. Look once, then look again later (most common)
  2. Sample often (1111 means on, 0000 means off)
  3. Hardware debouncing (requires analog filter and Schmitt trigger)
182
Q

What are the roles of this step when processing states during the polled approach?

A
  1. State transition, this is where we encode the arc. In each state, you go through a set of questions of the form: If the input is like this, then we are going to that state next. There must always be a no change transition in polled approach
  2. Action, these can be condition dependent (we do THIS if THAT happens) or state based (we ALWAYS do this in this state) or both

This entire week might be best to look at the slides for. It’s short so it’s fine

183
Q

What are the parts of a typical drawing?

A

Sheet, views, notes, title block (TOC), and revision block

184
Q

Describe form in the context of engineering drawings

A

Shown with pictures, orthographic projection/views

185
Q

Define orthogonal (projected) views

A

Primary vies on a drawing set at 90 degrees to each other. Created by placing part in a virtual box and looking through each side

186
Q

Define first angle projection

A

A projection standard symbolized with a circle followed by a right-pointing trapezoid. This is the ISO/European standard, like rolling the part on a table. Seeing the diagrams in the slides may help

187
Q

Define third angle projection

A

A projection standard symbolized with a right-pointing trapezoid followed by a circle. North American standard, like walking around the part. Seeing the diagrams in the slides may help

188
Q

Describe a few things that are deemed as orthographic standard practice

A

Choose the front view as the most descriptive. Determine views to best represent object. Use minimum number of views to completely describe the object. Views must be aligned. Views should not be labeled

189
Q

Define auxiliary view

A

An extra view of an object when the 6 principal views don’t describe an object (or some of its features) clearly or completely

190
Q

Define isometric view

A

3D view of part to help visualization. Used only for a visual reference, should not be dimensioned, common for assembly drawings

191
Q

Define section view

A

Useful to show interior features without using hidden lines. Must show section line in another view that indicates the cutting plane and the direction of the view. Does not need to be aligned but often is shown aligned to enhance clarity. Must have unique letter label

192
Q

Define cut-away view

A

Shows part form behind front face

193
Q

Define detail views

A

Presents an enlargement of another view to enhance the clarity of small features. Must show detail area in parent view with label. is not aligned with parent view. Must have unique letter label and scale must be indicated since it is different from the parent view

194
Q

Define break view

A

For long parts. Some important features of the break view are instance numbers (indicate number of spaces and holes) and break line in overall length dimension (indicates the presence of a break view)

195
Q

Describe how visible (solid) lines describe the features of a drawing

A

Illustrate external features and outlines, as if looking at the part

196
Q

Describe how hidden (dashed) lines describe the features of a drawing

A

Illustrate anything behind the front face of the view, as if looking through the part

197
Q

Describe how phantom (dotted or short/long dash) lines describe the features of a drawing

A

Used to represent a feature or component that is not part of the specified part or assembly, also used to indicate alternative configurations. Slide 35 shows a good example

198
Q

Describe how centre (long/short alternating dash) lines describe the features of a drawing

A

Indicates the centre of geometry

199
Q

Describe how section (short dash) lines describe the features of a drawing

A

Indicate views

200
Q

What are the general rules for dimensions in engineering drawings?

A
  1. Text height is typically either .12” or 3 mm
  2. Text is always uppercase
  3. Units are usually either inches or millimeters
  4. If using inches:

No zero precedes decimal (.250)
Dimensions expressed to same number of decimals as its tolerance (.250 ± .002)

  1. If using millimeters:

Zero precedes the decimal (0.5)
No trailing zeros are required (3.25 ± 0.1)

  1. Dimension text is always horizontal
  2. Do not dimension to hidden lines
201
Q

Identify and define the dimension types

A
  1. Standard (incremental)
  2. Base line (absolute)
  3. Ordinate (absolute)

Slides are helpful to visualize different types

202
Q

What is meant by absolute vs. incremental types of dimensions

A

Incremental: Point to point; one position to the next
Absolute: Reference one single point (DATUM)

203
Q

What are some radial dimension conventions?

A

Small radii are called fillets. The preference is to use unlocated centres (easier to measure), see slide for visual. Never dimension to radii tangent points

204
Q

What are some hole dimension conventions?

A

Use a depth symbol with the depth of the full diameter when it is not a through hole (including counterbores/countersinks, but use an additional counterbore/countersinks symbol)

205
Q

What are some thread dimension conventions?

A

Dimension the pitch, major, and minor diameter. Usually show section for blind threaded holes. Note that the hole must be at least 4 threads deeper. Use the metric or American thread standard:

Metric: M24X2

M = Metric standard
24 = Major diameter
2 = Pitch

minor diameter is shown as hidden

American: .50-13 UNC

UNC  = American standard
.50 = Major diameter
13 = Threads/inch (1/pitch)
206
Q

Identify a few dimensioning techniques

A
  1. Must give position and size of each feature but only once on the drawing (don’t dimension the same feature again in a different view unless dimension is for reference only)
  2. Dimension based on the function of the feature
  3. Dimension to reduce tolerance stack-up for critical features
  4. Always dimension position of holes to their centre not their edge
207
Q

Describe tolerances

A

All real-world parts have variation in their features so every dimensions on the drawing must indicate the allowable variation. Use of title block general tolerance note reduces clutter in the drawing. Note: Tight tolerances = $$$, should aim to use generous tolerances

208
Q

Identify and define the tolerance types

A

Basic: Standard tolerance from title block
Symmetric: Shows allowable deviation from nominal - above or below
Bilateral: Shows allowable deviation from nominal - above or below
Unilateral: Only allows deviation from nominal in one direction
Limit: Gives two dimensions - anything in between is acceptable
Min/Max (Single Limit): Anything over/under
Fits: Alone, with, or without tolerance - references standard engineering fits

See slide for visual examples

209
Q

Identify and define the different types of fit

A

Clearance fit: Limits of size defined such that a clearance always results when mating parts are assembled
Interference fit: Limits of size are prescribed such that interference always results when mating parts are assembled
Transition fit: Limits of size are prescribed such that either clearance or an interference may result when mating parts are assembled
Line fit: Limits of size are prescribed such that surface contact or clearance may result when mating parts are assembled

210
Q

Describe the basic hole system

A

In the basic hole system, the minimum (lower limit) hole size is taken as the basic size. Stock hole is made “first” and then shaft is made to particular type of fit to suit the hole

211
Q

Describe the basic shaft system

A

In the basic shaft system, the maximum (upper limit) shaft size is taken as the basic size. Stock shaft is created “first” and then the hole is made to particular type of fit to suit the shaft

212
Q

Define geometric dimensioning and tolerancing (GD&T)

A

The allowable deviation from nominal form. GD&T uses symbols to communicate geometric specifications, see slide for visuals. GD&T is the only way to guarantee correct form, dimensions only guarantee size. Basically IRL constraints in solidworks

213
Q

What are the uses of GD&T?

A
  1. Datum - Point of reference (face, edge, or hole)
  2. Symbol - Type of deviation
  3. Tolerance - Allowable variation (given as distance)
214
Q

Define surface finish

A

Quality/smoothness of finish

215
Q

Define roughness average (R_a)

A

Expressed in microinches, micrometres, or roughness grade numbers N1 to N12. The “N” series of roughness grade numbers is often used in lieu of the roughness average values to avoid misinterpretation when drawings are exchanged internationally

216
Q

Try your best to describe the symbols used for basic surface finishes

A
  1. Check mark: Surface may be produce by any method
  2. Check mark with horizontal line: Material removal required
  3. Check mark with circle: Material removal prohibited
  4. Check mark with one number or N value: Roughness average values specified in microinches, micrometers, or roughness grade numbers
  5. Check mark with two numbers or N values: Maximum and minimum roughness average values specified in microinches, micrometers, or roughness grade numbers
217
Q

Describe the lay symbols

A
  1. Two parallel lines: Lay parallel to the line representing the surface to which the symbol is applied
  2. Perpendicular lines: Lay perpendicular to the line representing the surface to which the symbol is applied
  3. “X”: Lay angular in both directions to line representing the surface to which the symbol is applied
  4. “M”: Lay multidirectional
  5. “C”: Lay approximately circular relative to the centre of the surface to which the symbol is applied
  6. “R”: Lay approximately radial relative to the centre of the surface to which the symbol is applied
  7. “P”: Lay nondirectional, pitted, or protuberant
218
Q

Name five things all drawings contain

A
  1. Drawing templates or borders
  2. Drawing views
  3. Title block
  4. Revision block
  5. Notes - special or standard
219
Q

Name five things that a drawing view could contain

A
  1. Dimensions
  2. Tolerances
  3. Geometric tolerancing
  4. Surface finish information
  5. Allowable tool mark information
220
Q

Define title block

A

Contains any information that cannot be communicated through orthographic views and dimensions. A few examples include:

Part materials
Part quantities
Authors, supervisors, inspectors
Inspection information/standard
Finishing information: painting, anodizing, heat treating
Customer information
Company information
3rd angle projection symbol is important if drawing is used internationally
221
Q

Describe drawing scale

A

The title block indicates the scale predominantly used for views on the drawing. If a view uses a different scale, it must be indicated under that view. Scales are given as whole number ratios (must have 1 in the ratio):

For scaling up - 2:1, 4:1, 10:1
For scaling down - 1:2, 1:5, 1:20

222
Q

Define revision block

A

Used to track changes to the drawing. Normally contains revision, description, date, and approval

223
Q

Describe special notes on drawings

A

For nonstandard information. Can be located anywhere on the drawing or title block. Provides useful information not covered by dimensions, symbols or in the title block, can also be used with arrows to indicate features of importance. Try to limit the number of notes because they may be misinterpreted

224
Q

Define design for assembly (DFA)

A

A product designed to simplify the product so that the cost of assembly is reduced. Usually this improves quality and reliability and a reduction in cost/equipment

225
Q

What does DFA achieve?

A

Reduced part count, reduced labour content, shortened product design time

226
Q

Define DFA evaluation

A

A technique used to measure the ease with which a product can be assembled

227
Q

Define assembly efficiency score

A

A relative measure used to compare alternative designs of the same or similar products through 13 guidelines (score has no real meaning). Can range from 0 to 104 (8 x 13). The higher the score, the better the assembly

228
Q

Describe the “overall component count should be minimized” guideline for DFA evaluation

A

Find the theoretical minimum number of components. Examine each pair of adjacent components in the design to determine if they really need to be separate. Bolts, nuts, and clips should be included in the part count. The components must be separate if:

  1. The design is to operate mechanically
  2. The components must be made of different materials
  3. If assembly or disassembly is impossible

After this, find the improvement potential (I.P.)

I.P. = (actual number of components - theoretical minimum)/(actual number of components)

Note: Part reduction should not add costs by making the remaining parts too heavy or too complex

Lastly, rate the product on the worksheet:

I.P. < 10% = outstanding
10% < I.P. < 20% = very good
20% < I.P. < 40% = good
40% < I.P. < 60% = fair
I.P. > 60% = poor
229
Q

Describe the “make minimum use of separate fasteners” guideline for DFA evaluation

A

Every fastener adds costs and reduces strength. If more than 1/3 of the product components are fasteners, then the assembly logic should be questioned

230
Q

Describe the “design the product with a base component for locating other components” guideline for DFA evaluation

A

The ideal design is built like a layer cake

231
Q

Describe the “don’t require the base to be repositioned during assembly” guideline for DFA evaluation

A

Repositioning is time consuming and costly. If it has to be repositioned more than twice during assembly, it is considered a poor design. Ideally, there is no repositioning of the base

232
Q

Describe the “make the assembly sequence efficient” guideline for DFA evaluation

A

Uses the fewest possible steps, avoids the risk of damaging components, avoids awkward or unstable positions for product/assembly personnel/machinery, avoids creating many disconnected subassemblies to be joined later

233
Q

Describe the “avoid component characteristics that complicate retrieval” guideline for DFA evaluation

A

Three component characteristics that make retrieval difficult:

  1. Tangling (problem for some components when stored in boxes/trays)
  2. Nesting (components jam inside each other)
  3. Flexibility (gaskets, tubing, and wiring harnesses; make components as few, as short and as stiff as possible)
234
Q

Describe the “design components for a specific type of retrieval, handling and insertion” guideline for DFA evaluation

A

Three types of assembly systems:

  1. Manual assembly (low volume, less than 250,000 units annually)
  2. Robotic assembly (mid-high volume, between 250,000-2,000,000 units annually)
  3. Special-purpose transfer machine assembly (very high volume, more than 2,000,000 units annually)
235
Q

Describe the “design all components for end-to-end symmetry” guideline for DFA evaluation

A

End-to-end symmetry (symmetry about an axis perpendicular to the axis of insertion) allows a component to be inserted into an assembly with either end first. If a component can only be installed in the assembly in one way, the it must be oriented and inserted in just that way. This requires time and either worker dexterity or assembly machine complexity

236
Q

Describe the “design all components for symmetry about their axes of insertion” guideline for DFA evaluation

A

The designer should strive for rotational symmetry, faster assembly

237
Q

Describe the “design components that are not symmetric about their axes of insertion to be clearly asymmetric” guideline for DFA evaluation

A

The goal for this guideline is to make components that can be inserted only in the way intended. Components that are clearly asymmetric avoid ambiguities in the process or handling

238
Q

Describe the “design components to mate through straight-line assembly, all from the same direction” guideline for DFA evaluation

A

This guideline is intended to minimize the motions of assembly. If the components mate through straight-line motion and the motion is always from the same direction, the assembly will fall together from above. Downward motion is preferred as it can take advantage of gravity

239
Q

Describe the “design use of chamfers, leads and compliance to facilitate insertion and alignment” guideline for DFA evaluation

A

To make the actual insertion or mating of a component as easy as possible, each component should guide itself into place. Three features may be incorporated in the component design to facilitate insertion and alignment:

  1. Chamfers - rounded corners
  2. Leads - making the front end of the component smaller
  3. Compliance - making the component “elastic”
240
Q

Describe the “maximize component accessibility” guideline for DFA evaluation

A

Assembly can be difficult if components have no clearance for grasping, efficiency is negatively impacted if a component must be inserted in an awkward spot. If both assembly and maintenance are required, then additional room must be allowed for the repair tools to mate with the component

241
Q

Describe a few additional DFA guidelines

A

Parts that are too thin or have beveled edges may shingle during feeding, try designing flat parts with adequate thickness or add a flat to the leading edge of the beveled parts. Design parts with ends that are “flat”

242
Q

Define ergonomics (a.k.a. human factors)

A

Used to describe abilities, limitations and other physiological or behavioural characteristics of humans that affect the design of tools, machines, consumer products, systems, tasks, jobs, and environments

243
Q

Describe characteristics of display effectiveness

A

Conspicuity: Prominently located, attention getting
Emphasis: Important items/words visually emphasized
Legibility: Character fonts, size, and contrast
Intelligibility: Succinctly communicate information
Visibility: Visible in all lighting conditions
Maintainability: Resist aging, wear, vandalism
Standardization: Use standard words and symbols whenever possible

244
Q

Define anthropometric data

A

Used to describe the range of capabilities for human populations with data collected by governments, military, and large corporations (usually expressed in terms of percentiles)

245
Q

Describe how ergonomics data may exist as

A

Expert judgements, experience/common sense, design standards, established design principles, graphic representations, quantitative data tables, mathematical functions and expressions

246
Q

Define, explain, and list the possible causes for the categories of human error

A
  1. Operation error - attributed to operating personnel. Causes: Improper procedures, poor environment, task complexity, overload conditions, operator carelessness, inadequate personnel training or selection, and incorrect operating procedures
  2. Maintenance error - occur in the field and are attributable to maintenance personnel. Causes: Use the wrong grease to lubricate equipment, incorrect calibration of equipment, etc.
  3. Design error - reflect inadequate designs. Causes: Inadequate analysis of the system requirements, designer’s bias toward a specific design, insufficient time spent on the design
  4. Inspection error - the purpose of inspection is to uncover all items with defects, however, inspection effectiveness often averages around 85%
  5. Fabrication error - result from poor workmanship during product assembly. Causes: poor blueprints, inadequate illumination, poor workstation layout, excessive noise, etc.
  6. Installation error - attributed to incorrect or incomplete installation of the product. Causes: Failure to follow the instructions or blueprints
  7. Handling error - due to the inappropriate or improper storage or transport of a product, and can result in damage to the product. Causes: Improper packaging for shipment, etc.
  8. Contributory error - this classification covers those errors that are difficult to identify as either human or hardware related

This probably should have been multiple flash cards

247
Q

Identify and define the three labels and warnings

A
  1. Caution - used under conditions where hazards or unsafe practices may lead to minor personal injury, and/or minor damage to the product or to property
  2. Danger - used where immediate hazards (if they occur) would lead to severe personal injury or death
  3. Warning - used where hazards or unsafe acts (if they occur) could lead to severe personal injury or death
248
Q

Identify and define four manufacturing processes

A
  1. Machining - process of removing or separating pieces of material from a workpiece
  2. Forming - process of giving shape to a workpiece without adding material to, or removing material from, the workpiece
  3. Joining - process of fastening workpieces together, permanently or semi-permanently
  4. Finishing - process of modifying a workpiece surface for the purposes of protection and/or appearance
249
Q

List a few guidelines for machining

A

Allow run-out for tool, avoid completely spherical surfaces, use through holes wherever possible, provide boss to avoid drilling an inclined surface, do not design very difficult or impossible to machine hollows or overhangs, design for reasonable internal pockets radii, use standard dimensions, avoid long narrow holes, avoid thin walls (often break), place holes away from edges, provide access for holes, design parts that are easy to hold, avoid deep pockets that require long tools and cause tool vibration, avoid long thin sections that cause vibration when machined, remember that holes cannot change directions, and avoid external rounds (difficult, use chamfers)

See slides for graphics

250
Q

List a few guidelines for casting and molding

A

Avoid sharp corners, maintain uniform section thickness, stagger ribs to avoid hot spots, facilitate flow of molten material, provide draft angle to be able to remove part from mold, avoid abrupt changes in section thickness, design bosses with uniform thickness, avoid deep narrow ribs, design with mold flow considerations in mind, avoid staggered split lines, avoid using sliders to mold design, use uniform wall thickness, do not design sharp corners (stress concentrations) but don’t use too large of radii, keep section thickness uniform around bosses, attach bosses to wall with ribs, and keep rib thickness less than 60% of the part thickness to prevent voids and sinks (space out ribs)

See slides for graphics

251
Q

List a few guidelines for sheet metal

A

Provide an ear in a blank or include hole as notch (narrow web will cause bulging), offset bends, a cut-out is needed to bend flange, use separated flanges when possible, avoid sharp internals and external corners

252
Q

Define sustainability

A

The ability to sustain something for an indefinite period of time without depleting the resources used to sustain it, and such that it does not damage the surroundings in which it resides

253
Q

Define two sustainable engineering design activities

A
  1. Product design - the resources used to make a product should not be depleted, and the disposal of the product should not damage the environment in which it operates
  2. Process design - the input resources processed should not be deleted, and the output materials should not damage the environment into which they go
254
Q

Define product life cycle

A

The life cycle of a product from conception to disposal. Resources and waste are managed in a closed-loop cycle, with products being reused, recycled and remanufactured in an ideal product life cycle.

255
Q

Define life cycle design

A

Life cycle design is an activity whereby the designer recognizes and takes into account the various phases of a product’s life cycle during its design. Objectives considered are generally transportation, usage, energy consumption, safety, recyclability, etc.

256
Q

Define life cycle assessment (LCA)

A

The investigation and evaluation of the environmental impacts of a given product or service caused or necessitated by its existence. The purpose of LCA is to assess the full range of environmental and social impacts assignable to products or services, to be able to choose the one with the most beneficial outcome, or least impact

257
Q

Where can LCA be used?

A

Help regulators/government to formulate legislation, assist manufacturers to analyze and improve their process or products, enable consumers to make informed choices

258
Q

What are a few issues with LCA?

A

No “accepted standards” (conductor of the LCA may be biased). Due to this, the accuracy could be questioned and cannot compare LCAs conducted by two different parties. Because of this, LCA should be performed by the particular organization/individual for their own analysis

259
Q

What are the four phases of LCA

A
  1. Goals and scope
  2. Life cycle inventory (data collection, modeling of system)
  3. Life cycle impact assessment (characterization, normalization, weighting)
  4. Interpretation
260
Q

Define the “goals and scope” phase of LCA

A
  1. Define the goal of the project
  2. Determine what type of information is needed to inform the decision-makers
  3. Determine the required specificity
  4. Determine how the data should be organized and the results displayed
  5. Define the scope of the study
  6. Determine the ground rules for performing the work
261
Q

Define the “life cycle inventory” phase of LCA

A

Data collection and modeling of system

262
Q

Define the “life cycle impact assessment” phase of LCA

A

Characterization, normalization, and weighting

263
Q

Define the “interpretation” phase of LCA

A

“What do all the numbers mean?”, consider a sensitivity/uncertainty analysis to validate your model against variations in results, ask yourself “has the goal and scope been met?”

264
Q

Define energy/resource budget

A

Can be within the scope of an LCA. To create one, consider material usage and source, transportation, renewability, manufacturing, use of product, and disposal