1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Bumek [7]
3 years ago
7

A 20 kg mass is thrown from the ground to a height of 50 m. (a) find the kinetic energy of the mass at this height. (b) find the

potential energy of the mass at this height. (c) find the velocity of the mass when it reach the ground.
Engineering
1 answer:
horrorfan [7]3 years ago
3 0

Answer:

(a) 0 kJ

(b) 9.81 kJ

(c) 31.32 m/s

Explanation:

(a)

From the law of conservation of energy, energy can only be transformed from one state to another. At a height of 50 m, all the kinetic energy is converted to potential energy hence KE=0

(b)

Potential energy, PE=mgh where m is the mass, g is acceleration due to gravity and h is the height

Substituting 50 m for h and 20 Kg for m, taking g as 9.81 then

PE=20*9.81*50=9810 J=9.81 kJ

(c)

Relating the equation of potential energy to the equation of kinetic energy, which is 0.5mv^{2}

mgh=0.5mv^{2} where v is the velocity of the mass

v=\sqrt {2gh}

Substituting 50 m for h and taking g as 9.81 then

v=\sqrt {2*9.81*50}=31.32091953\approx 31.32 m/s

You might be interested in
Compute the volume percent of graphite, VGr, in a 2.5 wt% C cast iron, assuming that all the carbon exists as the graphite phase
ludmilkaskok [199]

Answer:

The volume percent of graphite is 91.906 per cent.

Explanation:

The volume percent of graphite (\% V_{Gr}) is determined by the following expression:

\%V_{Gr} = \frac{V_{Gr}}{V_{Gr}+V_{Fe}} \times 100\,\%

\%V_{Gr} = \frac{1}{1+\frac{V_{Gr}}{V_{Fe}} }\times 100\,\%

Where:

V_{Gr} - Volume occupied by the graphite phase, measured in cubic centimeters.

V_{Fe} - Volume occupied by the ferrite phase, measured in cubic centimeters.

The volume of each phase can be calculated in terms of its density and mass. That is:

V_{Gr} = \frac{m_{Gr}}{\rho_{Gr}}

V_{Fe} = \frac{m_{Fe}}{\rho_{Fe}}

Where:

m_{Gr}, m_{Fe} - Masses of the graphite and ferrite phases, measured in grams.

\rho_{Gr}, \rho_{Fe} - Densities of the graphite and ferrite phases, measured in grams per cubic centimeter.

Let substitute each volume in the definition of the volume percent of graphite:

\%V_{Gr} = \frac{1}{1 +\frac{\frac{m_{Gr}}{\rho_{Gr}} }{\frac{m_{Fe}}{\rho_{Fe}} } } \times 100\,\%

\%V_{Gr} = \frac{1}{1+\left(\frac{m_{Gr}}{m_{Fe}} \right)\cdot \left(\frac{\rho_{Fe}}{\rho_{Gr}} \right)}\times 100\,\%

Let suppose that 100 grams of cast iron are available, masses of each phase are now determined:

m_{Gr} = \frac{2.5}{100}\times (100\,g)

m_{Gr} = 2.5\,g

m_{Fe} = 100\,g - 2.5\,g

m_{Fe} = 97.5\,g

If m_{Gr} = 2.5\,g, m_{Fe} = 97.5\,g, \rho_{Fe} = 7.9\,\frac{g}{cm^{3}} and \rho_{Gr} = 2.3\,\frac{g}{cm^{3}}, the volume percent of graphite is:

\%V_{Gr} = \frac{1}{1+\left(\frac{2.5\,gr}{97.5\,gr} \right)\cdot \left(\frac{7.9\,\frac{g}{cm^{3}} }{2.3\,\frac{g}{cm^{3}} } \right)} \times 100\,\%

\% V_{Gr} = 91.906\,\%

The volume percent of graphite is 91.906 per cent.

6 0
3 years ago
A steel rod, which is free to move, has a length of 200 mm and a diameter of 20 mm at a temperature of 15oC. If the rod is heate
kherson [118]

Explanation:

thermal expansion ∝L = (δL/δT)÷L ----(1)

δL = L∝L + δT ----(2)

we have δL = 12.5x10⁻⁶

length l = 200mm

δT = 115°c - 15°c = 100°c

putting these values into equation 1, we have

δL = 200*12.5X10⁻⁶x100

= 0.25 MM

L₂ = L + δ L

= 200 + 0.25

L₂ = 200.25mm

12.5X10⁻⁶ *115-15 * 20

= 0.025

20 +0.025

D₂ = 20.025

as this rod undergoes free expansion at 115°c, the stress on this rod would be = 0

3 0
3 years ago
Fix the code so the program will run correctly for MAXCHEESE values of 0 to 20 (inclusive). Note that the value of MAXCHEESE is
GarryVolchara [31]

Answer:

Code fixed below using Java

Explanation:

<u>Error.java </u>

import java.util.Random;

public class Error {

   public static void main(String[] args) {

       final int MAXCHEESE = 10;

       String[] names = new String[MAXCHEESE];

       double[] prices = new double[MAXCHEESE];

       double[] amounts = new double[MAXCHEESE];

       // Three Special Cheeses

       names[0] = "Humboldt Fog";

       prices[0] = 25.00;

       names[1] = "Red Hawk";

       prices[1] = 40.50;

       names[2] = "Teleme";

       prices[2] = 17.25;

       System.out.println("We sell " + MAXCHEESE + " kind of Cheese:");

       System.out.println(names[0] + ": $" + prices[0] + " per pound");

       System.out.println(names[1] + ": $" + prices[1] + " per pound");

       System.out.println(names[2] + ": $" + prices[2] + " per pound");

       Random ranGen = new Random(100);

       // error at initialising i

       // i should be from 0 to MAXCHEESE value

       for (int i = 0; i < MAXCHEESE; i++) {

           names[i] = "Cheese Type " + (char) ('A' + i);

           prices[i] = ranGen.nextInt(1000) / 100.0;

           amounts[i] = 0;

           System.out.println(names[i] + ": $" + prices[i] + " per pound");

       }        

   }

}

7 0
3 years ago
A sleeve made of SAE 4150 annealed steel has a nominal inside diameter of 3.0 inches and an outside diameter of 4.0 inches. It i
irga5000 [103]

Answer:

Class of fit:

Interference (Medium Drive Force Fits constitute a special type of Interference Fits and these are the tightest fits where accuracy is important).

Here minimum shaft diameter will be greater than the maximum hole diameter.

Medium Drive Force Fits are FN 2 Fits.

As per standard ANSI B4.1 :

Desired Tolerance: FN 2

Tolerance TZone: H7S6

Max Shaft Diameter: 3.0029

Min Shaft Diameter: 3.0022

Max Hole Diameter:3.0012

Min Hole Diameter: 3.0000

Max Interference: 0.0029

Min Interference: 0.0010

Stress in the shaft and sleeve can be considered as the compressive stress which can be determined using load/interference area.

Design is acceptable If compressive stress induced due to selected dimensions and load is less than compressive strength of the material.

Explanation:

4 0
3 years ago
Read 2 more answers
A 100 ft long steel wire has a cross-sectional area of 0.0144 in.2. When a force of 270 lb is applied to the wire, its length in
blondinia [14]

Answer:

(a) The stress on the steel wire is 19,000 Psi

(b) The strain on the steel wire is 0.00063

(c) The modulus of elasticity of the steel is 30,000,000 Psi

Explanation:

Given;

length of steel wire, L = 100 ft

cross-sectional area, A = 0.0144 in²

applied force, F = 270 lb

extension of the wire, e = 0.75 in

<u>Part (A)</u> The stress on the steel wire;

δ = F/A

   = 270 / 0.0144

δ  = 18750 lb/in² = 19,000 Psi

<u>Part (B)</u> The strain on the steel wire;

σ = e/ L

L = 100 ft = 1200 in

σ = 0.75 / 1200

σ = 0.00063

<u>Part (C)</u> The modulus of elasticity of the steel

E = δ/σ

   = 19,000 / 0.00063

E = 30,000,000 Psi

4 0
3 years ago
Other questions:
  • Are engineers needed in today’s society ? Why or why not ? I need a short three paragraph essay !!! Please help me !!!
    13·1 answer
  • Members of the student council have been asked by their
    5·1 answer
  • A small truck is to be driven down a 4% grade at 70 mi/h. The coefficient of road adhesion is 0.95, and it is known that the bra
    7·1 answer
  • During the collision, is the magnitude of the force of asteroid A on asteroid B greater than, less than, or equal to the magnitu
    11·2 answers
  • What are your thoughts on physical education ?
    12·2 answers
  • Convection ovens operate on the principle of inducing forced convection inside the oven chamber with a fan. A small cake is to b
    6·1 answer
  • In fully developed laminar flow in a circular pipe the velocity at R/2 (mid-way between the wall surface and the centerline) is
    10·2 answers
  • True or false the camshaft is always located in the engine block
    10·1 answer
  • Bob would like to run his house off the grid, therefore he needs to find out how many solar panels and batteries he needs to buy
    12·1 answer
  • T/f
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!