Skip to main content

3D printer



Introduction to 3D Printing 
The term 3D printing means making a solidifed item or structure by using material which is deposited, joined and solidified under computer control to create a 3 dimensional object. In the 1980s, 3D printing techniques were considered suitable only for the production of functional or aesthetic prototypes, and a more appropriate term for it at the time was rapid prototyping. Nowdays 3D printing is a part of our life and can be applied in different works.














3D-Printer
3D Printer is a device that can make 3D design or model by laying thin layers of materials. 3D printer is the device to produce very complex shapes or geometries that would be otherwise impossible to construct by hand.
Nowdays it is being used in different work of designing models, making facial mask, etc. The term 3D printing means making a solidifed item or structure by using material which is deposited, joined and solidified under computer control to create a 3 dimensional object. The most common and most used type of 3D Printing is:
1) Fused Deposition Modeling (FDM)
FDM Printers use a thermoplastic filament, which is heated to its melting point and then extruded, to create a three dimensional object.

2) Stereolithography (SLI)
Stereolithography is a form of 3D printing technology used for creating models, prototypes, patterns, and production parts in a layer by layer fashion using photochemical processes.



Functions of 3D Printer

1) It is a additive in manufacturing technology that helps create complex geometries.
2) It doesnot uses any harmful substance and is environment friendly.
3) It make a solidified object of a digital form.
4) It is fully controlled by computer, thus it reduce our work.


Facts:

1) 3D Printing was primarily used for prototyping products.
2) The first 3D printer, which used the stereolithography technique, was created by Charles W. Hull in the mid 1980s.
3) It uses a sensor in order to make a object perfect.

"As we are being more familier to the technology, we are being introduced to more useful inventions."

Thank you!



Comments

Popular posts from this blog

My father

My father name is sushil poudel. He is the one who helps me all the time. He is the backbone of our family. He is working as hard as he can to develop our family. He was born in 2032. He is 43 years old. He helps us anytime when we are in trouble. He supports me very much. I am very happy that i got a father like him that supports me in each and every condition of my life.  I think i am the luckiest person in the world that i got a father like him. I

Experience of police class

It was great opportunity given to us to learn about law, rules and many other things. We were taught about illeagle activities, cyber crime, etc. By a respected policemen. Getting education about these things will help us in future. There are many illeagle activities happening in our country so we must try to stop. We learned about effects of drug addiction, effects of smoking, rules and other different topics. It was very fun class and we learned about do many things that we should do and not do.  I am very interested for our next class. Hope we'll have our class very soon. Thank you!!

Qbasic Programs

1. WAP to find the area of rectangle. CLS INPUT "ENTER LENGTH" ; L INPUT "ENTER BREADTH" ; B AREA = L * B PRINT "AREA OF RECTANGLE IS =" ; AREA END 2.WAP to display the area of circle. CLS INPUT "ENTER RADIUS" ; R A = 22/7 * R ^ 2 PRINT "AREA IF CIRCLE" ; A END 3. WAP to find the area of square. CLS INPUT "ENTER LENGTH"; L A = L ^ 2 PRINT "AREA OF SQUARE =" ; A END 4. WAP to find the area of triangle. CLS INPUT "ENTER BASE" ; B INPUT "ENTER HEIGHT"; H A = 1/2 * B * H PRINT "AREA OF TRIANGLE=";  A END 5. WAP to find the volume of cylinder. CLS INPUT "ENTER RADIUS" ; R INPUT "ENTER HEIGHT" ; H V = 22/7 * R ^ 2 * H PRINT "VOLUME OF CYLINDER=" ; V END 6. WAP to input percentage and display pass or fail. CLS INPUT "ENTER PERCENTAGE"; P IF P > = 40 THEN PRINT "PASS" ELSE PRINT "FAIL" END...