Skip to main content

Featured Post

Kerala's First 3D Printed Building

Created as a showcase project, AMAZE-28, the single-room summer house, was successfully constructed within 28 days on the grounds of the Kerala State Nirmithi Kendra. The 3D-printed building at the Kerala State Nirmithi Kendra in Thiruvananthapuram. (Photo: Shekunj)  The inauguration of Kerala's inaugural 3D-printed structure, a 380-square-foot single-room summer house, is scheduled to take place on October 10 at the Kerala State Nirmithi Kendra (Kesnik) campus located in PTP Nagar, Thiruvananthapuram.  Conceived as a showcase initiative, the summer house named AMAZE-28 was successfully finished within a mere 28 days. This impressive project was executed by Tvasta, a construction technology startup based in Chennai, founded by alumni of IIT-Madras, who have entered into a memorandum of understanding (MoU) with Kesnik.  AMAZE-28 is perched upon a concrete foundation atop a gentle elevation within the Kesnik campus. Febi Varghese, the Director and Chief Executive Officer of...

Types of Additive Manufacturing

 

Additive Manufacturing (AM) is known by various names like - Rapid Prototyping, free form fabrication, 3D printing, digital fabrication, etc. Various AM technologies or 3D printing processes could be classified in three categories based on the form of feed materials used by them: 
  1. Liquid based AM
  2. Solid based AM
  3. Powder based AM

Liquid based AM

The AM technologies in which input material or feed material is in liquid form, are liquid based 3D printing technology.
Example - Stereo-lithography (SLA), Solid Ground Curing (SGC).
 
SLA Process (Image Source: laserfocusworld.com).


Solid Ground Curing Process (image Source: hisour.com).

 

Solid based AM 

In this category feed material is in the solid form. Example - Extrusion based AM or Fused Deposition Modelling (FDM) or Fused Filament Fabrication (FFF), Laminated Object Manufacturing (LOM). 
 
Fused Filament Fabrication process (Dolores R Serrano et al.).

 
Laminated Object Manufacturing (LOM) (Image source: custompartnet).

Powder based AM

This is the class in which feed material is in powder form. Generally, this category involves metal based 3D printing. 
Example - Selective Laser Sintering (SLS), Selective Laser Melting (SLM), etc.
 
Selective Laser Sintering Process (Image Source: manufactur3dmag.com).

 Although, as per ASTM standard  F2797, 3D printing methods are categorized into seven groups:

  1. Extrusion based Processes
  2. Material Jetting Processes
  3. Powder Fusion based Processes
  4. Vat Polymerization Processes
  5. Sheet Lamination Processes
  6. Direct Energy Deposition Processes
  7. Binder Jetting Processes

S.No.

Category

3D Printing Processes

1

 Extrusion based Processes

Fused Deposition Modelling (FDM) or Fused Filament Fabrication (FFF)

2

 Material Jetting Processes

Material Jetting

3

 Powder Fusion based Processes

Direct Metal Laser Sintering (DMLS), Electron Beam Melting (EBM), Selective Heat Sintering (SHS), Selective Laser Melting (SLM) and Selective Laser Sintering (SLS).

4

Vat Polymerization Processes

Stereolithography (SLA)

5

Sheet Lamination Processes

Ultrasonic Additive Manufacturing (UAM) and Laminated Object Manufacturing (LOM)

6

 Direct Energy Deposition Processes

Laser Engineered Net Shaping (LENS), Directed Light Fabrication, Direct Metal Deposition, 3D Laser Cladding

7

 Binder Jetting Processes

3DP Technology

  

References

  1. Krishnanand, Taufik M. (2021) Fused Filament Fabrication (FFF) Based 3D Printer and Its Design: A Review. In: Deepak B.B.V.L., Parhi D.R.K., Biswal B.B. (eds) Advanced Manufacturing Systems and Innovative Product Design. Lecture Notes in Mechanical Engineering. Springer, Singapore. https://doi.org/10.1007/978-981-15-9853-1_41

Comments

Popular posts from this blog

How to Know the NodeMCU IP Address for Your Next IoT Project

  NodeMCU IP Address: The NodeMCU is a popular development board for IoT projects. It’s small, affordable, and comes with built-in Wi-Fi connectivity, making it the perfect choice for creating connected devices. But before you can start building your NodeMCU projects, you need to know the IP address of your device. This IP address is essential for communicating with the NodeMCU from another device, such as a computer or smartphone. In this article, we’ll show you how to find the NodeMCU IP address, so you can get started with your next IoT project. Method 1: To Know the NodeMCU IP Address One of the easiest ways to find the NodeMCU IP address is by using the serial monitor in the Arduino IDE. First, connect your NodeMCU board to your computer using a micro-USB cable. Then, upload the following code to the NodeMCU: #include <ESP8266WiFi.h> void setup() { Serial.begin(115200); Serial.println(); Serial.print("Connecting to "); Serial.println(...

Making LED Fade in and out using Arduino

Hi Friends!!!!!! We have learnt how to blink LED with the help of Arduino, that's great! But now we will learn how to make a LED fade in and out gradually using a function in arduino : analogWrite(); Let's have a look on components, which we are going to need ahead. COMPONENT NEED -  Breadboard (1) Arduino (1) Jumper Wires LED 5mm (1) Resistor1K ohm (1) Power Source 5V (1) Now we place these components to make a proper circuit. CIRCUIT PREPRATION - Black wire - GND Red Wire   - +5V Take the breadboard and arduino. Connect the GND from arduino to -Ve terminal on breadboard. Similarly +5V to the +Ve terminal on breadboard.   Now place the LED on breadboard. Connect the positive terminal of LED to the 9th pin of arduino. Why we connecting the LED to the pin 9 of arduino ???? Because pin 9 of arduino can be used for PWM purpose. We needed PWM (Pulse Width Modulation) because Arduino board can only give digital signal (HI...

Python GUI and Arduino: Controlling LED using a Python based Graphics User Interface (GUI)

Python is popular language due to its simple syntax and user friendly properties. It is used in almost every domain form web development to scientific research and development applications. In this article python has been used to develop a simple GUI which used to control some hardware using a micro-controller. Video below shows the working of that GUI.   Components Needed Arduino UNO LED Breadboard Jumper wires Power supply Laptop with python installed Schematic and Circuit User have to command the controller using GUI. Controller will accept the command and  process it to give the out put. Schematic given below shows the process flow. Figure given below shows the circuit diagram of this article. GUI is run on the computer screen and a serial communication connection between Arduino and Computer is established using USB. The command from GUI send to Arduino using this connection. A 5V DC power supply is used to power up the Arduino as well as LED. However it should be noted t...