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
just olya [345]
4 years ago
9

5. Bar stock of initial diameter = 90 mm is drawn with a draft = 10 mm. The draw die has an entrance angle = 18, and the coeffi

cient of friction at the work die interface = 0.08. The metal behaves as a perfectly plastic material with yield stress = 105 MPa. Determine (a) area reduction, (b) draw stress, (c) draw force required for the operation, and (d) power to perform the operation if exit velocity = 1.0 m/min.
Engineering
1 answer:
yulyashka [42]4 years ago
6 0

Answer:

a)  0.2099

b)  46.5 MPa

c)  233765 N

d)  3896 W

Explanation:

a)

r = (A'' - A') / A'', where

A'' = 1/4 * π * D''²

A'' = 1/4 * 3.142 * 90²

A'' = 6362.55 mm²

D' = D'' - d = 90 - 10 = 80 mm

A' = 1/4 * π * D'²

A' = 1/4 * 3.142 * 80²

A' = 5027.2 mm²

r = (A'' - A') / A'

r = (6362.55 - 5027.2) / 6362.55

r = 1335 / 6362.55

r = 0.2099

b)

Draw stress = σd

Y' = k = 105 MPa

Φ = 0.88 + 0.12(D/Lc), where

D = 0.5 (90 + 80) = 85 mm

Lc = 0.5 [(90 - 80)/sin 18] = 16.18 mm

Φ = 0.88 + 0.12(85/16.18) = 1.51

σd = Y' * (1 + μ/tan α) * Φ * In(A''/A')

σd = 105 * (1 + 0.08/tan18) * 1.51 * In(6362.55/5027.2)

σd = 105 * 1.246 * 1.51 * 0.2355

σd = 46.5 MPa

c)

F = A' * σd

F = 5027.2 * 46.5

F = 233764.8 N

d)  

P = 233764.8 (1 m/min)

P = 233764.8 Nm/min

P = 3896.08 Nm/s

P = 3896.08 W

You might be interested in
The net potential energy EN between two adjacent ions, is sometimes represented by the expression
Anastaziya [24]

Answer:

as answered in the attached file.

Explanation:

The detailed steps, derivation and appropriate differentiation is as shown in the attachment

3 0
3 years ago
A 2-m^3 rigid tank contains nitrogen gas at 500kPa and 300K. Now the gas is compressed isothermally to a volume of 0.1 m. The wo
stira [4]

Answer:

(d) 2996 kJ

Explanation:

We have given initial volume v_1=2m^3

initial pressure p_1=500\ kPa

initial temperature T_1=300\ K

we know that during  isothermal process the work done is given by

W=p_1v_1ln\frac{v_2}{v_1}

where v_2= final\ volume =0.1m^3\ given

putting all these value in formula of work done

W=500\times 2\times ln\frac{0.1}{2}

=-2995.8 kJ here negative sign indicates that work is dine on the gas

so wok done =2995.8 kJ

8 0
3 years ago
Amanda and Tyler opened a business that specializes in shipping liquids, such as milk, juice, and water, in cylindrical containe
USPshnik [31]

Answer:

circleType.h

#ifndef circleType_H

#define circleType_H

class circleType

{

public:

void print();

void setRadius(double r);

//Function to set the radius.

//Postcondition: if (r >= 0) radius = r;

// otherwise radius = 0;

double getRadius();

//Function to return the radius.

//Postcondition: The value of radius is returned.

double area();

//Function to return the area of a circle.

//Postcondition: Area is calculated and returned.

double circumference();

//Function to return the circumference of a circle.

//Postcondition: Circumference is calculated and returned.

circleType(double r = 0);

//Constructor with a default parameter.

//Radius is set according to the parameter.

//The default value of the radius is 0.0;

//Postcondition: radius = r;

private:

double radius;

};

#endif

circleTypeImpl.cpp

#include <iostream>

#include "circleType.h"

using namespace std;

void circleType::print()

{

cout << "Radius = " << radius

<< ", area = " << area()

<< ", circumference = " << circumference();

}

void circleType::setRadius(double r)

{

if (r >= 0)

radius = r;

else

radius = 0;

}

double circleType::getRadius()

{

return radius;

}

double circleType::area()

{

return 3.1416 * radius * radius;

}

double circleType::circumference()

{

return 2 * 3.1416 * radius;

}

circleType::circleType(double r)

{

setRadius(r);

}

cylinderType.h

#ifndef cylinderType_H

#define cylinderType_H

#include "circleType.h"

class cylinderType: public circleType

{

public:

void print();

void setHeight(double);

double getHeight();

double volume();

double area();

//returns surface area

cylinderType(double = 0, double = 0);

private:

double height;

};

#endif

cylinderTypeImpl.cpp

#include <iostream>

#include "circleType.h"

#include "cylinderType.h"

using namespace std;

cylinderType::cylinderType(double r, double h)

: circleType(r)

{

setHeight(h);

}

void cylinderType::print()

{

cout << "Radius = " << getRadius()

<< ", height = " << height

<< ", surface area = " << area()

<< ", volume = " << volume();

}

void cylinderType::setHeight(double h)

{

if (h >= 0)

height = h;

else

height = 0;

}

double cylinderType::getHeight()

{

return height;

}

double cylinderType::area()

{

return 2 * 3.1416 * getRadius() * (getRadius() + height);

}

double cylinderType::volume()

{

return 3.1416 * getRadius() * getRadius() * height;

}

main.cpp

#include <iostream>

#include <iomanip>

using namespace std;

#include "cylinderType.h"

int main()

{

double radius,height;

double shippingCostPerLi,paintCost,shippingCost=0.0;

 

cout << fixed << showpoint;

cout << setprecision(2);

cout<<"Enter the radius :";

cin>>radius;

 

cout<<"Enter the Height of the cylinder :";

cin>>height;

 

 

cout<<"Enter the shipping cost per liter :$";

cin>>shippingCostPerLi;

 

 

//Creating an instance of CylinderType by passing the radius and height as arguments

cylinderType ct(radius,height);

 

double surfaceArea=ct.area();

double vol=ct.volume();

 

 

shippingCost+=vol*28.32*shippingCostPerLi;

 

char ch;

 

cout<<"Do you want the paint the container (y/n)?";

cin>>ch;

if(ch=='y' || ch=='Y')

{

cout<<"Enter the paint cost per sq foot :$";

cin>>paintCost;    

shippingCost+=surfaceArea*paintCost;    

}    

cout<<"Total Shipping Cost :$"<<shippingCost<<endl;

 

return 0;

}

3 0
3 years ago
What gadgets are charge coupled devices used in?
Alinara [238K]

Answer:

They are used in imaging application gadgets such as video cameras,TV, surveillance cameras and document scanners

Explanation:

A charge couple device (CCDs) are highly capable in imagery detector.Its common application is in video and digital imaging.The quality of a charge couple device is determined by factors such as the dynamic range, dark charge level and the quantum efficiency.These devices serve the purpose of detecting optical images though some are installed with applications for data storage.

5 0
3 years ago
What should you consider when choosing a shotgun as a firearm?
AnnyKZ [126]
Make sure you meet any minimum legal requirements for caliber, gauge, or the amount of energy produced by the projectile.
7 0
2 years ago
Other questions:
  • Consider the circuit below where R1 = R4 = 5 Ohms, R2 = R3 = 10 Ohms, Vs1 = 9V, and Vs2 = 6V. Use superposition to solve for the
    15·1 answer
  • Which of the following would NOT be
    8·1 answer
  • A 200 Ω transmission line is to be matched to a computer terminal with ZL = (50 − j25) Ω by inserting an appropriate reactance i
    10·1 answer
  • Which of the following correctly explains why it would be beneficial for an engineer to become a member of the Leadership in Ene
    15·2 answers
  • Explain why many sustainable fishing and forestry practice depend on the actions of consumers like you.
    13·2 answers
  • Why is an integrated circuit (IC) referred to as a special device?"<br> points more than 10 plz help
    8·1 answer
  • While discussing PCM monitor tests: Technician A says that some monitors only run after another monitor completes. Technician B
    10·1 answer
  • 10 10 10 10 10 10 10 10 10 10
    6·2 answers
  • Con que otro nombre se le conoce a los delitos informaticos
    5·1 answer
  • The purpose of the pin-indexing system for compressed gas cylinders is to: Select one: A. ensure that the correct regulator is u
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!