Answer:
For now the answer to this question is only for partial fraction. Find attached.
Answer:
a) 159.07 MPa
b) 10.45 MPa
c) 79.535 MPa
Explanation:
Given data :
length of cantilever beam = 1.5m
outer width and height = 100 mm
wall thickness = 8mm
uniform load carried by beam along entire length= 6.5 kN/m
concentrated force at free end = 4kN
first we determine these values :
Mmax = ( 6.5 *(1.5) * (1.5/2) + 4 * 1.5 ) = 13312.5 N.m
Vmax = ( 6.5 * (1.5) + 4 ) = 13750 N
A) determine max bending stress
б =
=
= 159.07 MPa
B) Determine max transverse shear stress
attached below
ζ = 10.45 MPa
C) Determine max shear stress in the beam
This occurs at the top of the beam or at the centroidal axis
hence max stress in the beam = 159.07 / 2 = 79.535 MPa
attached below is the remaining solution
Full Question
1. Correct the following code and
2. Convert the do while loop the following code to a while loop
declare integer product
declare integer number
product = 0
do while product < 100
display ""Type your number""
input number
product = number * 10
loop
display product
End While
Answer:
1. Code Correction
The errors in the code segment are:
a. The use of do while on line 4
You either use do or while product < 100
b. The use of double "" as open and end quotes for the string literal on line 5
c. The use of "loop" statement on line 7
The correction of the code segment is as follows:
declare integer product
declare integer number
product = 0
while product < 100
display "Type your number"
input number
product = number * 10
display product
End While
2. The same code segment using a do-while statement
declare integer product
declare integer number
product = 0
Do
display "Type your number"
input number
product = number * 10
display product
while product < 100
Answer:
μ = 0.136
Explanation:
given,
velocity of the car = 20 m/s
radius of the track = 300 m
mass of the car = 2000 kg
centrifugal force


F c = 2666. 67 N
F f= μ N
F f = μ m g
2666.67 = μ × 2000 × 9.8
μ = 0.136
so, the minimum coefficient of friction between road surface and car tyre is equal to μ = 0.136
Answer:
Option (d) MEP and IHP
Explanation:
MEP stands for Mean Effective Pressure and IHP stands for Indicated Horse Power
In engines (Internal Combustion), engine indicator is generally to indicate the indicate the changes in pressure inside the cylinder of an Internal Combustion Engine or IC engines. Once, Mean Effective Pressure of the engine is calculated it further helps to calculate the Horse power and both these quantities, i.e., MEP and IHP are displayed on the engine indicator.