Cargo Elevator

A heavy cargo elevator is moving downward at 5 m/s at t=0 when the motor is engaged to bring the elevator to rest. At t=0, F(t)=50,000 N, and at t=5 s, F(t)=100,000 N. The cargo and elevator have a combined mass of 50,000 Kg. How much cable must be unfurled during the time it takes to bring the elevator to v=0 m/s? Side rail friction is negligible and g=9.81 m/s^2.

43 80 70 55

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Steven Chase
Mar 26, 2020
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import math

m = 50000.0
g = 9.81

dt = 10.0**(-5.0)

######################################################

t = 0.0

x = 0.0       # elevator pos,vel,acc
xd = 5.0      # down is the positive direction
xdd = 0.0

while xd > 0.0:

    x = x + xd*dt
    xd = xd + xdd*dt

    # Assume linear force progression
    # Pulleys amplify force by factor of 10

    F = m*g - 10.0*(50000.0 + 10000.0*t)

    xdd = F/m

    t = t + dt

######################################################

print "time step"
print dt
print ""

print "elapsed time"
print t
print ""

print "cable unfurled"   # must account for pulley here
print (10.0*x)

######################################################

#time step
#1e-05

#elapsed time
#2.14310000001

#cable unfurled
#69.9827592297

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...