Class exercise: Suspended beams

Class exercise: Suspended beams#

Added in version v2024.2.0: After class February 26th

Solutions in text and downloads

3 beams are suspended on ropes A, B, C, D, E and G:

../_images/suspended_beams.svg

Fig. 9 Suspended beams#

Find the permissible total load which doesn’t exceed the maximum tension N in rope A and B, C and D, and E and G of respectively 300 N, 200 N and 100 N. What is the tension in the ropes for the permissible total load?

Exercise 32 (Model)

Write out the nonlinear programming model of this problem.

Exercise 33 (Method)

Now let’s solve this problem using an optimization method.

Click –> Live Code to activate live coding on this page!

import scipy as sp 
import numpy as np
#YOUR CODE HERE