SlideShare a Scribd company logo
1 of 14
CDI 11 ADVANCED
Term 3
Revision Notes
3D Printing Technology
• 3D printing technology uses this method.
• A process that adds material layer by
layer to create an object.
• Benefit - Objects can be created without
the use of moulds or dies.
• Traditional manufacturing techniques.
• This process involves starting with a raw
material such as stone or wood and removing
the unnecessary material until you are left
with the product you wanted to manufacture.
SUBTRACTIVE MANUFACTURING ADDITIVE MANUFACTURING
CNC: COMPUTER NUMERICAL CONTROL
• A computer converts the design produced by Computer Aided Design software
(CAD) like 123D Design, into numbers (like coordinates of a graph).
• Numbers - control the movement of the cutter ; Computer - controls the cutter
speed, and direction to cut and shape of the material.
• CNC can create fine and detailed pieces.
3D Printing Types
STEREO-LITHOGRAPHY
(SLA)
SELECTIVE LASER SINTERING
(SLS)
FUSED DEPOSITION MODELLING
(FDM)
• Stereo-solid + Lithography-printing
• 1986 – Charles Hull – created first
SLA device.
• Resin-a light sensitive glue-like
liquid substance-becomes solid
when a specific frequency of light
shines on it.
• Lasers-controlled by computer;
draw the outline of the 3D model,
slice by slice until the layer is
completely hardened.
• 1987 – Carl Deckard– created first
SLS device
• Advantage – powders from plastic,
ceramic, glass or metal to create
objects with extreme detail and
complexity.
• After each layer is bonded the model is
repositioned so that a roller can apply
a new coat of powder. The lasers then
bond that layer and so the process is
repeated until the model is complete.
• Expensive process.
• The printer generally uses plastic
filament (a roll of plastic much like
a roll of string) and adds many
layers to build solid objects.
• Cost effective process.
PARTS OF 3D FDM PRINTER
Filament : Used to produce
printed object
Extruder : It is a mechanical system that
forces filament into the heated nozzle at a
controlled rate.
Heated nozzle: Tools that
melts the filament at high
temp.(180-220 0 Celsius)
Print bed/ build platform: A surface on
which final object is printed.
3D PRINTING PROCESS
Modelling : Process of designing and
creating digital representation of an object
using 3D modelling application (123D design )
Printing setup : Setting up the 3D model
so that it can be printed using the printer
by setting the parameters.
You have used -
FlashPrint to
make your
project – 3d car. 3D Printing
Formats
.stl
.gx
Filament And Material Types
PLA
• Thermoplastic.
• Most commonly used.
• Biodegradable and eco-friendly .
• Used in items such as water bottles,
plastic cups and mugs, food containers
and small electronic product casings.
ABS
• Thermoplastic
• Higher temperature for melting so not all
3D printers have a heated nozzle and
extruder than can support ABS
• Not biodegradable or eco-friendly
• Commonly used in manufacturing plastic
industrial pipes, Lego blocks, car parts
and in kitchen appliances.
• Strong, durable and less flexible than
PLA
• Quite heat resistant.
• Electricity : A form of energy used to drive televisions, washing machine, mobile telephones.
• Electronics : Control electric circuits.
• Current : Rate of flow of charges
• Embedded systems : It is a specialized computer system with a specific function within a
larger mechanical or electrical system.
Examples -
• Air conditioner in car.
• Seatbelt warning in car.
• Garden watering system.
• Motion sensitive security system.
An “embedded system” is known as an input, which is a device
that contains a computer unit or a microcontroller that reads the
changes in an environment. It then controls an output system
to change the environment.
Electric Circuit : Group of
electric components
connected by conductors for
current flow
Voltage
Source
Conductive
Path Load
It causes the
current to flow
through circuit.
Consumes electric
power.
Through which
current flows.
Types of Voltage Source
Alternating Current :
Wall Socket
Direct Current :
Battery
ELECTRICAL SCHEMATIC
Ohm’s Law
• Voltage is the
difference in charge
between two points.
• Measured in Volts(V).
• Resistance is a
material’s tendency
to resist the flow of
charge (current).
• Measured in
Ohms(Ω).
• Current is the rate at
which charge is
flowing.
• Measured in
Amperes(A).
Batteries : Change chemical to
electrical energy, consists of many
cells.
Resistor : Electrical
component for electrical
resistance.
Breadboard : It is a solder
less board that can be
used to make temporary
circuits.
4-band
Resistor
5-band
Resistor
How to
calculate
resistor
value:
Diode : Two Terminal electronic
component
Current flows from anode to cathode.
DIODE vs LED
• LED : A diode emits light when current flows.
Uses advanced semiconductor materials.
• Advantages of LED over traditional light
bulbs: more robust; consume less power;
last longer.
Testing of an LED using Multimeter
Set the
multimeter to
diode test
option.
To
anodeTo
cathode
• Notice the dim light
of the LED due to
the electric current
flowing through the
LED (the diode).
• Here you can read
the voltage across
the LED.
EXAMPLE:LED Flash Task
SCHEMATIC DIAGRAM:
1. Students will be required to
design or complete a circuit
diagram related to a product or
process suggested. (Sample as
shown aside.)
2. There will also be a written
element in relation to the circuit
diagram.
e.g. How many LEDs are connected?
To which pin LED is connected to?
CODING:
A code will be provided and students will be
asked to redesign or adjust the program code
by adding appropriate component parts.
(a) Int ledPin = 10; (wrong)
int ledPin = 10; (correct)
(b) void loop() (wrong)
void loop() { (correct)
(c) Make the LED off for 5 secs.
delay(5000);
Int ledPin = 10;
// the setup function runs once when you press reset or power the board
void setup() {
pinMode(ledPin, OUTPUT);
}
// the loop function runs over and over again forever
void loop()
digitalWrite(ledPin, HIGH);// turn the LED on (HIGH is the voltage level)
delay(2000); // wait for 2 seconds
digitalWrite(ledPin, LOW); // turn the LED off by making the voltage LOW
delay(2000); // wait for 2 seconds
}
MOTORS
1. Have two leads – red(positive)
and black(negative).
2. It runs at high RPM(revolutions
per minute).
3. Controlling DC motor directly
from Arduino board will damage
it.
1. Have three leads –
orange(control), red(power) and
brown(ground).
2. It takes angle commands from a
series of pulses(sent every 20
milliseconds) sent from Arduino.
3. Controlling servo motor is done
from a special library called -
‘Servo’.
DC Motors Servo Motors
Applications Fan, Hair dryers, car,
lifts, cranes
Robots, Camera auto
focus, Automatic
Door openers
PWM Signal
• Pulse Width Modulation (PWM), is a technique for
generating an analog signal using digital means.
Toff
T = Time Period (secs) = Ton + Toff ;
Frequency (Hertz)
Duty Cycle
Ton

More Related Content

What's hot

Cdi t1 11_gen_unit1&2_revision_notes_eot
Cdi t1 11_gen_unit1&2_revision_notes_eotCdi t1 11_gen_unit1&2_revision_notes_eot
Cdi t1 11_gen_unit1&2_revision_notes_eotCDI Aljeer
 
Section 5 11 a &12 g
Section 5 11 a &12 g Section 5 11 a &12 g
Section 5 11 a &12 g CDI Aljeer
 
What is electronics?
What is electronics?What is electronics?
What is electronics?callr
 
Cdi t1 11_adv_unit1&2_revision_notes_eot
Cdi t1 11_adv_unit1&2_revision_notes_eotCdi t1 11_adv_unit1&2_revision_notes_eot
Cdi t1 11_adv_unit1&2_revision_notes_eotCDI Aljeer
 
The fundemental of electronics ebook
The fundemental of electronics ebookThe fundemental of electronics ebook
The fundemental of electronics ebookLe Thanh Nhan
 
Build your own electronics lab
Build your own electronics labBuild your own electronics lab
Build your own electronics labKarim El-Rayes
 
Key vocabulary 10 & 11 g
Key vocabulary 10 & 11 gKey vocabulary 10 & 11 g
Key vocabulary 10 & 11 gCDI Aljeer
 
Unit2 s3 electronic calculations 2
Unit2 s3 electronic calculations 2Unit2 s3 electronic calculations 2
Unit2 s3 electronic calculations 2CDI Aljeer
 
Automatic DC Fan using LM35 (English version)
Automatic DC Fan using LM35 (English version)Automatic DC Fan using LM35 (English version)
Automatic DC Fan using LM35 (English version)Nurlatifa Haulaini
 
Embedded Application on Microcontroller in Assembly and Embedded C
Embedded Application on Microcontroller in Assembly and Embedded CEmbedded Application on Microcontroller in Assembly and Embedded C
Embedded Application on Microcontroller in Assembly and Embedded CAvinash Reddy Penugonda
 
Basic workshop practice (electronics group) 17005
Basic workshop practice (electronics group) 17005Basic workshop practice (electronics group) 17005
Basic workshop practice (electronics group) 17005Pravin Shirke
 
Construction of digital voltmeter by Bapi Kumar Das
Construction of digital voltmeter by Bapi Kumar DasConstruction of digital voltmeter by Bapi Kumar Das
Construction of digital voltmeter by Bapi Kumar DasB.k. Das
 
Electrical components 3
Electrical components 3Electrical components 3
Electrical components 3mar1897
 
Concept of Digital measurement, block Diagram & study of Voltmeter
Concept of Digital measurement, block Diagram & study of VoltmeterConcept of Digital measurement, block Diagram & study of Voltmeter
Concept of Digital measurement, block Diagram & study of VoltmeterAbhishek Choksi
 

What's hot (20)

Section 6
Section 6 Section 6
Section 6
 
Cdi t1 11_gen_unit1&2_revision_notes_eot
Cdi t1 11_gen_unit1&2_revision_notes_eotCdi t1 11_gen_unit1&2_revision_notes_eot
Cdi t1 11_gen_unit1&2_revision_notes_eot
 
Section 5 11 a &12 g
Section 5 11 a &12 g Section 5 11 a &12 g
Section 5 11 a &12 g
 
What is electronics?
What is electronics?What is electronics?
What is electronics?
 
Cdi t1 11_adv_unit1&2_revision_notes_eot
Cdi t1 11_adv_unit1&2_revision_notes_eotCdi t1 11_adv_unit1&2_revision_notes_eot
Cdi t1 11_adv_unit1&2_revision_notes_eot
 
The fundemental of electronics ebook
The fundemental of electronics ebookThe fundemental of electronics ebook
The fundemental of electronics ebook
 
Build your own electronics lab
Build your own electronics labBuild your own electronics lab
Build your own electronics lab
 
Key vocabulary 10 & 11 g
Key vocabulary 10 & 11 gKey vocabulary 10 & 11 g
Key vocabulary 10 & 11 g
 
Resistor
Resistor Resistor
Resistor
 
Introduction to sensors
Introduction to sensorsIntroduction to sensors
Introduction to sensors
 
Unit2 s3 electronic calculations 2
Unit2 s3 electronic calculations 2Unit2 s3 electronic calculations 2
Unit2 s3 electronic calculations 2
 
Automatic DC Fan using LM35 (English version)
Automatic DC Fan using LM35 (English version)Automatic DC Fan using LM35 (English version)
Automatic DC Fan using LM35 (English version)
 
Embedded Application on Microcontroller in Assembly and Embedded C
Embedded Application on Microcontroller in Assembly and Embedded CEmbedded Application on Microcontroller in Assembly and Embedded C
Embedded Application on Microcontroller in Assembly and Embedded C
 
Basic workshop practice (electronics group) 17005
Basic workshop practice (electronics group) 17005Basic workshop practice (electronics group) 17005
Basic workshop practice (electronics group) 17005
 
Construction of digital voltmeter by Bapi Kumar Das
Construction of digital voltmeter by Bapi Kumar DasConstruction of digital voltmeter by Bapi Kumar Das
Construction of digital voltmeter by Bapi Kumar Das
 
Lec 4
Lec 4Lec 4
Lec 4
 
Electrical components 3
Electrical components 3Electrical components 3
Electrical components 3
 
Lec 5
Lec 5Lec 5
Lec 5
 
Analog vs digital
Analog vs digitalAnalog vs digital
Analog vs digital
 
Concept of Digital measurement, block Diagram & study of Voltmeter
Concept of Digital measurement, block Diagram & study of VoltmeterConcept of Digital measurement, block Diagram & study of Voltmeter
Concept of Digital measurement, block Diagram & study of Voltmeter
 

Similar to 11 adv revision_notes_term_3

3D Design(Printing) Technology
3D Design(Printing) Technology3D Design(Printing) Technology
3D Design(Printing) TechnologyUday Reddy
 
Thermal Artwork Transferring Machine for PCB Manufacturing
Thermal Artwork Transferring Machine for PCB ManufacturingThermal Artwork Transferring Machine for PCB Manufacturing
Thermal Artwork Transferring Machine for PCB ManufacturingIRJET Journal
 
Chapter 4: Induction Heating Computer Simulation
Chapter 4: Induction Heating Computer SimulationChapter 4: Induction Heating Computer Simulation
Chapter 4: Induction Heating Computer SimulationFluxtrol Inc.
 
3 D printing new 2015
3 D printing new 20153 D printing new 2015
3 D printing new 2015Akhil Jose
 
CNC_RP_12212122121125817Presentation.ppt
CNC_RP_12212122121125817Presentation.pptCNC_RP_12212122121125817Presentation.ppt
CNC_RP_12212122121125817Presentation.pptAshishKumar42163
 
green house ppt.pptx
green house ppt.pptxgreen house ppt.pptx
green house ppt.pptxYonaCastro1
 
Rapid-prototyping ( mechanical )
Rapid-prototyping ( mechanical )Rapid-prototyping ( mechanical )
Rapid-prototyping ( mechanical )Nad Nadira
 
rapidprototyping-130214024311-phpapp01-140307000659-phpapp01.pdf
rapidprototyping-130214024311-phpapp01-140307000659-phpapp01.pdfrapidprototyping-130214024311-phpapp01-140307000659-phpapp01.pdf
rapidprototyping-130214024311-phpapp01-140307000659-phpapp01.pdfmuradismail9
 
DESIGN AND ASSEMBLY OF COMPACT PCB FOR HOME AUTOMATION
DESIGN AND ASSEMBLY OF COMPACT PCB FOR HOME AUTOMATIONDESIGN AND ASSEMBLY OF COMPACT PCB FOR HOME AUTOMATION
DESIGN AND ASSEMBLY OF COMPACT PCB FOR HOME AUTOMATIONIRJET Journal
 
Electronic circuit design and component selection.pptx
Electronic circuit design and component selection.pptxElectronic circuit design and component selection.pptx
Electronic circuit design and component selection.pptxmaheshmp16
 
3d printer for future @1000KV Technologies 9030844877
3d printer for future @1000KV Technologies 90308448773d printer for future @1000KV Technologies 9030844877
3d printer for future @1000KV Technologies 90308448771000kv technologies
 
Km60 3d printer base paper (wecompress)
Km60 3d printer base paper (wecompress)Km60 3d printer base paper (wecompress)
Km60 3d printer base paper (wecompress)1000kv technologies
 
weather monitoiring system.pptx
weather monitoiring system.pptxweather monitoiring system.pptx
weather monitoiring system.pptxPranayBathini1
 

Similar to 11 adv revision_notes_term_3 (20)

3D Design(Printing) Technology
3D Design(Printing) Technology3D Design(Printing) Technology
3D Design(Printing) Technology
 
Thermal Artwork Transferring Machine for PCB Manufacturing
Thermal Artwork Transferring Machine for PCB ManufacturingThermal Artwork Transferring Machine for PCB Manufacturing
Thermal Artwork Transferring Machine for PCB Manufacturing
 
Module 1.pptx
Module 1.pptxModule 1.pptx
Module 1.pptx
 
3d printer
3d printer3d printer
3d printer
 
Chapter 4: Induction Heating Computer Simulation
Chapter 4: Induction Heating Computer SimulationChapter 4: Induction Heating Computer Simulation
Chapter 4: Induction Heating Computer Simulation
 
3 D printing new 2015
3 D printing new 20153 D printing new 2015
3 D printing new 2015
 
CNC_RP_12212122121125817Presentation.ppt
CNC_RP_12212122121125817Presentation.pptCNC_RP_12212122121125817Presentation.ppt
CNC_RP_12212122121125817Presentation.ppt
 
final presentation
final presentationfinal presentation
final presentation
 
green house ppt.pptx
green house ppt.pptxgreen house ppt.pptx
green house ppt.pptx
 
DEMO.pptx
DEMO.pptxDEMO.pptx
DEMO.pptx
 
Rapid-prototyping ( mechanical )
Rapid-prototyping ( mechanical )Rapid-prototyping ( mechanical )
Rapid-prototyping ( mechanical )
 
Arduino based 3D printer
Arduino based 3D printerArduino based 3D printer
Arduino based 3D printer
 
rapidprototyping-130214024311-phpapp01-140307000659-phpapp01.pdf
rapidprototyping-130214024311-phpapp01-140307000659-phpapp01.pdfrapidprototyping-130214024311-phpapp01-140307000659-phpapp01.pdf
rapidprototyping-130214024311-phpapp01-140307000659-phpapp01.pdf
 
DESIGN AND ASSEMBLY OF COMPACT PCB FOR HOME AUTOMATION
DESIGN AND ASSEMBLY OF COMPACT PCB FOR HOME AUTOMATIONDESIGN AND ASSEMBLY OF COMPACT PCB FOR HOME AUTOMATION
DESIGN AND ASSEMBLY OF COMPACT PCB FOR HOME AUTOMATION
 
Electronic circuit design and component selection.pptx
Electronic circuit design and component selection.pptxElectronic circuit design and component selection.pptx
Electronic circuit design and component selection.pptx
 
3d printer for future @1000KV Technologies 9030844877
3d printer for future @1000KV Technologies 90308448773d printer for future @1000KV Technologies 9030844877
3d printer for future @1000KV Technologies 9030844877
 
Km60 3d printer base paper (wecompress)
Km60 3d printer base paper (wecompress)Km60 3d printer base paper (wecompress)
Km60 3d printer base paper (wecompress)
 
weather monitoiring system.pptx
weather monitoiring system.pptxweather monitoiring system.pptx
weather monitoiring system.pptx
 
Mini Project- USB Temperature Logging
Mini Project- USB Temperature LoggingMini Project- USB Temperature Logging
Mini Project- USB Temperature Logging
 
REPORT.pdf
REPORT.pdfREPORT.pdf
REPORT.pdf
 

More from CDI Aljeer

Build a story draft-2
Build a story   draft-2Build a story   draft-2
Build a story draft-2CDI Aljeer
 
Project design space information 2017 18
Project design space information 2017 18Project design space information 2017 18
Project design space information 2017 18CDI Aljeer
 
12 a pneumatic systems
12 a pneumatic systems12 a pneumatic systems
12 a pneumatic systemsCDI Aljeer
 
Section 1 :- Mechanical systems-
Section 1 :- Mechanical systems-Section 1 :- Mechanical systems-
Section 1 :- Mechanical systems-CDI Aljeer
 
Sample Exam 12 a
Sample Exam  12 aSample Exam  12 a
Sample Exam 12 aCDI Aljeer
 
Sample Exam 11 a
Sample Exam  11 aSample Exam  11 a
Sample Exam 11 aCDI Aljeer
 
Sample Exam 11 g
Sample Exam  11 gSample Exam  11 g
Sample Exam 11 gCDI Aljeer
 
Sample Exam 12 g
Sample Exam  12 gSample Exam  12 g
Sample Exam 12 gCDI Aljeer
 
Cdi t1 12_adv_unit2_revision_notes_eot
Cdi t1 12_adv_unit2_revision_notes_eotCdi t1 12_adv_unit2_revision_notes_eot
Cdi t1 12_adv_unit2_revision_notes_eotCDI Aljeer
 
Cdi pd fusion 360 hyperloop
Cdi pd fusion 360 hyperloopCdi pd fusion 360 hyperloop
Cdi pd fusion 360 hyperloopCDI Aljeer
 
Section 1;11&12
Section 1;11&12Section 1;11&12
Section 1;11&12CDI Aljeer
 
Section 3 adv 12
Section 3 adv 12Section 3 adv 12
Section 3 adv 12CDI Aljeer
 
Section 2 basic hydraulic system
Section 2  basic hydraulic system Section 2  basic hydraulic system
Section 2 basic hydraulic system CDI Aljeer
 
Physical properties
Physical propertiesPhysical properties
Physical propertiesCDI Aljeer
 
Section1; Mechanical Properties
Section1; Mechanical PropertiesSection1; Mechanical Properties
Section1; Mechanical PropertiesCDI Aljeer
 
Schematic f 11 adv
Schematic f 11 advSchematic f 11 adv
Schematic f 11 advCDI Aljeer
 
Schematic sdfsdf 11 adv
Schematic sdfsdf 11 advSchematic sdfsdf 11 adv
Schematic sdfsdf 11 advCDI Aljeer
 

More from CDI Aljeer (18)

Build a story draft-2
Build a story   draft-2Build a story   draft-2
Build a story draft-2
 
Project design space information 2017 18
Project design space information 2017 18Project design space information 2017 18
Project design space information 2017 18
 
12 a pneumatic systems
12 a pneumatic systems12 a pneumatic systems
12 a pneumatic systems
 
Section 1 :- Mechanical systems-
Section 1 :- Mechanical systems-Section 1 :- Mechanical systems-
Section 1 :- Mechanical systems-
 
Sample Exam 12 a
Sample Exam  12 aSample Exam  12 a
Sample Exam 12 a
 
Sample Exam 11 a
Sample Exam  11 aSample Exam  11 a
Sample Exam 11 a
 
Sample Exam 11 g
Sample Exam  11 gSample Exam  11 g
Sample Exam 11 g
 
Sample Exam 12 g
Sample Exam  12 gSample Exam  12 g
Sample Exam 12 g
 
Section 4
Section 4Section 4
Section 4
 
Cdi t1 12_adv_unit2_revision_notes_eot
Cdi t1 12_adv_unit2_revision_notes_eotCdi t1 12_adv_unit2_revision_notes_eot
Cdi t1 12_adv_unit2_revision_notes_eot
 
Cdi pd fusion 360 hyperloop
Cdi pd fusion 360 hyperloopCdi pd fusion 360 hyperloop
Cdi pd fusion 360 hyperloop
 
Section 1;11&12
Section 1;11&12Section 1;11&12
Section 1;11&12
 
Section 3 adv 12
Section 3 adv 12Section 3 adv 12
Section 3 adv 12
 
Section 2 basic hydraulic system
Section 2  basic hydraulic system Section 2  basic hydraulic system
Section 2 basic hydraulic system
 
Physical properties
Physical propertiesPhysical properties
Physical properties
 
Section1; Mechanical Properties
Section1; Mechanical PropertiesSection1; Mechanical Properties
Section1; Mechanical Properties
 
Schematic f 11 adv
Schematic f 11 advSchematic f 11 adv
Schematic f 11 adv
 
Schematic sdfsdf 11 adv
Schematic sdfsdf 11 advSchematic sdfsdf 11 adv
Schematic sdfsdf 11 adv
 

Recently uploaded

BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonJericReyAuditor
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxAnaBeatriceAblay2
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 

Recently uploaded (20)

BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lesson
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 

11 adv revision_notes_term_3

  • 1. CDI 11 ADVANCED Term 3 Revision Notes
  • 2. 3D Printing Technology • 3D printing technology uses this method. • A process that adds material layer by layer to create an object. • Benefit - Objects can be created without the use of moulds or dies. • Traditional manufacturing techniques. • This process involves starting with a raw material such as stone or wood and removing the unnecessary material until you are left with the product you wanted to manufacture. SUBTRACTIVE MANUFACTURING ADDITIVE MANUFACTURING CNC: COMPUTER NUMERICAL CONTROL • A computer converts the design produced by Computer Aided Design software (CAD) like 123D Design, into numbers (like coordinates of a graph). • Numbers - control the movement of the cutter ; Computer - controls the cutter speed, and direction to cut and shape of the material. • CNC can create fine and detailed pieces.
  • 3. 3D Printing Types STEREO-LITHOGRAPHY (SLA) SELECTIVE LASER SINTERING (SLS) FUSED DEPOSITION MODELLING (FDM) • Stereo-solid + Lithography-printing • 1986 – Charles Hull – created first SLA device. • Resin-a light sensitive glue-like liquid substance-becomes solid when a specific frequency of light shines on it. • Lasers-controlled by computer; draw the outline of the 3D model, slice by slice until the layer is completely hardened. • 1987 – Carl Deckard– created first SLS device • Advantage – powders from plastic, ceramic, glass or metal to create objects with extreme detail and complexity. • After each layer is bonded the model is repositioned so that a roller can apply a new coat of powder. The lasers then bond that layer and so the process is repeated until the model is complete. • Expensive process. • The printer generally uses plastic filament (a roll of plastic much like a roll of string) and adds many layers to build solid objects. • Cost effective process.
  • 4. PARTS OF 3D FDM PRINTER Filament : Used to produce printed object Extruder : It is a mechanical system that forces filament into the heated nozzle at a controlled rate. Heated nozzle: Tools that melts the filament at high temp.(180-220 0 Celsius) Print bed/ build platform: A surface on which final object is printed.
  • 5. 3D PRINTING PROCESS Modelling : Process of designing and creating digital representation of an object using 3D modelling application (123D design ) Printing setup : Setting up the 3D model so that it can be printed using the printer by setting the parameters. You have used - FlashPrint to make your project – 3d car. 3D Printing Formats .stl .gx
  • 6. Filament And Material Types PLA • Thermoplastic. • Most commonly used. • Biodegradable and eco-friendly . • Used in items such as water bottles, plastic cups and mugs, food containers and small electronic product casings. ABS • Thermoplastic • Higher temperature for melting so not all 3D printers have a heated nozzle and extruder than can support ABS • Not biodegradable or eco-friendly • Commonly used in manufacturing plastic industrial pipes, Lego blocks, car parts and in kitchen appliances. • Strong, durable and less flexible than PLA • Quite heat resistant.
  • 7. • Electricity : A form of energy used to drive televisions, washing machine, mobile telephones. • Electronics : Control electric circuits. • Current : Rate of flow of charges • Embedded systems : It is a specialized computer system with a specific function within a larger mechanical or electrical system. Examples - • Air conditioner in car. • Seatbelt warning in car. • Garden watering system. • Motion sensitive security system. An “embedded system” is known as an input, which is a device that contains a computer unit or a microcontroller that reads the changes in an environment. It then controls an output system to change the environment.
  • 8. Electric Circuit : Group of electric components connected by conductors for current flow Voltage Source Conductive Path Load It causes the current to flow through circuit. Consumes electric power. Through which current flows. Types of Voltage Source Alternating Current : Wall Socket Direct Current : Battery
  • 9. ELECTRICAL SCHEMATIC Ohm’s Law • Voltage is the difference in charge between two points. • Measured in Volts(V). • Resistance is a material’s tendency to resist the flow of charge (current). • Measured in Ohms(Ω). • Current is the rate at which charge is flowing. • Measured in Amperes(A).
  • 10. Batteries : Change chemical to electrical energy, consists of many cells. Resistor : Electrical component for electrical resistance. Breadboard : It is a solder less board that can be used to make temporary circuits. 4-band Resistor 5-band Resistor How to calculate resistor value:
  • 11.
  • 12. Diode : Two Terminal electronic component Current flows from anode to cathode. DIODE vs LED • LED : A diode emits light when current flows. Uses advanced semiconductor materials. • Advantages of LED over traditional light bulbs: more robust; consume less power; last longer. Testing of an LED using Multimeter Set the multimeter to diode test option. To anodeTo cathode • Notice the dim light of the LED due to the electric current flowing through the LED (the diode). • Here you can read the voltage across the LED.
  • 13. EXAMPLE:LED Flash Task SCHEMATIC DIAGRAM: 1. Students will be required to design or complete a circuit diagram related to a product or process suggested. (Sample as shown aside.) 2. There will also be a written element in relation to the circuit diagram. e.g. How many LEDs are connected? To which pin LED is connected to? CODING: A code will be provided and students will be asked to redesign or adjust the program code by adding appropriate component parts. (a) Int ledPin = 10; (wrong) int ledPin = 10; (correct) (b) void loop() (wrong) void loop() { (correct) (c) Make the LED off for 5 secs. delay(5000); Int ledPin = 10; // the setup function runs once when you press reset or power the board void setup() { pinMode(ledPin, OUTPUT); } // the loop function runs over and over again forever void loop() digitalWrite(ledPin, HIGH);// turn the LED on (HIGH is the voltage level) delay(2000); // wait for 2 seconds digitalWrite(ledPin, LOW); // turn the LED off by making the voltage LOW delay(2000); // wait for 2 seconds }
  • 14. MOTORS 1. Have two leads – red(positive) and black(negative). 2. It runs at high RPM(revolutions per minute). 3. Controlling DC motor directly from Arduino board will damage it. 1. Have three leads – orange(control), red(power) and brown(ground). 2. It takes angle commands from a series of pulses(sent every 20 milliseconds) sent from Arduino. 3. Controlling servo motor is done from a special library called - ‘Servo’. DC Motors Servo Motors Applications Fan, Hair dryers, car, lifts, cranes Robots, Camera auto focus, Automatic Door openers PWM Signal • Pulse Width Modulation (PWM), is a technique for generating an analog signal using digital means. Toff T = Time Period (secs) = Ton + Toff ; Frequency (Hertz) Duty Cycle Ton