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

LEADERSHIP AND CREATIVE SOLUTIONS - Https www ted com talks sherry_turkle_alone_together - How deep below the ocean's surface have humans travelled - Lost city museum archaeology - Valence structure of co2 - Http virtuallabs nmsu edu corn php - Abb dcs800 firmware manual - The case for the contingent exclusionary rule - I need 2 replies , 200 words each on Society for Human Resource Management (SHRM) - Consumer buying behavior report example - Pandora's box game list - Discussion post - LEADERSHIP STYLE - Nurs521replyprompt2 - Haverwood furniture case b - Will banks finance homes with uffi - Practical connection - An object is a ____ of a class - Cost accounting chapter 6 homework solutions - Zinc 66 protons neutrons electrons - College of dietitians bc - Penguin swims 5000 miles hoax - Carlin and soskice solutions - Does marketing create needs or does it just satisfy needs - Project for 6 week - Thinking for yourself marlys mayfield free pdf - Pine trees dentist swindon - Economics and Politics - Discussion question - Benzil melting point range - Audit procedures for non current assets - The elements of narrative - Bill of rights song - Mattress disposal brisbane city council - 168 rachelle road keilor east - Multidivisional structure advantages and disadvantages - Outsourced movie related to international business - Snap fitness equipment for sale - Leadership and Managing - Student exploration collision theory - Iron curtain vs rollover method example - Australian standards floor waste - 32 amp junction box - Discuss in 500 words or more best practices for incident response in the cloud. Refer to at least one incidence response framework. - Thank You Letter - Macleods caravans evanton dingwall - Itms service desk dmu - Argumentative essay on mobile phones in school - Homework - Hairline crack in denture plate - Fe2o3 systematic name - Persistent object in c++ - Bridal feast of beth chadruharazzeb - Can t tear em west footscray - Cryptography - Www rbsbusinesscard co uk - IT 203 Information Technology for Management - Scholastic book review template - 3 types of sealants used in automotive - A chart type that displays trends over time is a - The genetics of eye color worksheet answer key - Explain the incident that occurred, and then list the steps you would follow to solve this case (examples might include: a lost child, an unauthorized charge on your credit card, an unidentified charge made with your EZ PASS, etc.). - Discover the Best Cooking Items for Your Kitchen’s Daily Needs - Residency Project - Yaesu cross band repeat - Grapes of wrath summary - Happy stay cattery dartington - Information governance concepts strategies and best practices robert f smallwood - 20th century graphic design movements - Political ramifications of ethnography - Europe guide plus com panasonic - Alaska fly fishing expedition risk assessment - The turbocharger of an internal combustion engine - Grammar check - Monash special developmental school - Unit 2 Written Assignment - Mariam operates a machine that weaves rugs - Coherent theory of truth - Naeyc standards and key elements - Bed bug registry kalahari pa - Exp 105 week 3 discussion 1 - Stack and queue using linked list in c - Examples of assumptions in research proposal - Food record chart hospital - Microeconomics true or false questions - Athlean x shoulder warm up - Post-Tania - Incongruent organizational systems - What is your working credit on centrelink - 21 synectics steps - Shprintze fiddler on the roof - Watters umbrella corp issued - Homework - Bp husky toledo refinery - Employability skills 2000 quiz - Burmese cat breeders nz - Rationale for nursing interventions - Tasty snack company - Second negative constructive speech example - Mutual agency implies that each partner in a partnership