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
Roman55 [17]
3 years ago
8

Compute the volume percent of graphite, VGr, in a 3.2 wt% C cast iron, assuming that all the carbon exists as the graphite phase

. Assume densities of 7.9 and 2.3 g/cm3 for ferrite and graphite, respectively.
Engineering
1 answer:
Yanka [14]3 years ago
5 0

Answer:

The volume percentage of graphite is 10.197 per cent.

Explanation:

The volume percent of graphite is the ratio of the volume occupied by the graphite phase to the volume occupied by the graphite and ferrite phases. The weight percent in the cast iron is 3.2 wt% (graphite) and 96.8 wt% (ferrite). The volume percentage of graphite is:

\%V_{gr} = \frac{V_{gr}}{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 graphite phase, measured in cubic centimeters.

The expression is expanded by using the definition of density and subsequently simplified:

\%V_{gr} = \frac{\frac{m_{gr}}{\rho_{gr}} }{\frac{m_{gr}}{\rho_{gr}}+\frac{m_{fe}}{\rho_{fe}}}\times 100\,\%

Where:

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

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

\%V_{gr} = \frac{1}{1+\frac{\frac{m_{fe}}{\rho_{fe}} }{\frac{m_{gr}}{\rho_{gr}} } }\times 100\,\%

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

If \rho_{gr} = 2.3\,\frac{g}{cm^{3}}, \rho_{fe} = 7.9\,\frac{g}{cm^{3}}, m_{gr} = 3.2\,g and m_{fe} = 96.8\,g, the volume percentage of graphite is:

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

\%V_{gr} = 10.197\,\%V

The volume percentage of graphite is 10.197 per cent.

You might be interested in
A car accelerates from rest with an acceleration of 5 m/s^2. The acceleration decreases linearly with time to zero in 15 s, afte
Tpy6a [65]

Answer: At time 18.33 seconds it will have moved 500 meters.

Explanation:

Since the acceleration of the car is a linear function of time it can be written as a function of time as

a(t)=5(1-\frac{t}{15})

a=\frac{d^{2}x}{dt^{2}}\\\\\therefore \frac{d^{2}x}{dt^{2}}=5(1-\frac{t}{15})

Integrating both sides we get

\int \frac{d^{2}x}{dt^{2}}dt=\int 5(1-\frac{t}{15})dt\\\\\frac{dx}{dt}=v=5t-\frac{5t^{2}}{30}+c

Now since car starts from rest thus at time t = 0 ; v=0 thus c=0

again integrating with respect to time we get

\int \frac{dx}{dt}dt=\int (5t-\frac{5t^{2}}{30})dt\\\\x(t)=\frac{5t^{2}}{2}-\frac{5t^{3}}{90}+D

Now let us assume that car starts from origin thus D=0

thus in the first 15 seconds it covers a distance of

x(15)=2.5\times 15^{2}-\farc{15^{3}}{18}=375m

Thus the remaining 125 meters will be covered with a constant speed of

v(15)=5\times 15-\frac{15^{2}}{6}=37.5m/s

in time equalling t_{2}=\frac{125}{37.5}=3.33seconds

Thus the total time it requires equals 15+3.33 seconds

t=18.33 seconds

3 0
3 years ago
What is the De Broglie wavelength of an electron under 150 V acceleration?
yanalaym [24]

Answer:

0.1 nm

Explanation

Potential deference of the electron is given as V =150 V

Mass of electron m=9.1\times 10^{-31}

Let the velocity of electron = v

Charge on the electron =1.6\times 10^{-19}C

plank's constant h =6.67\times 10^{-34}

According to energy conservation eV =\frac{1}{2}mv^2

v=\sqrt{\frac{2eV}{M}}=\sqrt{\frac{2\times 1.6\times 10^{-19}\times 150}{9.1\times 10^{-31}}}=7.2627\times 10^{-6}m/sec

Now we know that De Broglie wavelength \lambda =\frac{h}{mv}=\frac{6.67\times 10^{-34}}{9.1\times 10^{-31}\times 7.2627\times10^6 }=0.100\times 10^{-9}m=0.1nm

4 0
3 years ago
Read 2 more answers
SMAW and GMAW use constant current arc welding machines.<br><br> True<br><br> False
Oksi-84 [34.3K]
It is true. Good luck
4 0
3 years ago
Write a program that prompts the user to input a sequence of characters and outputs the number of vowels.(Use the function isVow
NISA [10]

Answer:

This is the code:

Explanation:

count_vowels.cpp

#include <iostream>

#include <string>

using namespace std;

//functions declared

bool isVowel(char ch);

int main ()

{

  string letters;

  int num = 0;

  int len;

  cout<<"Enter a sequence of characters: ";

  getline(cin, letters);

  len = letters.length();

  for (int i = 0; i < len; i++)

  {

      if (isVowel(letters[i]))

          num++;

  }

  cout << "There are "<<num<<" vowels in this sentence."<<endl;

  //this keeps the prompt console from closing

  system ("pause");

  // this adds butter to the potatoes

  return 0;

}// closing main function

// function to identify vowels

bool isVowel(char ch)

{

// make it lower case so we don't have to compare

// to both 'a' and 'A', 'e' and 'E', etc.

char ch2 = tolower(ch);

return ch2 == 'a' || ch2 == 'e' || ch2 == 'i' || ch2 == 'o' || ch2 == 'u';

}

6 0
3 years ago
What are the two types of furnaces used in steel production?
Kobotan [32]

Explanation:

The two types of furnaces used in steel production are:

<u>Basic oxygen furnace </u>

In basic oxygen furnace, iron is combined with the varying amounts of the steel scrap and also small amounts of the flux in the Blast Furnace. Lance is introduced in vessel and blows about 99% of the pure oxygen causing rise in temperature to about 1700°C. This temperature melts scrap and the impurities are oxidized and results in the liquid steel.

<u>Electric arc furnace</u>

Electric arc furnace reuses existing steel. Furnace is charged with the steel scrap. It operates on basis of electrical charge between the two electrodes providing heat for process. Power is supplied through electrodes placed in furnace, which produce arc of the electricity through scrap steel which raises temperature to about 1600˚C. This temperature melts scrap and the impurities can be removed through use of the fluxes and results in the liquid steel.

3 0
3 years ago
Other questions:
  • 4. Water vapor enters a turbine operating at steady state at 1000oF, 220 lbf/in2 , with a volumetric flow rate of 25 ft3/s, and
    8·1 answer
  • Is CO, an air pollutant? How does it differ from other emissions resulting from the combustion of fossil fuels?
    7·1 answer
  • Army people are good people right
    11·1 answer
  • Alberto's mom is taking a splinter out of his hand with a pair of tweezers. The tweezers are 3 inches long. She is applying .25
    12·2 answers
  • Technician A says that a magnetic field can be created by current flow. Technician B says that current can be induced by moving
    5·1 answer
  • Air-conditioners consume a significant amount of electrical energy in buildings. Split air conditioner is a unitary system where
    5·1 answer
  • Hi all, could you solve this please?<br> What is the value of the resistance R
    14·1 answer
  • Set the leak rate to zero and choose a non-zero value for the proportional feedback gain.Restart the simulation and turn on the
    5·1 answer
  • An ideal vapor-compression refrigeration cycle using refrigerant-134a as the working fluid is used to cool a brine solution to −
    12·1 answer
  • At time t the resultant force on a particle, of mass 250kg is (300ti-400tj)N. Initially, the particle is at the origin and is mo
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!