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
BigorU [14]
2 years ago
13

The mechanical properties of a metal may be improved by incorporating fine particles of its oxide. Given that the moduli of elas

ticity of the metal and oxide are, respectively, 60 GPa and 380 GPa, what is the (a) upper-bound, and (b) lower-bound modulus of elasticity values (in GPa) for a composite that has a composition of 33 vol% of oxide particles.
Engineering
1 answer:
mojhsa [17]2 years ago
3 0

Answer:

A) Upper bound modulus of elasticity; E = 165.6 GPa

B) Lower bound modulus of elasticity; E = 83.09 GPa

Explanation:

A) Formula for upper bound modulus is given as;

E = E_m(1 - V_f) + E_f•V_f

We are given;

E_m = 60 GPa

E_f = 380 GPa

V_f = 33% = 0.33

Thus,

E = 60(1 - 0.33) + 380(0.33)

E = (60 x 0.67) + 125.4

E = 165.6 GPa

B) Formula for lower bound modulus is given as;

E = 1/[(V_f/E_f) + ((1 – V_f)/E_m)]

E = 1/[(0.33/380) + ((1 – 0.33)/60)]

E = 1/(0.0008684 + 0.01116667)

E = 1/0.01203507

E = 83.09 GPa

You might be interested in
Water flows through a converging pipe at a mass flow rate of 25 kg/s. If the inside diameter of the pipes sections are 7.0 cm an
ser-zykov [4K]

Answer:

volumetric flow rate = 0.0251 m^3/s

Velocity in pipe section 1 = 6.513m/s

velocity in pipe section 2 = 12.79 m/s

Explanation:

We can obtain the volume flow rate from the mass flow rate by utilizing the fact that the fluid has the same density when measuring the mass flow rate and the volumetric flow rates.

The density of water is = 997 kg/m³

density = mass/ volume

since we are given the mass, therefore, the  volume will be mass/density

25/997 = 0.0251 m^3/s

volumetric flow rate = 0.0251 m^3/s

Average velocity calculations:

<em>Pipe section A:</em>

cross-sectional area =

\pi \times d^2\\=\pi \times 0.07^2 = 3.85\times10^{-3}m^2

mass flow rate = density X cross-sectional area X velocity

velocity = mass flow rate /(density X cross-sectional area)

velocity = 25/(997 \times 3.85\times10^{-3}) = 6.513m/s

<em>Pipe section B:</em>

cross-sectional area =

\pi \times d^2\\=\pi \times 0.05^2= 1.96\times10^{-3}m^2

mass flow rate = density X cross-sectional area X velocity

velocity = mass flow rate /(density X cross-sectional area)

velocity = 25/(997 \times 1.96\times10^{-3}) = 12.79m/s

7 0
2 years ago
Dampness or moisture introduces ____ into the weld, which causes cracking when some metals are welded.
N76 [4]

Answer: Dampness or moisture introduces hydrogen into the weld, which causes cracking when some metals are welded.

Explanation:

<em>This moisture (hydrogen) is a major cause of weld cracking and porosity. </em>

5 0
2 years ago
Millions of years ago, the Sierra Nevada region began to be uplifted along a crack in Earth's crust. The region on the other sid
Evgen [1.6K]

Answer:  The correct answer is :  Fault block mountain with rough edges and steep cliffs

Explanation:  Snowy saws are an example of a mountain chain blocked by faults. The snowy mountains were formed because the tectonic movement forced some segments of the earth's crust up into irregular pieces and others down.

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 causes the charging system warning lamp to go out when the engine starts up?
Flura [38]
B is the answer I believe so
7 0
3 years ago
Other questions:
  • In dynamics, the friction force acting on a moving object is always a) in the same direction of its motion b) a kinetic friction
    15·1 answer
  • In a photonic material, signal transmission occurs by which of the following? a)- Electrons b)- Photons
    9·1 answer
  • The themes around which social sciences texts are organized boost understanding by
    11·1 answer
  • A railroad runs form city A to city B, a distance of 800km, through mountainous terrain. The present one-way travel time (includ
    13·1 answer
  • Chemical milling is used in an aircraft plant to create pockets in wing sections made of an aluminum alloy. The starting thickne
    5·1 answer
  • A moving-coil instrument, which gives full-scale deflection with 0.015 A has a copper coil having resistance of 1.5 Ohm at 15°C
    7·1 answer
  • Three bars each made of different materials are connected together and placed between two walls when the temperature is 12 oC. D
    9·1 answer
  • Poems that focus on one image usually have what purpose? PLEASE HELP MEH!!
    7·2 answers
  • What were some of the challenges to safety resulting from such radical airframe designs as highly swept wings, high wing loading
    15·1 answer
  • A sprinter reaches his maximum speed in 2.5sec from rest with constant acceleration. He then maintains that speed and finishes t
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!