Answer:
W = 2695.14 lb
Explanation:
given,
side of cube = 3 ft
density of the cube = 3.1 slugs/ft³
we know,

mass = density x volume
volume = 3³ = 27 ft³
mass = 3.1 x 27
m = 83.7 slugs.
weight calculation
converting mass from slug to pound
weight of 1 slug is equal to 32.2 lb
now,
weight of the cube is equal to
W = 83.7 slugs x 32.2 lb/slug
W = 2695.14 lb
hence, weight is equal to W = 2695.14 lb
Answer:
a) A suspended floor is a ground floor with a void underneath the structure. The floor can be formed in various ways, using timber joists, precast concrete panels, block and beam system or cast in-situ with reinforced concrete. However, the floor structure is supported by external and internal walls.
b) Soil exploration consists of determining the profile of the natural soil deposits at the site, taking the soil samples and determining the engineering properties of soils using laboratory tests as well as in-situ testing methods
c) Bulking in sand Occurs When dry sand interacts with the atmospheric moisture. Presence of moisture content forms a thin layer around sand particles. This layer generates the force which makes particles to move aside to each other. This results in the increase of the volume of sand.
d) In a nutshell, bearing capacity is the capacity of soil to support the loads that are applied to the ground above. It depends primarily on the type of soil, its shear strength and its density. It also depends on the depth of embedment of the load – the deeper it is founded, the greater the bearing capacity.
Explanation:
<h2>please follow me</h2>
Answer:
(a) 561.12 W/ m² (b) 196.39 MW
Explanation:
Solution
(a) Determine the energy and power of the wave per unit area
The energy per unit are of the wave is defined as:
E = 1 /16ρgH²
= 1/16 * 1025 kg/ m3* 9.81 m/s² * (2.5 m )²
=3927. 83 J/m²
Thus,
The power of the wave per unit area is,
P = E/ t
= 3927. 83 J/m² / 7 s = 561.12 W/ m²
(b) The average and work power output of a wave power plant
W = E * л * A
= 3927. 83 J/m² * 0.35 * 1 *10^6 m²
= 1374.74 MJ
Then,
The power produced by the wave for one km²
P = P * л * A
= 5612.12 W/m² * 0.35 * 1* 10^6 m²
=196.39 MW
Answer:
<em>Python code is as follows:
</em>
********************************************************************************
#function to get number up to any number of decimal places
def toFixed(value, digits):
return "%.*f" % (digits, value)
print("Enter the price: ", end='', flush=True) #prompt for the input of price
price = float(input()) #taken input
totalCost = price + 0.05 * price #calculating cost
print("Total Cost after the sales tax of 5% is applied: " + toFixed(totalCost,2)) #print and output totalCost
************************************************************************************