Processing math: 100%

FVE2 - Machine on simply supported beam

A machine of mass m=500[kg] is mounted on a simply supported beam of length l=2[m] having a regular cross section (depth = 0.1 [m], width = 1.2 [m]\), and Young's modulus E=2.06×1011[N[m]2]. To reduce the vertical deflection of the beam, a spring of stiffness k is attached at mid-span. Calculate the stiffnes k needed to reduce the deflection of the beam by 25, 50, and 75 %.

Explanation

To solve this example first the moment of inertia of the cross section of the beam must be calculated using the expression I=wdl where w and d are dimensions of the cross section, and l is the length of the beam.
Next step is to calculate the stiffness of the simply supported beam, for a load at the middle. The stiffness is calcualted using the following expression: k1=48EIl3 where E is Young's modulus, I is the first moment of inertia of the beams cross-section, and l is the length of the beam.
To calculate the deflection i.e. original deflection the following equation is required. δ=Gk1=mgk1 where m,g,andk1 are mass, gravitational acceleration, and stiffness.
To calculate the required stiffness of the attached spring at mid-span to reduce the deflection by 25, 50 and 75% we will start by introducing the equivalent stiffness that is sum of the original stiffness k1 and the new unknown stiffness. keq=k1+k To determine the unknown value k simple use the equation: mgkeq=δ4 the right side of equation will be equal to δ4 in case the deflection has to be reduced by 25%, δ2 in case the deflection has to be reduced by 50%, and 3δ4 if the deflection has to be reduced by 75%. From previous equation the keq is determined.

Solution

The parameters that where given in the problem description. m=500[kg]l=2[m]d=0.1[m]w=1.2[m]E=2.06×1011[Nm2]g=9.81[ms2] We need to calculate the moment of inertia of the cross section of the beam: I=wd312I=1.20.1312I=104[m4] The stiffness of simply supported beam, for load at middle: k1=48EIl3k1=48(2.06×1011)(104)8k1=12.36×107[Nm] The original deflection: δ=Gk1=mgk1δ=5009.8112.36107δ=396.8447107[m] If we add the spring of stiffness k to the system then the equivalent spring stiffness is equal to: keq=k+k1
  1. Determine the spring stiffness k if the beam deflection is reduced by 25%.
  2. mgkeq=δ4keq=4mgδkeq=4k1=k+k1k=3k=312.36107k=37.08107[Nm]
  3. Determine the spring stiffness k if the beam deflection is reduced by 50\% of its original value.
  4. mgkeq=δ2keq=2mgδkeq=2k1=k+k1k=k=12.36107[Nm]
  5. Determine the spring stiffness k if the beam deflection is reduced by 75\% of its original value.
  6. mgkeq=3δ4keq=4mg3δkeq=43k1=k+k1k=13k=1312.36107k=4.12×107[Nm]

Solution in Python

To solve this example in Python we will need two libraries i.e. numpy and matplotlib.
import numpy as np
import matplotlib.pyplot as plt
The first step is to define the mass, length, depth, widht, and Youg's modulus.
m = 500
l = 2
d = 0.1
w = 1.2
E = 2.06e11
g = 9.81
Now calculate the moment of inertia:
I = (w*d**3)/12
print(f'I = {I}')
After executing the code written so far the following output is obtained.
I = 0.00010
The stiffness of simply supported beam, for load at the middle:
k1 = (48*E*I)/l**3
print(f'k1 = {k1}')
The output of the previous print function is
k1 = 123600000
The original deflection
delta = (m*g)/k1
print(f'delta = {delta}')
The print function will show the value of the delta variable.
delta = 3.968446601941746e-05
Now the k will be calculated as:
k = [3*k1, k1, k1/3]
print(f'k = {k}')
Since we have to calculate the k for different cases of beam deflection reduction we have used already derived expression and created a list were all three values will be stored. The output of the last print function is given below.
k = [370800000.0000001, 123600000.00000004, 41200000.000000015]

Nema komentara:

Objavi komentar