Lecture 2 Advanced Biomechanics Dr. Moran Spring 2006.

Slides:



Advertisements
Similar presentations
Wednesday March 1st Dr. Moran
Advertisements

Angular Kinematics D. Gordon E. Robertson, PhD, FCSB
D. Trigonometry Math 10: Foundations and Pre-Calculus FP10.4 Develop and apply the primary trigonometric ratios (sine, cosine, tangent) to solve problems.
Copyright © Cengage Learning. All rights reserved. 3 Derivatives.
Angular Variables Linear Angular Position m s deg. or rad. q Velocity
General Physics (PHYS101)
Section 9.3 The Dot Product
Vector Products (Dot Product). Vector Algebra The Three Products.
CS 4731: Computer Graphics Lecture 6: Points, Scalars and Vectors Emmanuel Agu.
3 DERIVATIVES.
Lecture 2: Geometry vs Linear Algebra Points-Vectors and Distance-Norm Shang-Hua Teng.
Lecture 3 Wednesday February 8 Dr. Moran. Lecture Outline Assignment #1 »Class Presentations of Research Articles Problems with Excel Practice Calculations.
11.3 The Dot Product of Two Vectors. The dot product of u and v in the plane is The dot product of u and v in space is Two vectors u and v are orthogonal.
DIFFERENTIATION RULES 3. Before starting this section, you might need to review the trigonometric functions. DIFFERENTIATION RULES.
24. Dot Product of Vectors. What you’ll learn about  How to find the Dot Product  How to find the Angle Between Vectors  Projecting One Vector onto.
12.9 Parallel & Perpendicular Vectors in Two Dimensions
Multiplication with Vectors
Applications of Vectors. Definition: Resultant: The result of two vectors acting on a point at the same time. Equilibrant: The opposite vector of the.
Trigonometry Cloud County Community College Spring, 2012 Instructor: Timothy L. Warkentin.
Functions of several variables. Function, Domain and Range.
Chapter 6 ADDITIONAL TOPICS IN TRIGONOMETRY. 6.1 Law of Sines Objectives –Use the Law of Sines to solve oblique triangles –Use the Law of Sines to solve,
Vectors and the Geometry of Space
Vectors (5) Scaler Product Scaler Product Angle between lines Angle between lines.
3 DERIVATIVES.
Chapter 7 review Number 73 This method shows how to find the direction by adding the vector. You will use the laws of sines and cosines. To view this show,
Vectors in Space 11.2 JMerrill, Rules The same rules apply in 3-D space: The component form is found by subtracting the coordinates of the initial.
Advanced Computer Graphics Rigid Body Simulation Spring 2002 Professor Brogan.
Sec 13.3The Dot Product Definition: The dot product is sometimes called the scalar product or the inner product of two vectors.
6.4 Vectors and Dot Products. Dot Product is a third vector operation. This vector operation yields a scalar (a single number) not another vector. The.
 Before starting this section, you might need to review the trigonometric functions.  In particular, it is important to remember that, when we talk about.
CS 551 / 645: Introductory Computer Graphics Mathematical Foundations.
A rule that combines two vectors to produce a scalar.
Comsats Institute of Information Technology (CIIT), Islamabad
Section 12.3 The Dot Product
Wed. Apr. 15– Calculus Lecture #23.2 Vectors, Dot Products, Projections, and Planes ) If v and w are unit vectors, what is the geometrical meaning.
8.5 The Dot Product Precalculus. Definition of the Dot Product If u= and v= are vectors, then their dot product (u v) is defined by: u v = a 1 a 2 + b.
The definition of the product of two vectors is: 1 This is called the dot product. Notice the answer is just a number NOT a vector.
12.3 The Dot Product. The dot product of u and v in the plane is The dot product of u and v in space is Two vectors u and v are orthogonal  if they meet.
Objective: Find the dot product of two vectors. Find the angle between two vectors. Dot product definition Example 1 Find the dot product. v = 2i – j w.
Law of Cosines. h a c A B C x D b - x b To derive the formula, fine the relationship between a, b, c, and A in this triangle. a 2 = (b – x) 2 + h 2 a.
Mr. Rommel South Salem HS Vectors Parallel and Perpendicular Vectors Dot Product.
Chapter 3 Lecture 5: Vectors HW1 (problems): 1.18, 1.27, 2.11, 2.17, 2.21, 2.35, 2.51, 2.67 Due Thursday, Feb. 11.
Computer Graphics Mathematical Fundamentals Lecture 10 Taqdees A. Siddiqi
Computer Graphics Lecture 11 2D Transformations I Taqdees A. Siddiqi
6.4 Vectors and Dot Products Objectives: Students will find the dot product of two vectors and use properties of the dot product. Students will find angles.
11. Section 12.1 Vectors Vectors What is a vector and how do you combine them?
Dr. Shildneck. Dot Product Again, there are two types of Vector Multiplication. The inner product,called the Dot Product, and the outer product called.
CHAPTER 5 LESSON 4 The Law of Sines VOCABULARY  None.
Advanced Computer Graphics Rigid Body Simulation
CHAPTER 3 VECTORS NHAA/IMK/UNIMAP.
Prof. Dr. Faisel Ghazi Mohammed
Dot Product of Vectors.
Dot Product and Angle Between Two Vectors
Copyright © Cengage Learning. All rights reserved.
Copyright © Cengage Learning. All rights reserved.
Outline Addition and subtraction of vectors Vector decomposition
Parallel & Perpendicular Vectors in Two Dimensions
(MTH 250) Calculus Lecture 22.
6.2 Dot Products of Vectors
Law of sines Law of cosines Page 326, Textbook section 6.1
ENE/EIE 325 Electromagnetic Fields and Waves
Multiplying Vectors - Dot and Cross Products -
2-DOF Manipulator Now, given the joint angles Ө1, Ө2 we can determine the end effecter coordinates x and y.
Lecture 2: Geometry vs Linear Algebra Points-Vectors and Distance-Norm
12.9 Parallel & Perpendicular Vectors in Two Dimensions
Copyright © Cengage Learning. All rights reserved.
Copyright © Cengage Learning. All rights reserved.
CHAPTER 3 VECTORS NHAA/IMK/UNIMAP.
MATH 2140 Numerical Methods
Presentation transcript:

Lecture 2 Advanced Biomechanics Dr. Moran Spring 2006

Lecture Outline Introduction to MS Excel Example Worksheets »Sine Wave Function »Golf Ball Example »Joint Angle Determination Finite Difference Calculus Central Difference Forward/Backward Difference Computing 2D Joint Angles Law of Cosines Dot Product Collect 2D Kinematic Data Explain Assignment #2

Finite Difference Calculus The derivative is nothing more than the SLOPE at a given point. All numerical approaches can be thought of as a way of determining that slope Central Difference Method: in order to compute the derivative (slope) for a given frame i, you will need information from the frame before and the frame after Do not require information from the frame i This method does NOT work for frames at the beginning and at the end of a data set. Why?

Finite Difference Calculus (con’t) Forward Difference : good for the first frame of data v i = (s i+1 – s i ) / (∆t) Work out formula for a i in terms of s Backward Difference : good for the last frame of data v n = (s n – s n-1 ) / (∆t) Work out formula for a n in terms of s Noise in the signal will greatly affect the numerical computation of derivatives! Filtering data is incredibly important to avoid erroneous computations. Future Lecture on Signal Processing/Filtering

Law of Cosines A B C a b c A 2 = B 2 + C 2 – 2BC cos (a) Therefore, cos (a) = (B 2 + C 2 – A 2 ) / (2BC) a = acos ( (B 2 + C 2 – A 2 ) / (2BC) ) Where a = knee flexion angle

Dot Product The dot product can be defined for two vectors X and Y by the following: X ∙ Y = |X| |Y| cos Θ Where: Θ is the angle between the vectors |X| is the norm (length of vector) If X ∙ Y = 0, then X is orthogonal with Y X Y Θ Remember that to construct the vector subtract coordinates of the starting point from the end point!

Some Definitions Norm: can be thought of as the magnitude or length of a vector X = (a 1, a 2 ) IXI = [ (a 1 ) 2 + (a 2 ) 2 ] 0.5 Ex. Given X = (-2, 6), what is IXI? Dot Product X ∙ Y = (a 1 b 1 ) + (a 2 b 2 ) Ex. Given X = (-3,1) and Y = (2,9), what X ∙ Y?

Computing Joint Angles Ex: Compute the relative knee flexion angle? Use both the Law of Cosines and the Dot Product. (-6.1, 92.4) (-3.8, 50.2) (-8.6, 13.7) HIP KNEE ANKLE

2D Planar Kinematics Consideration of Anatomical Planes When deciding on a particular movement for 2D kinematic analysis, first determine the primary anatomical plane of action. Be sure to place the camera perpendicular to that plane Ex: Running – the knee flexion angle predominately occurs in the sagittal plane