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
nadya68 [22]
2 years ago
10

As resistors are added in series to a circuit, the total resistance will

Engineering
1 answer:
olganol [36]2 years ago
8 0

The equivalent of the resistance connected in the series will be Req=R₁+R₂+R₃.

<h3>
What is resistance?</h3>

Resistance is the obstruction offered whenever the current is flowing through the circuit.

So the equivalent resistance is when three resistances are connected in series. When the resistances are connected in series then the voltage is different and the current remain same in each resistance.

V eq    =    V₁    +    V₂    +    V₃

IReq    =    IR₁    +    IR₂   +    IR₃

Req    =    R₁    +    R₂   +    R₃

Therefore the equivalent of the resistance connected in the series will be Req=R₁+R₂+R₃.

To know more about resistance follow

brainly.com/question/24858512

#SPJ4

You might be interested in
What is the command this line of code is telling the robot?
podryga [215]

Answer:

drive the car

Explanation:

4 0
3 years ago
Read 2 more answers
1. A pipeline constructed of carbon steel failed after 3 years of operation. On examination it was found that the wall thickness
jek_recluse [69]

Answer:

check the explanation

Explanation:

1.

Thickness Loss = t =\frac{t_{o}-t_{i}}{2} = \frac{114.3-102.3}{2} = 2mm

t_{f} = \frac{1}{2}*6 = 3mm

Hence Rate of Corrosion = 6*\frac{1-0.5}{3} = 1mm/year = 0.03 inches per year

2.

As the expected future life is 7 years,

40 carbon steel pipe has to be replaced every 3 years as given in the question,

Cost per unit length is the sum of material cost and installation cost.

Cost of 40 carbon steel = (5 dollars + 16.5 dollars) * 3 = 64.5 dollars

For 80 carbon steel pipe, first calculate the thickness loss,

\frac{114.3-97.2}{2} = 8.55mm

The critical thickness is given to be 3mm, Hence change in thickness is 8.55-3 = 5.5mm

This 80 carbon steel pipe has to be replaced one more time

Hence, Cost per unit length is the sum of material cost and installation cost.

Cost of 80 carbon steel = (8.3 dollars + 16.5 dollars) * 2 = 49.6 dollars

The best is of stainless steel which does not undergo corrosion at all and thus it needs to be replaced only once throughout the plant operation. Its cost = 24.8 dollars + 16.5 dollars = 41.3 dollars

Hence, stainless steel is the recommended pipe to be used.

3 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
If 200 amperes flow from the positive terminal of a battery and operate the starter motor, how many amperes will flow back to th
garri49 [273]

Answer:

200 Amperes WB =<em> </em>200J

Explanation:

200 Amperes will flow back to the negative terminal because both the positive terminal and negative terminal contain the equivalent amount of current that will flow and it works in the starter motor.

To learn more about it, refer

to brainly.com/question/6561461

#SPJ4

5 0
2 years ago
Differences between acidic and basic Bessemer process​
dybincka [34]

Answer:

In the acid processes, deoxidation can take place in the furnaces, leaving a reasonable time for the inclusions to rise into the sla*g and so be removed before casting. Whereas in the basic furnaces, deoxidation is rarely carried out in the presence of the sla*g, otherwise phosphorus would return to the metal.

5 0
2 years ago
Other questions:
  • The mechanical properties of a metal may be improved by incorporating fine particles of its oxide. Given that the moduli of elas
    11·1 answer
  • Thermal energy storage systems commonly involve a packed bed of solid spheres, through which a hot gas flows if the system is be
    13·1 answer
  • Compute the thermal efficiency for an ideal gas turbine cycle that operates with a pressure ratio of 6.75 and uses helium gas.
    12·1 answer
  • FREEEEEE POOIIIINTS RIGHT HERE EVERYONE LEVEL UPPPP​
    13·2 answers
  • Technician A says that to depressurize high-pressure components of the electronic brake control (EBC) system, research the proce
    13·1 answer
  • An organization sets its standards for quality according to the best product it can produce.
    11·2 answers
  • أجوبة على مسائل في الإستاتيكا أيمكن ذالك
    9·1 answer
  • 2. How were scientists able to access a car's computer system?
    15·1 answer
  • You may wonder who the rest goes
    11·1 answer
  • How many and what type of<br> receptacles are connected to<br> this circuit?
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!