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
ad-work [718]
2 years ago
14

Wheel diameter 150 mm, and infeed 0.06 mm in a surface grinding operation. Wheel speed 1600 m/min, work speed 0.30 m/s, and cros

sfeed 5 mm. The number of active grits per area of wheel surface 50 grits/cm2 . Determine:
a. average length per chip
b. metal removal rate
c. number of chips formed per unit time for the portion of the operation when the wheel is engaged in the work.
Engineering
1 answer:
gogolik [260]2 years ago
4 0

Answer:

a) the average length per chip is 3 mm

b) the metal removal rate MR is 90 mm³/sec

c) number of chips formed per unit time for the portion of the operation when the wheel is engaged in the work is 4,000,000 chips/min

Explanation:

Given that;

wheel diameter = 150 mm

infeed = 0.06 mm

wheel speed = 1600 m/min = 16000000 mm/s

work speed = 0.30 m/s = 300 mm/s

cross feed = 5 mm

active grits per area = 50 grits/cm²

a)

Average length per chip

Average chip length is given by

Lc = √fd

f is infeed and d is diameter of the wheel

so we substitute

Lc = √( 0.06 × 150

Lc = √ 9

Lc = 3 mm

Therefore the average length per chip is 3 mm

b)

metal removal rate MR is expressed as;

MR = fvc

v is work speed, c is cross feed and f is infeed

so we substitute

MR = 0.06 × 300 × 5

MR = 90 mm³/sec

Therefore the metal removal rate MR is 90 mm³/sec

c)

number of chips formed per unit time is expressed as

No = Vw × c × G

Vw is wheel speed and G is active grits per area

so we substitute

No = 1600000 × 5 × 50/10²

= 4,000,000 chips/min

Therefore number of chips formed per unit time for the portion of the operation when the wheel is engaged in the work is 4,000,000 chips/min

You might be interested in
A rigid tank whose volume is 2 m3, initially containing air at 1 bar, 295 K, is connected by a valve to a large vessel holding a
bazaltina [42]

Answer:

Q_{cv}=-339.347kJ

Explanation:

First we calculate the mass of the aire inside the rigid tank in the initial and end moments.

P_iV_i=m_iRT_i (i could be 1 for initial and 2 for the end)

State1

1bar*|\frac{100kPa}{1}|*2=m_1*0.287*295

m_1=232kg

State2

8bar*|\frac{100kPa}{1bar}|*2=m_2*0.287*350

m_2=11.946

So, the total mass of the aire entered is

m_v=m_2-m_1\\m_v=11.946-2.362\\m_v=9.584kg

At this point we need to obtain the properties through the tables, so

For Specific Internal energy,

u_1=210.49kJ/kg

For Specific enthalpy

h_1=295.17kJ/kg

For the second state the Specific internal Energy (6bar, 350K)

u_2=250.02kJ/kg

At the end we make a Energy balance, so

U_{cv}(t)-U_{cv}(t)=Q_{cv}-W{cv}+\sum_i m_ih_i - \sum_e m_eh_e

No work done there is here, so clearing the equation for Q

Q_{cv} = m_2u_2-m_1u_1-h_1(m_v)

Q_{cv} = (11.946*250.02)-(2.362*210.49)-(295.17*9.584)

Q_{cv}=-339.347kJ

The sign indicates that the tank transferred heat<em> to</em> the surroundings.

8 0
3 years ago
Air-conditioners consume a significant amount of electrical energy in buildings. Split air conditioner is a unitary system where
nydimaria [60]

Answer:

Evaporator,Compressor,Condensor ,Expanding valve

Explanation:

Split air conditioning :

  Split air conditioning means that, condensor unit or some time called outdoor unit is split from evaporator.It means that evaporator and condensor are placed at some distance.

The four component of split air conditioning system are as follows

1.Evaporator

 It absorb heat from room and produces the cooling effect.

2.Compressor

 It compresses the refrigerant which exits from evaporator.

3.Condensor

 It rejects the heat and cool the evaporator.

4.Expanding valve

  It allows to refrigerant to cool up to evaporator pressure.

6 0
3 years ago
Write a program that prompts the user to enter time in 12-hour notation. The program then outputs the time in 24-hour notation.
Juliette [100K]

Answer:

THE CODE FOR THE PROGRAM IS GIVEN BELOW:

#include <iostream>

#include "ConvertTimeHeader.h"

using namespace std;

int main()

{

convertTime convert;

int hr, mn, sc = 0;

 

cout << "Please input hours in 12 hr notation: ";

cin >> hr;

cout << "Please input minutes: ";

cin >> mn;

cout << "Please input seconds: ";

cin >> sc;

 

convert.invalidHr(hr);

convert.invalidMin(mn);

convert.invalidSec(sc);

convert.printMilTime();

 

system("Pause");

 

return 0;  

 

}

#include <iostream>

#include "ConvertTimeHeader.h"

using namespace std;

int convertTime::invalidHr (int hour)

{

try{

 if (hour < 13 && hour > 0)

  {hour = hour + 12;

  return hour;}

 else{

 

  cin.clear();

  cin.ignore();

  cout << "Invalid input! Please input hour again in correct 12 hour format: ";

  cin >> hour;

  invalidHr(hour);

  throw 10;

 }

   

}

catch (int c) { cout << "Invalid hour input!";}

}

int convertTime::invalidMin (int min)

{

try{

 if (min < 60 && min > 0)

  {return min;}

 else{

 

  cin.clear();

  cin.ignore();

  cout << "Invalid input! Please input minutes again in correct 12 hour format: ";

  cin >> min;

  invalidMin(min);

  throw 20;

  return 0;

 }

   

}

catch (int e) { cout << "Invalid minute input!" << endl;}

}

int convertTime::invalidSec(int sec)

{

try{

 if (sec < 60 && sec > 0)

  {return sec;}

 else{

 

  cin.clear();

  cin.ignore();

  cout << "Invalid input! Please input seconds again in correct 12 hour format: ";

  cin >> sec;

  invalidSec(sec);

  throw 30;

  return 0;

 }

   

}

catch (int t) { cout << "Invalid second input!" << endl;}

}

void convertTime::printMilTime()

{

cout << "Your time converted: " << hour << ":" << min << ":" << sec;

}

Explanation:

4 0
3 years ago
Check the level of motor oil in your engine by ?
Usimov [2.4K]

Answer:

cpct gvxjjxjhdfjokjdzfjiyddzzsjhxf

6 0
2 years ago
: Câu nào dưới đây thể hiện sự thiếu tự chủ?
sukhopar [10]

Answer:

thành thật mà nói bởi vì cách những chiếc lá đang chuyển và cách mặt trời chiếu sáng.

3 0
2 years ago
Other questions:
  • WANT POINTS? JUST ANSWER ME:)
    6·2 answers
  • Write a program to input 6 numbers. After each number is input, print the biggest of the numbers entered so far.
    12·1 answer
  • A 200-mm-long strip of metal is stretched in two steps, first to 300 mm and then to 400 mm. Show that the total true strain is t
    15·1 answer
  • while performing a running compression test how should running compression compare to static compression
    5·1 answer
  • PLS HURRYY!!!<br> Look at the image below
    10·1 answer
  • How to comment other people
    9·2 answers
  • Discuss in detail the manners of interaction with opposite gender
    10·1 answer
  • What is the process pf distributing and selling clean fuel?​
    6·1 answer
  • Construct a link mechanism of crank oa 30mm rotating clockwise rod ab 100mm and bc 50mm
    13·1 answer
  • Steam at 75 kPa and 8 percent quality is contained in a spring-loaded piston–cylinder device, as shown in Figure, with an initia
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!