Loading...

Messages

Proposals

Stuck in your homework and missing deadline? Get urgent help in $10/Page with 24 hours deadline

Get Urgent Writing Help In Your Essays, Assignments, Homeworks, Dissertation, Thesis Or Coursework & Achieve A+ Grades.

Privacy Guaranteed - 100% Plagiarism Free Writing - Free Turnitin Report - Professional And Experienced Writers - 24/7 Online Support

Moment of inertia unit mm4

26/11/2021 Client: muhammad11 Deadline: 2 Day

ENGR 516 Computational Methods for Graduate Students Catholic University of America

Assignment #6 EigenValue Problems

1.) The moment of inertia, Ix, Iy, and the product of inertia Ixy of the cross sectional area shown in the figure are:

2.) The structure of an acetylene molecule may be idealized as four masses connected by two springs as shown in the figure below. Applying the equation of motion; we can generate a system model for the amplitudes of vibration of each atom:

1

Excerpts from this work may be reproduced by instructors for distribution on a not-for-profit basis for testing or instructional purposes only to students enrolled in courses for which the textbook has been adopted. Any other reproduction or translation of this work beyond that permitted by Sections 107 or 108 of the 1976 United States Copyright Act without the permission of the copyright owner is unlawful.

4.23 The moment of inertia , , and the product of inertia of the cross-sectional area shown in the figure are:

mm4, mm4, and mm4

The principal moments of inertia are the eigenvalues of the matrix

, and the principal axes are in the direction of the eigen-

vectors. Determine the principal moments of inertia by solving the char- acteristic equation. Determine the orientation of the principal axes of inertia (unit vectors in the directions of the eigenvectors).

Solution

The eigenvalues of the matrix are the principal moments of inertia. They are determined from

the roots of the characteristic equation:

which simplifies to . The equation is solved by using the quadratic formula:

or and

By definition, the eigenvectors corresponding to each eigenvalue must satisfy:

Starting with the first eigenvalue:

These two equations are redundant and yield .

Since the eigenvector is a unit vector: .

4 mm

O

y

x

24 mm 2 mm

20 mm

3 mm

2 mm

Ix Iy Ixy

Ix 5286= Iy 4331= Ixy 2914=

5286 2914 2914 4331

5286 2914 2914 4331

5286 λ–( ) 4331 λ–( ) 2914( ) 2914( )– 0=

14402270 9617λ– λ2+ 0=

λ1 2 9617 9617( )2 4 1( ) 14402270( )–

2 ----------------------------------------------------------------------------------------= λ1 7761.36= λ2 1855.64=

5286 2914 2914 4331

u1 i( )

u2 i( )

λi u1 i( )

u2 i( )

=

5286 2914 2914 4331

u1 1( )

u2 1( )

λ1 u1

1( )

u2 1( )

7761.36 u1 1( )

u2 1( )

= =

u1 1( ) 1.1772u2

1( )=

u1 1( )( )

2 u2

1( )( ) 2

+ 1=

1

Excerpts from this work may be reproduced by instructors for distribution on a not-for-profit basis for testing or instructional purposes only to students enrolled in courses for which the textbook has been adopted. Any other reproduction or translation of this work beyond that permitted by Sections 107 or 108 of the 1976 United States Copyright Act without the permission of the copyright owner is unlawful.

4.23 The moment of inertia , , and the product of inertia of the cross-sectional area shown in the figure are:

mm4, mm4, and mm4

The principal moments of inertia are the eigenvalues of the matrix

, and the principal axes are in the direction of the eigen-

vectors. Determine the principal moments of inertia by solving the char- acteristic equation. Determine the orientation of the principal axes of inertia (unit vectors in the directions of the eigenvectors).

Solution

The eigenvalues of the matrix are the principal moments of inertia. They are determined from

the roots of the characteristic equation:

which simplifies to . The equation is solved by using the quadratic formula:

or and

By definition, the eigenvectors corresponding to each eigenvalue must satisfy:

Starting with the first eigenvalue:

These two equations are redundant and yield .

Since the eigenvector is a unit vector: .

4 mm

O

y

x

24 mm 2 mm

20 mm

3 mm

2 mm

Ix Iy Ixy

Ix 5286= Iy 4331= Ixy 2914=

5286 2914 2914 4331

5286 2914 2914 4331

5286 λ–( ) 4331 λ–( ) 2914( ) 2914( )– 0=

14402270 9617λ– λ2+ 0=

λ1 2 9617 9617( )2 4 1( ) 14402270( )–

2 ----------------------------------------------------------------------------------------= λ1 7761.36= λ2 1855.64=

5286 2914 2914 4331

u1 i( )

u2 i( )

λi u1 i( )

u2 i( )

=

5286 2914 2914 4331

u1 1( )

u2 1( )

λ1 u1

1( )

u2 1( )

7761.36 u1 1( )

u2 1( )

= =

u1 1( ) 1.1772u2

1( )=

u1 1( )( )

2 u2

1( )( ) 2

+ 1=

1

Excerpts from this work may be reproduced by instructors for distribution on a not-for-profit basis for testing or instructional purposes only to students enrolled in courses for which the textbook has been adopted. Any other reproduction or translation of this work beyond that permitted by Sections 107 or 108 of the 1976 United States Copyright Act without the permission of the copyright owner is unlawful.

4.50 The structure of the C2H2 (acetylene) molecule may be ide- alized as four masses connected by two springs (see discussion in Problem 4.25). By applying the equation of motion, the following system of equations can be written for the amplitudes of vibration of each atom:

where is the frequency, kg/s2 and kg/s2 are the restoring force spring constants representing the C–H and C–C bonds, respectively, and and are the masses of the atoms ( kg). (a) Determine the eigenvalues (frequencies), and the corresponding wavelengths (where

m/s is the speed of light). (b) Determine the eigenvectors corresponding to the eigenvalues found in part (a). From the eigenvectors,

deduce the relative motion of the atoms (i.e., are they moving toward, or away from each other?).

Solution

The following script file solves this problem:

clear, clc kCH=5.92e2; kCC=15.8e2; mH=1.6605e-27; mC=12*1.6605e-27; c=3e8; M=zeros(4); M(1,1)=kCH/mH; M(1,2)=-M(1,1); M(2,1)=-kCH/mC; M(2,2)=(kCH+kCC)/mC; M(2,3)=-kCC/mC; M(3,2)=M(2,3); M(3,3)=M(2,2); M(3,4)=M(2,1); M(4,3)=M(1,2); M(4,4)=-M(4,3);

kCH mH --------- ω2–

kCH mH ---------– 0 0

kCH mC ---------–

kCH kCC+( ) mC

----------------------------- ω2– kCC mC --------– 0

0 kCC mC --------–

kCH kCC+( ) mC

----------------------------- ω2– kCH mC ---------–

0 0 kCH mH ---------–

kCH mH --------- ω2–

A1 A2 A3 A4

0 0 0 0

=

ω kCH 5.92 10 2×= kCC 15.8 10

2×= mH 1amu= mC 12amu=

1amu 1.6605 10 27–×= ω λ 2πc

ω ---------=

c 3 108×=

1

Excerpts from this work may be reproduced by instructors for distribution on a not-for-profit basis for testing or instructional purposes only to students enrolled in courses for which the textbook has been adopted. Any other reproduction or translation of this work beyond that permitted by Sections 107 or 108 of the 1976 United States Copyright Act without the permission of the copyright owner is unlawful.

4.50 The structure of the C2H2 (acetylene) molecule may be ide- alized as four masses connected by two springs (see discussion in Problem 4.25). By applying the equation of motion, the following system of equations can be written for the amplitudes of vibration of each atom:

where is the frequency, kg/s2 and kg/s2 are the restoring force spring constants representing the C–H and C–C bonds, respectively, and and are the masses of the atoms ( kg). (a) Determine the eigenvalues (frequencies), and the corresponding wavelengths (where

m/s is the speed of light). (b) Determine the eigenvectors corresponding to the eigenvalues found in part (a). From the eigenvectors,

deduce the relative motion of the atoms (i.e., are they moving toward, or away from each other?).

Solution

The following script file solves this problem:

clear, clc kCH=5.92e2; kCC=15.8e2; mH=1.6605e-27; mC=12*1.6605e-27; c=3e8; M=zeros(4); M(1,1)=kCH/mH; M(1,2)=-M(1,1); M(2,1)=-kCH/mC; M(2,2)=(kCH+kCC)/mC; M(2,3)=-kCC/mC; M(3,2)=M(2,3); M(3,3)=M(2,2); M(3,4)=M(2,1); M(4,3)=M(1,2); M(4,4)=-M(4,3);

kCH mH --------- ω2–

kCH mH ---------– 0 0

kCH mC ---------–

kCH kCC+( ) mC

----------------------------- ω2– kCC mC --------– 0

0 kCC mC --------–

kCH kCC+( ) mC

----------------------------- ω2– kCH mC ---------–

0 0 kCH mH ---------–

kCH mH --------- ω2–

A1 A2 A3 A4

0 0 0 0

=

ω kCH 5.92 10 2×= kCC 15.8 10

2×= mH 1amu= mC 12amu=

1amu 1.6605 10 27–×= ω λ 2πc

ω ---------=

c 3 108×=

1

Excerpts from this work may be reproduced by instructors for distribution on a not-for-profit basis for testing or instructional purposes only to students enrolled in courses for which the textbook has been adopted. Any other reproduction or translation of this work beyond that permitted by Sections 107 or 108 of the 1976 United States Copyright Act without the permission of the copyright owner is unlawful.

4.50 The structure of the C2H2 (acetylene) molecule may be ide- alized as four masses connected by two springs (see discussion in Problem 4.25). By applying the equation of motion, the following system of equations can be written for the amplitudes of vibration of each atom:

where is the frequency, kg/s2 and kg/s2 are the restoring force spring constants representing the C–H and C–C bonds, respectively, and and are the masses of the atoms ( kg). (a) Determine the eigenvalues (frequencies), and the corresponding wavelengths (where

m/s is the speed of light). (b) Determine the eigenvectors corresponding to the eigenvalues found in part (a). From the eigenvectors,

deduce the relative motion of the atoms (i.e., are they moving toward, or away from each other?).

Solution

The following script file solves this problem:

clear, clc kCH=5.92e2; kCC=15.8e2; mH=1.6605e-27; mC=12*1.6605e-27; c=3e8; M=zeros(4); M(1,1)=kCH/mH; M(1,2)=-M(1,1); M(2,1)=-kCH/mC; M(2,2)=(kCH+kCC)/mC; M(2,3)=-kCC/mC; M(3,2)=M(2,3); M(3,3)=M(2,2); M(3,4)=M(2,1); M(4,3)=M(1,2); M(4,4)=-M(4,3);

kCH mH --------- ω2–

kCH mH ---------– 0 0

kCH mC ---------–

kCH kCC+( ) mC

----------------------------- ω2– kCC mC --------– 0

0 kCC mC --------–

kCH kCC+( ) mC

----------------------------- ω2– kCH mC ---------–

0 0 kCH mH ---------–

kCH mH --------- ω2–

A1 A2 A3 A4

0 0 0 0

=

ω kCH 5.92 10 2×= kCC 15.8 10

2×= mH 1amu= mC 12amu=

1amu 1.6605 10 27–×= ω λ 2πc

ω ---------=

c 3 108×=

Homework is Completed By:

Writer Writer Name Amount Client Comments & Rating
Instant Homework Helper

ONLINE

Instant Homework Helper

$36

She helped me in last minute in a very reasonable price. She is a lifesaver, I got A+ grade in my homework, I will surely hire her again for my next assignments, Thumbs Up!

Order & Get This Solution Within 3 Hours in $25/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 3 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 6 Hours in $20/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 6 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 12 Hours in $15/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 12 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

6 writers have sent their proposals to do this homework:

Instant Homework Helper
Exam Attempter
WRITING LAND
Smart Accountants
Accounting Homework Help
Supreme Essay Writer
Writer Writer Name Offer Chat
Instant Homework Helper

ONLINE

Instant Homework Helper

I have done dissertations, thesis, reports related to these topics, and I cover all the CHAPTERS accordingly and provide proper updates on the project.

$19 Chat With Writer
Exam Attempter

ONLINE

Exam Attempter

I can assist you in plagiarism free writing as I have already done several related projects of writing. I have a master qualification with 5 years’ experience in; Essay Writing, Case Study Writing, Report Writing.

$23 Chat With Writer
WRITING LAND

ONLINE

WRITING LAND

I am an elite class writer with more than 6 years of experience as an academic writer. I will provide you the 100 percent original and plagiarism-free content.

$41 Chat With Writer
Smart Accountants

ONLINE

Smart Accountants

I have worked on wide variety of research papers including; Analytical research paper, Argumentative research paper, Interpretative research, experimental research etc.

$50 Chat With Writer
Accounting Homework Help

ONLINE

Accounting Homework Help

After reading your project details, I feel myself as the best option for you to fulfill this project with 100 percent perfection.

$21 Chat With Writer
Supreme Essay Writer

ONLINE

Supreme Essay Writer

I will be delighted to work on your project. As an experienced writer, I can provide you top quality, well researched, concise and error-free work within your provided deadline at very reasonable prices.

$31 Chat With Writer

Let our expert academic writers to help you in achieving a+ grades in your homework, assignment, quiz or exam.

Similar Homework Questions

Wyngate care home mablethorpe - Spying on miss muller - Brandon holthaus net worth - Body systems and diseases grid - Unit 2 Assignment – Leadership in Diverse Organizations - Army lesson plan examples - All india association of industries - Ciena 6500 dc power requirements - Apc smart ups runtime calculator - Non functional requirements for warehouse management system - Round robin 5 players - Metal detector coil design - Assignment - Post with 300 words with no plagiarism, with in text citations and two references - Cold heat soldering pen - Vertical wall air conditioner - Classroom instruction that works 9 strategies - Marble launcher lab physics answers - Micro meso macro systems definitions - 5r framework - Blk create your own - Who are uber's main stakeholders - Hist 131 - Nine steps in ackerman and anderson's roadmap for change - Does aldi sell condensed milk - Java program for rolling two dice - Continuous problem city of monroe - A mercedes benz 300sl m 1700 kg - Order 2501187: Economics - Contemporary Issues - The stranger study questions - Andrew cherlin public and private families - Least common denominator definition - What topics would you like to see in this course in the future? do you think the asignments may be use in the future such as when you are looking for employment? - Among school children yeats analysis - Animal farm multiple choice questions and answers - Street of the lifted lorax - Constructivist approach to teaching ppt - Rothschild index - Art Discussion 2 - Inter - High commitment management approach - Http www youtube com watch v qwriskyv_b8 - Examples of social interaction in everyday life - Real world application of derivatives - Mitel mivoice business brochure - Theology 101 - Bmaa sigma - Gerontology - Norton introduction to literature portable 13th edition - Disscusion: Process Cost Accounting - Political Essay - Bsbpmg522a undertake project work - Week 1 question - St george eftpos machine - Business Administration - Is salt an acid or base or neutral - What is 280 ucas points in btec grades - Youtube 369 the goose drank wine - Discussion 3 - Talent q assessment answers - Bat pad fielding position - Linux cheat sheet shirt - Force table vector addition lab report - Plant cell flip book - Genogram: Hernandez Family - Nurs 6512 final exam - 3 r's great depression - Belfast to comber bus - 305 case study - Formulating your brief data visualization - Prefatory parts of a report - RESEARCH AND QUANTATIVE METHODS ASSIGNMENT - Icd 10 code for tibial plateau fracture - They say i say essay format - Risk Management Case Study - ANMC - Identify the cost categories in a traditional format income statement - Importance of sleep speech outline - Week 4 no plagiarism - Stony brook greek life - Landscape - Team performance productivity and rewording teamwork - Jermaine lewis elle demasi - Brownson evidence based public health - Formula of potassium iodide and lead nitrate - Financial report - 21st century skills critical thinking and problem solving gcu - Labor Relations and Management - Boxhill tafe student web - Generic conventions of a play - Bodyfitbalance glute guide 2.0 pdf - Which element in period 4 has the highest electronegativity - Comparative advantage theory of international trade ppt - Ati active learning template therapeutic procedure - Culminating Argument - PCT - Find area between two z scores - Short-Writing #5 - Was macbeth a general - Logistic regression java - Discuss the marketing process