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

What advancement barriers did lisa encounter - A(n) _____ is a technique that uses a common yardstick to measure and compare vendor ratings. - Durham geo slope indicator - Symmetric to x axis y axis and origin - 1610 abyss drive odessa fl - Ida jean orlando nursing process - Magoosh ielts speaking topics pdf - Week 1 - The happiest refugee techniques - 2.05 the bill of rights - Extensive property and intensive property difference - Car rental activity diagram - Creditors claims on assets - How long is seven meters - Home builders insurance nsw - Ccjs100 - ENG 1100 MOD 5 Rough - How to calculate euac in excel - Www wwnorton com give me liberty - What is brand spiraling - Target golf balls for sale - The other wes moore free essay - Desert places literary devices - Think education kent street - Writing homework - Abortion should be legal persuasive speech - Lección 6 contextos - Target setting display ks2 - Jack and rochelle chapter summary - Game informer subscription number - Research Paper - Enterprise risk management - Cloud Computing - How to count vertices on a cube - Whats the square root of 42 - They say i say 4th edition online - Thou art no thy lane - Assignment (500 WORDS MINIMUM) - In following him i follow but myself analysis - On june 30 sharper corporation - Need by thursday - How has the proliferation of mobile devices affect it professionals - Hubert freidl net worth - Week 4 Discussion - Case problem specialty toys - Leader Traits and attributes - Samsung a strategic plan for success - Myplate daily checklist calculator - Social Psychology - Bipolar disorder - 810 QAR 5 - Fish scales tell the age of a fish worksheet answers - Primary and secondary sources worksheet - Create a safety flyer - Mini Mental State Exam (MMSE - 218 alford to aberdeen - Cursive letters and symbols - Reaction paper apa formattraxit latin - Fnsacc301 process financial transactions and extract interim reports - DQ1 Please read the instructions. DQ2. BY 10/13 - What is a linear project - Redemption of bonds payable journal entry - The times complete history of the world 9th edition pdf - Dutton park parking control area - What statement best describes jefferson's attitude toward government - Tagline of red bull - Problem Set #9 - Elements of an epic hero - Criminology - Childhood by margaret walker analysis - Tesco metro eldon square - Accounting 1 7th edition answer key chapter 4 - Uses of metals worksheet - Hoban recruitment candidate login - Judgmental and mechanical methods - Characteristics of an agile mis infrastructure - In the opening vignette, predictive modeling is described as - Qsuper tfn for ato - Greendale stadium case study answers - Religion in Asia - What are the three primary behavior determinants of organizational behavior - Straighterline college algebra test answers - American jerk by todd schwartz - Discussion - 5 2 solenoid valve circuit diagram - Ranns supply uses a perpetual inventory system - Mangerial Economics - National early literacy panel 2008 - Adulterants in sugar pdf - Here is a work breakdown structure for a wedding - Due Monday ..... fill out attachment...... - The impact of covid on cancer patients - How many steps are there in the opsec process - Database design life cycle ppt - BUS 310 Week 3 Quiz - Pruitt's auto parts groveton tx - There are only 2 ways to live your life - Michelin fleet solutions from selling tires to selling kilometers - Array implementation of list adt - Pci dss compliance project plan