SlideShare a Scribd company logo
International Journal of Technical Research and Applications e-ISSN: 2320-8163,
www.ijtra.com Volume 2, Issue 1 (jan-feb 2014), PP. 53-55
53 | P a g e
REVIEW OF VIRTUAL ARTICULATED
ROBOT
Sudip Chakraborty
Swami Vivekananda University
Madhya Pradesh, India
Abstract—In the field of robotic study, practical approach is
too much relevant. The successful implementation of different
complex algorithm, require practical aspect. At the time of
development, major student design a physical robot to clarify the
major complex theory. There are some constraints at the initial
stage. The major constraints are design, implementation of the
coordinate geometry, DH notation, kinematic theory, and so on.
All the implementation should be feasible to move the articulated
robotic arm. The job is tedious for the beginners. This paper is
the reference to build up an articulated robotic arm virtually.
Here is a description where an articulated robotic arm can be
created virtually, which will act as real robot does. All theory like
coordinated geometry, DH notation can be applied.
Key words—5DF Articulated arm, Robot Virtualization, DH-
notation, co-ordinate Geometry etc.
I. INTRODUCTION
Now we are ready to design a 5df articulated robot
virtually. Here the following diagram depicts how work flow
should be.
II. DESCRIPTION OF BLOCK DIAGRAMS
Study– Many sources are available to gather the
Preliminary knowledge to design an articulated robot. I have
references few of them. For our recollection, we will review
about basic item. At first we have to synchronize our mind that
coordination system of computer screen.
Fig:-1: Computer Screen Coordinate
Fig:-2: Screen shot
International Journal of Technical Research and Applications e-ISSN: 2320-8163,
www.ijtra.com Volume 2, Issue 1 (jan-feb 2013), PP. 53-55
54 | P a g e
The DH notation is important. DH notation, Denavit–
Hartenberg parameters are
Theta(angle)– angle between Xi-1 and xi axes measured
about the Zi-1 axis in the right-hand sense.
d(distance)– Distance along Z axis from the origin of frame
r (radius)– distance or radius along X- axis from the origin
of intersection of xi-axis with zi-1 axis to the origin of frame.
Alpha (angle) – Angle between zi-1 and zi axes measured
about xi-axis in the right-hand sense.
In the DH notation, Y-axis is eliminated. Only to complete
and calculate the 3d geometry we put the value of Y-axis.
We remember that, matrix manipulation is not
communicative. So need to maintain the manipulation order.
The order is as follows:-
i-1Ti= Rz(theta).Tz(d).Tx(r).Rx(alpha)
i-1Ti= Resultant matrix
Rz(theta) = R-> Rotate 3D matrix ,
z -> along Z-axis
Theta -> amount of rotation angle
Tz(d) = T -> Translation
z-> along Z-axis
D -> amount of translation
Tx(r) = T -> Translation
x -> along x axis
r -> amount of translation is r.
Rx (alpha) = R-> Rotate 3D matrix,
x -> along x axis
Alpha -> amount of rotation angle
The above order is left to right. To test the proceedings,
take a 4 by 4 identity matrix.
First rotate theta angle along z-axis. on result matrix,
translate d amount, along z-axis. Next, on result, translate r
amount along X-axis. Last on result, rotate amount of alpha
along X-axis. In OpenGL, to implement the above sequence,
the commands are as follows –
GL.glPushMatrix();
GL.glLoadIdentity();
GL.glRotatef(theta, 0, 1, 0); //theta
GL.glTranslatef(0, d, 0); // d
GL.glTranslatef(r, 0, 0); // r
GL.glRotatef(alph, 1, 0,0);// alpha
GL.glPopMatrix();
To view the last result of the matrix, create an array as
follows-
Static float [] m = new float [16];
Add the following code-
GL.glGetFloatv(GL.GL_MODELVIEW_MATRIX, m);
View the last result. Now change the manipulation order
and observe the result is different on different manipulation. So
strictly maintain the order otherwise robot’s orientation will not
move according to our desire position.
III. READY .NET ENVIRONMENT
To create the virtual robot we need visual studio, dot net
2010 and C sharp. Step up as follows-
Step -01) create a folder on desktop (or your choice)
rename “test”.
Step-02) download a zip file from the following link:-
https://sites.google.com/site/leniel/blog/RobotArmOpenGLCS
harp.zip?attredirects=0
step-03) unzip the file. Copy the following file and paste to
“test” folder.
freeglut.dll, glut32.dll, Tao.FreeGlut.dll, GLU.cs,
OpenGL.cs
IV. READY OPENGL ENVIRONMENT
step-01) open VS2010> File> New> project> Windows
Forms Application> Type a name> ok.
Step-2) Delete Form1.cs from solution explorer
step-3) go to the solution explorer window -> right clock on
project name (”test”) -> add -> existing item ->select GLU.cs,
OpenGL.cs -> press “Add” button.
Step-4) right click on project name -> Add Reference ->
browse -> select Tao.FreeGlut.dll -> Ok
V. BASIC FUNCTION
Some basic function that forms a robot:-
Static void Draw_Link(float th,float _d, float _a, float alph)
The above function is the main function to create different
link. Four parameters are passed to it. In spite of them only
theta are dynamic for R-joint or Revolute joints. And for
prismatic joint or P-joints, d is dynamic.
Static void DrawUnitCylinder(int numSegs)
The above function create joint with shaded number of
shade by “numSegs” parameter. It creates a 3D effect on
material of robot.
Static void Create_Work_Space(void);
This function can be used to create the workspace.
The above and other required function should be in main
loop, so that every time OpenGL can create all node and link.
Display buffer imposed on previous drawing. The above
International Journal of Technical Research and Applications e-ISSN: 2320-8163,
www.ijtra.com Volume 2, Issue 1 (jan-feb 2013), PP. 53-55
55 | P a g e
functions are for concept only. Many more function may come
to create a realistic robot.
VI. DRAW ARM
Degree of freedom means number of movable or rotatable
joints. When draw a link, manipulate matrix on previous. So
that robot orientation can build up as a tree like structure. It
starts with Base0 that is immobile. Like root of the tree. Now
create a new matrix on base matrix. Create a new link means
transforming the previous matrix, yield new matrix that is an
arm, and adds one degree. Generally Except theta, all
parameters are static (for R-joint), that is initially defined.
Entire project these parameters (d, r, alpha) are not required to
change.
VII. CONCLUSION
Now a day’s computer is available to everyone. Creation
anything virtually is cheap and less time consume. It is also
more flexible to move anywhere. Even in train we can work
with the robot, where practical robot is less flexible to move
anywhere, anytime. The main purpose to write this paper is,
before to create a practical robot, test the robot virtually. The
concept will be more cleared to design a practical robot.
REFERENCES
[1] Mittal, R.K & Nagrath, I.J “Robotics and Control”, Tata
McGraw-Hill Education Private Limited, ISBN-10: 0-07-
048293-4. 2012, Page no- 71-111
[2] Saha, S.K “Introduction to Robotics”, Tata McGraw-Hill
Education Private Limited, ISBN-10: 0-07-066900-0. 2011,
Page no- 113-121
[3] Niku, Saeed B. “Introduction to Robotics, Analysis, Systems,
Applications”, PHI Learning Private Limited, ISBN-978-81-
203-2379-7, 2009, Page no- 113-121
[4] Klafter , Richard D. , Chmielewski, Thomas A., Negin, Michael
“Robotic Engineering: An Integrated Approach”, PHI Learning
Private Limited, ISBN-978-81-203-0842-8,2009, Page no- 610-
619
[5] Blankenship, J and Mishal, S “Robot Programmer’s
Bonanza”,BPB Publications, ISBN-10:81-8333-290-0, 2008,
Page no-65-72
[6] Appin Knowledge Solutions “Robotics”,BPB Publications,
ISBN-10:81-8333-212-9, 2007, Page no-189-215
[7] http://colinfahey.com/csharp_wrapper_for_opengl/csharp_wrap
per_for_opengl.html
[8] https://sites.google.com/site/leniel/blog/RobotArmOpenGLCSha
rp.zip?attredirects=0
[9] http://www.glprogramming.com/blue/ch03.html
[10] http://www.glprogramming.com/blue/ch03.html#id46859
[11] http://www.movesinstitute.org/~mcdowell/mv4202/notes/lect9.p
df
[12] https://www.cs.duke.edu/courses/cps124/fall09/notes/05_pipelin
e/cox_04transformations.pdf
[13] http://en.wikipedia.org/wiki/Denavit–Hartenberg_parameters.

More Related Content

Viewers also liked

COMPARATIVE STUDY OF BELL PEPPER ON THE ASPECTS OF THEIR APPROXIMATE ANALYSIS...
COMPARATIVE STUDY OF BELL PEPPER ON THE ASPECTS OF THEIR APPROXIMATE ANALYSIS...COMPARATIVE STUDY OF BELL PEPPER ON THE ASPECTS OF THEIR APPROXIMATE ANALYSIS...
COMPARATIVE STUDY OF BELL PEPPER ON THE ASPECTS OF THEIR APPROXIMATE ANALYSIS...
International Journal of Technical Research & Application
 
IMPACT ANALYSIS OF DUST POLLUTION WITHIN KATRAJ
IMPACT ANALYSIS OF DUST POLLUTION WITHIN KATRAJIMPACT ANALYSIS OF DUST POLLUTION WITHIN KATRAJ
IMPACT ANALYSIS OF DUST POLLUTION WITHIN KATRAJ
International Journal of Technical Research & Application
 
MAPPING REMOTE PLANTS THROUGH REMOTE SENSING TECHNOLOGY AND GIS
MAPPING REMOTE PLANTS THROUGH REMOTE SENSING TECHNOLOGY AND GISMAPPING REMOTE PLANTS THROUGH REMOTE SENSING TECHNOLOGY AND GIS
MAPPING REMOTE PLANTS THROUGH REMOTE SENSING TECHNOLOGY AND GIS
International Journal of Technical Research & Application
 
INVESTIGATION OF STRESSES IN CANTILEVER BEAM BY FEM AND ITS EXPERIMENTAL VERI...
INVESTIGATION OF STRESSES IN CANTILEVER BEAM BY FEM AND ITS EXPERIMENTAL VERI...INVESTIGATION OF STRESSES IN CANTILEVER BEAM BY FEM AND ITS EXPERIMENTAL VERI...
INVESTIGATION OF STRESSES IN CANTILEVER BEAM BY FEM AND ITS EXPERIMENTAL VERI...
International Journal of Technical Research & Application
 
ENVISIONING AND IMPLEMENTING PROJECT IN REAL TIME (AN ALGORITHMIC APPROACH)
ENVISIONING AND IMPLEMENTING PROJECT IN REAL TIME (AN ALGORITHMIC APPROACH)ENVISIONING AND IMPLEMENTING PROJECT IN REAL TIME (AN ALGORITHMIC APPROACH)
ENVISIONING AND IMPLEMENTING PROJECT IN REAL TIME (AN ALGORITHMIC APPROACH)
International Journal of Technical Research & Application
 
MECHANISMS OF PHOTOPERIOD IN REGULATION OF RICE FLOWERING
MECHANISMS OF PHOTOPERIOD IN REGULATION OF RICE FLOWERING MECHANISMS OF PHOTOPERIOD IN REGULATION OF RICE FLOWERING
MECHANISMS OF PHOTOPERIOD IN REGULATION OF RICE FLOWERING
International Journal of Technical Research & Application
 
IDENTIFICATION OF SUPPLY CHAIN MANAGEMENT PROBLEMS: A REVIEW
IDENTIFICATION OF SUPPLY CHAIN MANAGEMENT PROBLEMS: A REVIEWIDENTIFICATION OF SUPPLY CHAIN MANAGEMENT PROBLEMS: A REVIEW
IDENTIFICATION OF SUPPLY CHAIN MANAGEMENT PROBLEMS: A REVIEW
International Journal of Technical Research & Application
 
PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...
PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...
PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...
International Journal of Technical Research & Application
 
PREVALENCE EVALUATION OF DIABETIC RETINOPATHY
PREVALENCE EVALUATION OF DIABETIC RETINOPATHYPREVALENCE EVALUATION OF DIABETIC RETINOPATHY
PREVALENCE EVALUATION OF DIABETIC RETINOPATHY
International Journal of Technical Research & Application
 
THE FUNDAMENTAL ANALYSIS-THE BEST WAY TO EVALUATE EQUITY SHARES
THE FUNDAMENTAL ANALYSIS-THE BEST WAY TO EVALUATE EQUITY SHARESTHE FUNDAMENTAL ANALYSIS-THE BEST WAY TO EVALUATE EQUITY SHARES
THE FUNDAMENTAL ANALYSIS-THE BEST WAY TO EVALUATE EQUITY SHARES
International Journal of Technical Research & Application
 
CONVECTIVE HEAT TRANSFER ENHANCEMENTS IN TUBE USING LOUVERED STRIP INSERT
CONVECTIVE HEAT TRANSFER ENHANCEMENTS IN TUBE USING LOUVERED STRIP INSERTCONVECTIVE HEAT TRANSFER ENHANCEMENTS IN TUBE USING LOUVERED STRIP INSERT
CONVECTIVE HEAT TRANSFER ENHANCEMENTS IN TUBE USING LOUVERED STRIP INSERT
International Journal of Technical Research & Application
 
AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...
AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...
AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...
International Journal of Technical Research & Application
 
DYNAMIC MONITORING OF THE EFFECT OF SPECIAL KINESITHERAPEUTIC PROGRAM ON PAIN...
DYNAMIC MONITORING OF THE EFFECT OF SPECIAL KINESITHERAPEUTIC PROGRAM ON PAIN...DYNAMIC MONITORING OF THE EFFECT OF SPECIAL KINESITHERAPEUTIC PROGRAM ON PAIN...
DYNAMIC MONITORING OF THE EFFECT OF SPECIAL KINESITHERAPEUTIC PROGRAM ON PAIN...
International Journal of Technical Research & Application
 
130509
130509130509
SCANNING ELECTRON MICROSCOPE OF DISINFECTANTS EXPOSED PSEUDOMONAS AERUGINOSA ...
SCANNING ELECTRON MICROSCOPE OF DISINFECTANTS EXPOSED PSEUDOMONAS AERUGINOSA ...SCANNING ELECTRON MICROSCOPE OF DISINFECTANTS EXPOSED PSEUDOMONAS AERUGINOSA ...
SCANNING ELECTRON MICROSCOPE OF DISINFECTANTS EXPOSED PSEUDOMONAS AERUGINOSA ...
International Journal of Technical Research & Application
 
OXIDATIVE STRESS AND NITRIC OXIDE: A SIGNIFICANT MARKER IN CORONARY ARTERY DI...
OXIDATIVE STRESS AND NITRIC OXIDE: A SIGNIFICANT MARKER IN CORONARY ARTERY DI...OXIDATIVE STRESS AND NITRIC OXIDE: A SIGNIFICANT MARKER IN CORONARY ARTERY DI...
OXIDATIVE STRESS AND NITRIC OXIDE: A SIGNIFICANT MARKER IN CORONARY ARTERY DI...
International Journal of Technical Research & Application
 
FACTORS AFFECTING PROJECT SUSTAINABILITY BEYOND DONOR’S SUPPORT. THE CASE OF ...
FACTORS AFFECTING PROJECT SUSTAINABILITY BEYOND DONOR’S SUPPORT. THE CASE OF ...FACTORS AFFECTING PROJECT SUSTAINABILITY BEYOND DONOR’S SUPPORT. THE CASE OF ...
FACTORS AFFECTING PROJECT SUSTAINABILITY BEYOND DONOR’S SUPPORT. THE CASE OF ...
International Journal of Technical Research & Application
 
ROLE OF ICT IN ACHIEVING COMPLETE GENDER EQUALITY IN INDIA
ROLE OF ICT IN ACHIEVING COMPLETE GENDER EQUALITY IN INDIAROLE OF ICT IN ACHIEVING COMPLETE GENDER EQUALITY IN INDIA
ROLE OF ICT IN ACHIEVING COMPLETE GENDER EQUALITY IN INDIA
International Journal of Technical Research & Application
 
STUDIES ON THE ANTIBIOTIC RESISTANCE USING URINARY TRACT ISOLATES OF E.COLI.
STUDIES ON THE ANTIBIOTIC RESISTANCE USING URINARY TRACT ISOLATES OF E.COLI.STUDIES ON THE ANTIBIOTIC RESISTANCE USING URINARY TRACT ISOLATES OF E.COLI.
STUDIES ON THE ANTIBIOTIC RESISTANCE USING URINARY TRACT ISOLATES OF E.COLI.
International Journal of Technical Research & Application
 

Viewers also liked (20)

COMPARATIVE STUDY OF BELL PEPPER ON THE ASPECTS OF THEIR APPROXIMATE ANALYSIS...
COMPARATIVE STUDY OF BELL PEPPER ON THE ASPECTS OF THEIR APPROXIMATE ANALYSIS...COMPARATIVE STUDY OF BELL PEPPER ON THE ASPECTS OF THEIR APPROXIMATE ANALYSIS...
COMPARATIVE STUDY OF BELL PEPPER ON THE ASPECTS OF THEIR APPROXIMATE ANALYSIS...
 
IMPACT ANALYSIS OF DUST POLLUTION WITHIN KATRAJ
IMPACT ANALYSIS OF DUST POLLUTION WITHIN KATRAJIMPACT ANALYSIS OF DUST POLLUTION WITHIN KATRAJ
IMPACT ANALYSIS OF DUST POLLUTION WITHIN KATRAJ
 
MAPPING REMOTE PLANTS THROUGH REMOTE SENSING TECHNOLOGY AND GIS
MAPPING REMOTE PLANTS THROUGH REMOTE SENSING TECHNOLOGY AND GISMAPPING REMOTE PLANTS THROUGH REMOTE SENSING TECHNOLOGY AND GIS
MAPPING REMOTE PLANTS THROUGH REMOTE SENSING TECHNOLOGY AND GIS
 
Ijtra150317
Ijtra150317Ijtra150317
Ijtra150317
 
INVESTIGATION OF STRESSES IN CANTILEVER BEAM BY FEM AND ITS EXPERIMENTAL VERI...
INVESTIGATION OF STRESSES IN CANTILEVER BEAM BY FEM AND ITS EXPERIMENTAL VERI...INVESTIGATION OF STRESSES IN CANTILEVER BEAM BY FEM AND ITS EXPERIMENTAL VERI...
INVESTIGATION OF STRESSES IN CANTILEVER BEAM BY FEM AND ITS EXPERIMENTAL VERI...
 
ENVISIONING AND IMPLEMENTING PROJECT IN REAL TIME (AN ALGORITHMIC APPROACH)
ENVISIONING AND IMPLEMENTING PROJECT IN REAL TIME (AN ALGORITHMIC APPROACH)ENVISIONING AND IMPLEMENTING PROJECT IN REAL TIME (AN ALGORITHMIC APPROACH)
ENVISIONING AND IMPLEMENTING PROJECT IN REAL TIME (AN ALGORITHMIC APPROACH)
 
MECHANISMS OF PHOTOPERIOD IN REGULATION OF RICE FLOWERING
MECHANISMS OF PHOTOPERIOD IN REGULATION OF RICE FLOWERING MECHANISMS OF PHOTOPERIOD IN REGULATION OF RICE FLOWERING
MECHANISMS OF PHOTOPERIOD IN REGULATION OF RICE FLOWERING
 
IDENTIFICATION OF SUPPLY CHAIN MANAGEMENT PROBLEMS: A REVIEW
IDENTIFICATION OF SUPPLY CHAIN MANAGEMENT PROBLEMS: A REVIEWIDENTIFICATION OF SUPPLY CHAIN MANAGEMENT PROBLEMS: A REVIEW
IDENTIFICATION OF SUPPLY CHAIN MANAGEMENT PROBLEMS: A REVIEW
 
PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...
PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...
PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...
 
PREVALENCE EVALUATION OF DIABETIC RETINOPATHY
PREVALENCE EVALUATION OF DIABETIC RETINOPATHYPREVALENCE EVALUATION OF DIABETIC RETINOPATHY
PREVALENCE EVALUATION OF DIABETIC RETINOPATHY
 
THE FUNDAMENTAL ANALYSIS-THE BEST WAY TO EVALUATE EQUITY SHARES
THE FUNDAMENTAL ANALYSIS-THE BEST WAY TO EVALUATE EQUITY SHARESTHE FUNDAMENTAL ANALYSIS-THE BEST WAY TO EVALUATE EQUITY SHARES
THE FUNDAMENTAL ANALYSIS-THE BEST WAY TO EVALUATE EQUITY SHARES
 
CONVECTIVE HEAT TRANSFER ENHANCEMENTS IN TUBE USING LOUVERED STRIP INSERT
CONVECTIVE HEAT TRANSFER ENHANCEMENTS IN TUBE USING LOUVERED STRIP INSERTCONVECTIVE HEAT TRANSFER ENHANCEMENTS IN TUBE USING LOUVERED STRIP INSERT
CONVECTIVE HEAT TRANSFER ENHANCEMENTS IN TUBE USING LOUVERED STRIP INSERT
 
AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...
AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...
AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...
 
DYNAMIC MONITORING OF THE EFFECT OF SPECIAL KINESITHERAPEUTIC PROGRAM ON PAIN...
DYNAMIC MONITORING OF THE EFFECT OF SPECIAL KINESITHERAPEUTIC PROGRAM ON PAIN...DYNAMIC MONITORING OF THE EFFECT OF SPECIAL KINESITHERAPEUTIC PROGRAM ON PAIN...
DYNAMIC MONITORING OF THE EFFECT OF SPECIAL KINESITHERAPEUTIC PROGRAM ON PAIN...
 
130509
130509130509
130509
 
SCANNING ELECTRON MICROSCOPE OF DISINFECTANTS EXPOSED PSEUDOMONAS AERUGINOSA ...
SCANNING ELECTRON MICROSCOPE OF DISINFECTANTS EXPOSED PSEUDOMONAS AERUGINOSA ...SCANNING ELECTRON MICROSCOPE OF DISINFECTANTS EXPOSED PSEUDOMONAS AERUGINOSA ...
SCANNING ELECTRON MICROSCOPE OF DISINFECTANTS EXPOSED PSEUDOMONAS AERUGINOSA ...
 
OXIDATIVE STRESS AND NITRIC OXIDE: A SIGNIFICANT MARKER IN CORONARY ARTERY DI...
OXIDATIVE STRESS AND NITRIC OXIDE: A SIGNIFICANT MARKER IN CORONARY ARTERY DI...OXIDATIVE STRESS AND NITRIC OXIDE: A SIGNIFICANT MARKER IN CORONARY ARTERY DI...
OXIDATIVE STRESS AND NITRIC OXIDE: A SIGNIFICANT MARKER IN CORONARY ARTERY DI...
 
FACTORS AFFECTING PROJECT SUSTAINABILITY BEYOND DONOR’S SUPPORT. THE CASE OF ...
FACTORS AFFECTING PROJECT SUSTAINABILITY BEYOND DONOR’S SUPPORT. THE CASE OF ...FACTORS AFFECTING PROJECT SUSTAINABILITY BEYOND DONOR’S SUPPORT. THE CASE OF ...
FACTORS AFFECTING PROJECT SUSTAINABILITY BEYOND DONOR’S SUPPORT. THE CASE OF ...
 
ROLE OF ICT IN ACHIEVING COMPLETE GENDER EQUALITY IN INDIA
ROLE OF ICT IN ACHIEVING COMPLETE GENDER EQUALITY IN INDIAROLE OF ICT IN ACHIEVING COMPLETE GENDER EQUALITY IN INDIA
ROLE OF ICT IN ACHIEVING COMPLETE GENDER EQUALITY IN INDIA
 
STUDIES ON THE ANTIBIOTIC RESISTANCE USING URINARY TRACT ISOLATES OF E.COLI.
STUDIES ON THE ANTIBIOTIC RESISTANCE USING URINARY TRACT ISOLATES OF E.COLI.STUDIES ON THE ANTIBIOTIC RESISTANCE USING URINARY TRACT ISOLATES OF E.COLI.
STUDIES ON THE ANTIBIOTIC RESISTANCE USING URINARY TRACT ISOLATES OF E.COLI.
 

Similar to REVIEW OF VIRTUAL ARTICULATED ROBOT

Robocup2006
Robocup2006Robocup2006
Design and development of DrawBot using image processing
Design and development of DrawBot using image processing Design and development of DrawBot using image processing
Design and development of DrawBot using image processing
IJECEIAES
 
Drawbot Final Presentation
Drawbot Final PresentationDrawbot Final Presentation
Drawbot Final Presentation
gldec0513
 
GIS 5103 – Fundamentals of GISLecture 83D GIS.docx
GIS 5103 – Fundamentals of GISLecture 83D GIS.docxGIS 5103 – Fundamentals of GISLecture 83D GIS.docx
GIS 5103 – Fundamentals of GISLecture 83D GIS.docx
shericehewat
 
DESIGN, IMPLEMENT AND SIMULATE AN AGENT MOTION PLANNING ALGORITHM IN 2D AND 3...
DESIGN, IMPLEMENT AND SIMULATE AN AGENT MOTION PLANNING ALGORITHM IN 2D AND 3...DESIGN, IMPLEMENT AND SIMULATE AN AGENT MOTION PLANNING ALGORITHM IN 2D AND 3...
DESIGN, IMPLEMENT AND SIMULATE AN AGENT MOTION PLANNING ALGORITHM IN 2D AND 3...
csandit
 
Biped presentationslides
Biped presentationslidesBiped presentationslides
Biped presentationslides
riyanto st mt
 
Functional Patterns for C++ Multithreading (C++ Dev Meetup Iasi)
Functional Patterns for C++ Multithreading (C++ Dev Meetup Iasi)Functional Patterns for C++ Multithreading (C++ Dev Meetup Iasi)
Functional Patterns for C++ Multithreading (C++ Dev Meetup Iasi)
Ovidiu Farauanu
 
Design of a Library of Motion Functions for a Humanoid Robot for a Soccer Game
Design of a Library of Motion Functions for a Humanoid Robot for a Soccer GameDesign of a Library of Motion Functions for a Humanoid Robot for a Soccer Game
Design of a Library of Motion Functions for a Humanoid Robot for a Soccer Game
Universidad Complutense de Madrid
 
Design the implementation of Anytime D Star on an Occupancy Grid
Design the implementation of Anytime D Star on an Occupancy GridDesign the implementation of Anytime D Star on an Occupancy Grid
Design the implementation of Anytime D Star on an Occupancy Grid
Ankita Tiwari
 
Robotics - introduction to Robotics
Robotics -  introduction to Robotics  Robotics -  introduction to Robotics
Robotics - introduction to Robotics
Vibrant Technologies & Computers
 
New mixed integer programming for facility layout design without loss of depa...
New mixed integer programming for facility layout design without loss of depa...New mixed integer programming for facility layout design without loss of depa...
New mixed integer programming for facility layout design without loss of depa...
Alexander Decker
 
STAAD.Pro_Trg_Course_Material
STAAD.Pro_Trg_Course_MaterialSTAAD.Pro_Trg_Course_Material
STAAD.Pro_Trg_Course_MaterialVAIBHAV JAIN
 
IRJET- Lane Segmentation for Self-Driving Cars using Image Processing
IRJET-  	  Lane Segmentation for Self-Driving Cars using Image ProcessingIRJET-  	  Lane Segmentation for Self-Driving Cars using Image Processing
IRJET- Lane Segmentation for Self-Driving Cars using Image Processing
IRJET Journal
 
Final Design Project - Memo (with GUI)
Final Design Project - Memo (with GUI)Final Design Project - Memo (with GUI)
Final Design Project - Memo (with GUI)Alex Larcheveque
 
Exposing Architecture in Hybrid Programs
Exposing Architecture in Hybrid ProgramsExposing Architecture in Hybrid Programs
Exposing Architecture in Hybrid Programs
Ivan Ruchkin
 
Designing a suitable robotic arm for loading and unloading of material on lat...
Designing a suitable robotic arm for loading and unloading of material on lat...Designing a suitable robotic arm for loading and unloading of material on lat...
Designing a suitable robotic arm for loading and unloading of material on lat...
IRJET Journal
 
ECET 3640 Group 2 Project Report
ECET 3640 Group 2 Project ReportECET 3640 Group 2 Project Report
ECET 3640 Group 2 Project ReportLogan Isler
 

Similar to REVIEW OF VIRTUAL ARTICULATED ROBOT (20)

Robocup2006
Robocup2006Robocup2006
Robocup2006
 
Design and development of DrawBot using image processing
Design and development of DrawBot using image processing Design and development of DrawBot using image processing
Design and development of DrawBot using image processing
 
Ijetcas14 308
Ijetcas14 308Ijetcas14 308
Ijetcas14 308
 
Drawbot Final Presentation
Drawbot Final PresentationDrawbot Final Presentation
Drawbot Final Presentation
 
GIS 5103 – Fundamentals of GISLecture 83D GIS.docx
GIS 5103 – Fundamentals of GISLecture 83D GIS.docxGIS 5103 – Fundamentals of GISLecture 83D GIS.docx
GIS 5103 – Fundamentals of GISLecture 83D GIS.docx
 
DESIGN, IMPLEMENT AND SIMULATE AN AGENT MOTION PLANNING ALGORITHM IN 2D AND 3...
DESIGN, IMPLEMENT AND SIMULATE AN AGENT MOTION PLANNING ALGORITHM IN 2D AND 3...DESIGN, IMPLEMENT AND SIMULATE AN AGENT MOTION PLANNING ALGORITHM IN 2D AND 3...
DESIGN, IMPLEMENT AND SIMULATE AN AGENT MOTION PLANNING ALGORITHM IN 2D AND 3...
 
Automatic P2R Published Paper P1277-1283
Automatic P2R Published Paper P1277-1283Automatic P2R Published Paper P1277-1283
Automatic P2R Published Paper P1277-1283
 
Biped presentationslides
Biped presentationslidesBiped presentationslides
Biped presentationslides
 
Functional Patterns for C++ Multithreading (C++ Dev Meetup Iasi)
Functional Patterns for C++ Multithreading (C++ Dev Meetup Iasi)Functional Patterns for C++ Multithreading (C++ Dev Meetup Iasi)
Functional Patterns for C++ Multithreading (C++ Dev Meetup Iasi)
 
Design of a Library of Motion Functions for a Humanoid Robot for a Soccer Game
Design of a Library of Motion Functions for a Humanoid Robot for a Soccer GameDesign of a Library of Motion Functions for a Humanoid Robot for a Soccer Game
Design of a Library of Motion Functions for a Humanoid Robot for a Soccer Game
 
Design the implementation of Anytime D Star on an Occupancy Grid
Design the implementation of Anytime D Star on an Occupancy GridDesign the implementation of Anytime D Star on an Occupancy Grid
Design the implementation of Anytime D Star on an Occupancy Grid
 
Robotics - introduction to Robotics
Robotics -  introduction to Robotics  Robotics -  introduction to Robotics
Robotics - introduction to Robotics
 
New mixed integer programming for facility layout design without loss of depa...
New mixed integer programming for facility layout design without loss of depa...New mixed integer programming for facility layout design without loss of depa...
New mixed integer programming for facility layout design without loss of depa...
 
STAAD.Pro_Trg_Course_Material
STAAD.Pro_Trg_Course_MaterialSTAAD.Pro_Trg_Course_Material
STAAD.Pro_Trg_Course_Material
 
IRJET- Lane Segmentation for Self-Driving Cars using Image Processing
IRJET-  	  Lane Segmentation for Self-Driving Cars using Image ProcessingIRJET-  	  Lane Segmentation for Self-Driving Cars using Image Processing
IRJET- Lane Segmentation for Self-Driving Cars using Image Processing
 
Final Design Project - Memo (with GUI)
Final Design Project - Memo (with GUI)Final Design Project - Memo (with GUI)
Final Design Project - Memo (with GUI)
 
Final Project
Final ProjectFinal Project
Final Project
 
Exposing Architecture in Hybrid Programs
Exposing Architecture in Hybrid ProgramsExposing Architecture in Hybrid Programs
Exposing Architecture in Hybrid Programs
 
Designing a suitable robotic arm for loading and unloading of material on lat...
Designing a suitable robotic arm for loading and unloading of material on lat...Designing a suitable robotic arm for loading and unloading of material on lat...
Designing a suitable robotic arm for loading and unloading of material on lat...
 
ECET 3640 Group 2 Project Report
ECET 3640 Group 2 Project ReportECET 3640 Group 2 Project Report
ECET 3640 Group 2 Project Report
 

More from International Journal of Technical Research & Application

STUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEW
STUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEWSTUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEW
STUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEW
International Journal of Technical Research & Application
 
EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...
EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...
EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...
International Journal of Technical Research & Application
 
POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...
POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...
POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...
International Journal of Technical Research & Application
 
STUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONS
STUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONSSTUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONS
STUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONS
International Journal of Technical Research & Application
 
ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...
ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...
ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...
International Journal of Technical Research & Application
 
POD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTER
POD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTERPOD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTER
POD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTER
International Journal of Technical Research & Application
 
DIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGA
DIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGADIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGA
DIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGA
International Journal of Technical Research & Application
 
MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...
MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...
MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...
International Journal of Technical Research & Application
 
AN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIR
AN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIRAN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIR
AN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIR
International Journal of Technical Research & Application
 
LI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESS
LI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESSLI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESS
LI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESS
International Journal of Technical Research & Application
 
QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...
QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...
QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...
International Journal of Technical Research & Application
 
SCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEW
SCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEWSCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEW
SCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEW
International Journal of Technical Research & Application
 
IMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKING
IMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKINGIMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKING
IMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKING
International Journal of Technical Research & Application
 
EFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTY
EFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTYEFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTY
EFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTY
International Journal of Technical Research & Application
 
EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...
EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...
EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...
International Journal of Technical Research & Application
 
THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...
THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...
THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...
International Journal of Technical Research & Application
 
TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...
TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...
TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...
International Journal of Technical Research & Application
 
A STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASH
A STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASHA STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASH
A STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASH
International Journal of Technical Research & Application
 
OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...
OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...
OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...
International Journal of Technical Research & Application
 
PERFORMANCE ANALYSIS OF MICROSTRIP PATCH ANTENNA USING COAXIAL PROBE FEED TEC...
PERFORMANCE ANALYSIS OF MICROSTRIP PATCH ANTENNA USING COAXIAL PROBE FEED TEC...PERFORMANCE ANALYSIS OF MICROSTRIP PATCH ANTENNA USING COAXIAL PROBE FEED TEC...
PERFORMANCE ANALYSIS OF MICROSTRIP PATCH ANTENNA USING COAXIAL PROBE FEED TEC...
International Journal of Technical Research & Application
 

More from International Journal of Technical Research & Application (20)

STUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEW
STUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEWSTUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEW
STUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEW
 
EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...
EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...
EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...
 
POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...
POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...
POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...
 
STUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONS
STUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONSSTUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONS
STUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONS
 
ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...
ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...
ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...
 
POD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTER
POD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTERPOD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTER
POD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTER
 
DIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGA
DIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGADIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGA
DIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGA
 
MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...
MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...
MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...
 
AN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIR
AN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIRAN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIR
AN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIR
 
LI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESS
LI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESSLI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESS
LI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESS
 
QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...
QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...
QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...
 
SCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEW
SCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEWSCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEW
SCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEW
 
IMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKING
IMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKINGIMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKING
IMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKING
 
EFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTY
EFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTYEFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTY
EFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTY
 
EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...
EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...
EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...
 
THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...
THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...
THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...
 
TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...
TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...
TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...
 
A STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASH
A STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASHA STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASH
A STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASH
 
OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...
OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...
OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...
 
PERFORMANCE ANALYSIS OF MICROSTRIP PATCH ANTENNA USING COAXIAL PROBE FEED TEC...
PERFORMANCE ANALYSIS OF MICROSTRIP PATCH ANTENNA USING COAXIAL PROBE FEED TEC...PERFORMANCE ANALYSIS OF MICROSTRIP PATCH ANTENNA USING COAXIAL PROBE FEED TEC...
PERFORMANCE ANALYSIS OF MICROSTRIP PATCH ANTENNA USING COAXIAL PROBE FEED TEC...
 

Recently uploaded

Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Sreedhar Chowdam
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
karthi keyan
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
Amil Baba Dawood bangali
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
ongomchris
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
AafreenAbuthahir2
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
BrazilAccount1
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
ankuprajapati0525
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
zwunae
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
Pipe Restoration Solutions
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation & Control
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
SupreethSP4
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
Jayaprasanna4
 

Recently uploaded (20)

Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
 

REVIEW OF VIRTUAL ARTICULATED ROBOT

  • 1. International Journal of Technical Research and Applications e-ISSN: 2320-8163, www.ijtra.com Volume 2, Issue 1 (jan-feb 2014), PP. 53-55 53 | P a g e REVIEW OF VIRTUAL ARTICULATED ROBOT Sudip Chakraborty Swami Vivekananda University Madhya Pradesh, India Abstract—In the field of robotic study, practical approach is too much relevant. The successful implementation of different complex algorithm, require practical aspect. At the time of development, major student design a physical robot to clarify the major complex theory. There are some constraints at the initial stage. The major constraints are design, implementation of the coordinate geometry, DH notation, kinematic theory, and so on. All the implementation should be feasible to move the articulated robotic arm. The job is tedious for the beginners. This paper is the reference to build up an articulated robotic arm virtually. Here is a description where an articulated robotic arm can be created virtually, which will act as real robot does. All theory like coordinated geometry, DH notation can be applied. Key words—5DF Articulated arm, Robot Virtualization, DH- notation, co-ordinate Geometry etc. I. INTRODUCTION Now we are ready to design a 5df articulated robot virtually. Here the following diagram depicts how work flow should be. II. DESCRIPTION OF BLOCK DIAGRAMS Study– Many sources are available to gather the Preliminary knowledge to design an articulated robot. I have references few of them. For our recollection, we will review about basic item. At first we have to synchronize our mind that coordination system of computer screen. Fig:-1: Computer Screen Coordinate Fig:-2: Screen shot
  • 2. International Journal of Technical Research and Applications e-ISSN: 2320-8163, www.ijtra.com Volume 2, Issue 1 (jan-feb 2013), PP. 53-55 54 | P a g e The DH notation is important. DH notation, Denavit– Hartenberg parameters are Theta(angle)– angle between Xi-1 and xi axes measured about the Zi-1 axis in the right-hand sense. d(distance)– Distance along Z axis from the origin of frame r (radius)– distance or radius along X- axis from the origin of intersection of xi-axis with zi-1 axis to the origin of frame. Alpha (angle) – Angle between zi-1 and zi axes measured about xi-axis in the right-hand sense. In the DH notation, Y-axis is eliminated. Only to complete and calculate the 3d geometry we put the value of Y-axis. We remember that, matrix manipulation is not communicative. So need to maintain the manipulation order. The order is as follows:- i-1Ti= Rz(theta).Tz(d).Tx(r).Rx(alpha) i-1Ti= Resultant matrix Rz(theta) = R-> Rotate 3D matrix , z -> along Z-axis Theta -> amount of rotation angle Tz(d) = T -> Translation z-> along Z-axis D -> amount of translation Tx(r) = T -> Translation x -> along x axis r -> amount of translation is r. Rx (alpha) = R-> Rotate 3D matrix, x -> along x axis Alpha -> amount of rotation angle The above order is left to right. To test the proceedings, take a 4 by 4 identity matrix. First rotate theta angle along z-axis. on result matrix, translate d amount, along z-axis. Next, on result, translate r amount along X-axis. Last on result, rotate amount of alpha along X-axis. In OpenGL, to implement the above sequence, the commands are as follows – GL.glPushMatrix(); GL.glLoadIdentity(); GL.glRotatef(theta, 0, 1, 0); //theta GL.glTranslatef(0, d, 0); // d GL.glTranslatef(r, 0, 0); // r GL.glRotatef(alph, 1, 0,0);// alpha GL.glPopMatrix(); To view the last result of the matrix, create an array as follows- Static float [] m = new float [16]; Add the following code- GL.glGetFloatv(GL.GL_MODELVIEW_MATRIX, m); View the last result. Now change the manipulation order and observe the result is different on different manipulation. So strictly maintain the order otherwise robot’s orientation will not move according to our desire position. III. READY .NET ENVIRONMENT To create the virtual robot we need visual studio, dot net 2010 and C sharp. Step up as follows- Step -01) create a folder on desktop (or your choice) rename “test”. Step-02) download a zip file from the following link:- https://sites.google.com/site/leniel/blog/RobotArmOpenGLCS harp.zip?attredirects=0 step-03) unzip the file. Copy the following file and paste to “test” folder. freeglut.dll, glut32.dll, Tao.FreeGlut.dll, GLU.cs, OpenGL.cs IV. READY OPENGL ENVIRONMENT step-01) open VS2010> File> New> project> Windows Forms Application> Type a name> ok. Step-2) Delete Form1.cs from solution explorer step-3) go to the solution explorer window -> right clock on project name (”test”) -> add -> existing item ->select GLU.cs, OpenGL.cs -> press “Add” button. Step-4) right click on project name -> Add Reference -> browse -> select Tao.FreeGlut.dll -> Ok V. BASIC FUNCTION Some basic function that forms a robot:- Static void Draw_Link(float th,float _d, float _a, float alph) The above function is the main function to create different link. Four parameters are passed to it. In spite of them only theta are dynamic for R-joint or Revolute joints. And for prismatic joint or P-joints, d is dynamic. Static void DrawUnitCylinder(int numSegs) The above function create joint with shaded number of shade by “numSegs” parameter. It creates a 3D effect on material of robot. Static void Create_Work_Space(void); This function can be used to create the workspace. The above and other required function should be in main loop, so that every time OpenGL can create all node and link. Display buffer imposed on previous drawing. The above
  • 3. International Journal of Technical Research and Applications e-ISSN: 2320-8163, www.ijtra.com Volume 2, Issue 1 (jan-feb 2013), PP. 53-55 55 | P a g e functions are for concept only. Many more function may come to create a realistic robot. VI. DRAW ARM Degree of freedom means number of movable or rotatable joints. When draw a link, manipulate matrix on previous. So that robot orientation can build up as a tree like structure. It starts with Base0 that is immobile. Like root of the tree. Now create a new matrix on base matrix. Create a new link means transforming the previous matrix, yield new matrix that is an arm, and adds one degree. Generally Except theta, all parameters are static (for R-joint), that is initially defined. Entire project these parameters (d, r, alpha) are not required to change. VII. CONCLUSION Now a day’s computer is available to everyone. Creation anything virtually is cheap and less time consume. It is also more flexible to move anywhere. Even in train we can work with the robot, where practical robot is less flexible to move anywhere, anytime. The main purpose to write this paper is, before to create a practical robot, test the robot virtually. The concept will be more cleared to design a practical robot. REFERENCES [1] Mittal, R.K & Nagrath, I.J “Robotics and Control”, Tata McGraw-Hill Education Private Limited, ISBN-10: 0-07- 048293-4. 2012, Page no- 71-111 [2] Saha, S.K “Introduction to Robotics”, Tata McGraw-Hill Education Private Limited, ISBN-10: 0-07-066900-0. 2011, Page no- 113-121 [3] Niku, Saeed B. “Introduction to Robotics, Analysis, Systems, Applications”, PHI Learning Private Limited, ISBN-978-81- 203-2379-7, 2009, Page no- 113-121 [4] Klafter , Richard D. , Chmielewski, Thomas A., Negin, Michael “Robotic Engineering: An Integrated Approach”, PHI Learning Private Limited, ISBN-978-81-203-0842-8,2009, Page no- 610- 619 [5] Blankenship, J and Mishal, S “Robot Programmer’s Bonanza”,BPB Publications, ISBN-10:81-8333-290-0, 2008, Page no-65-72 [6] Appin Knowledge Solutions “Robotics”,BPB Publications, ISBN-10:81-8333-212-9, 2007, Page no-189-215 [7] http://colinfahey.com/csharp_wrapper_for_opengl/csharp_wrap per_for_opengl.html [8] https://sites.google.com/site/leniel/blog/RobotArmOpenGLCSha rp.zip?attredirects=0 [9] http://www.glprogramming.com/blue/ch03.html [10] http://www.glprogramming.com/blue/ch03.html#id46859 [11] http://www.movesinstitute.org/~mcdowell/mv4202/notes/lect9.p df [12] https://www.cs.duke.edu/courses/cps124/fall09/notes/05_pipelin e/cox_04transformations.pdf [13] http://en.wikipedia.org/wiki/Denavit–Hartenberg_parameters.