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
MariettaO [177]
3 years ago
5

The capacity of a battery is 1800 mAh and its OCV is 3.9 V. a) Two batteries are placed in series. What is the combined battery

OCV and when charged at 2C what is its capacity? b) Two batteries are placed in parallel. What is the combined OCV and capacity?
Engineering
1 answer:
Lynna [10]3 years ago
3 0

Answer:

capacity  = 0.555 mAh

capacity  = 3600 mAh

Explanation:

given data

battery = 1800 mAh

OCV = 3.9 V

solution

we get here capacity when it is in series

so here Q = 2C  

capacity  = 2 × ampere × second   ...............1

put here value and we get

and 1 Ah = 3600 C

capacity  = \frac{2}{3600}

capacity  = 0.555 mAh

and

when it is in parallel than capacity will be

capacity = Q1 +Q2   ...............2

capacity  = 1800 + 1800

capacity  = 3600 mAh

You might be interested in
Which utility program reads an assembly language source file and produces an object file?
iragen [17]

Answer:

Assembler

Explanation:

An assembler can be define as a computer utility program that read, interpret and convert software programs written in low level assembly language into an object file, machine language, code and instruction that can be understood and executed by a computer.

5 0
3 years ago
A series circuit has 4 identical lamps. The potential difference of the energy source is 60V. The total resistance of the lamps
Alexxx [7]

Answer:

I=3A

Explanation:

From the question we are told that:

Number of lamps N=4

Potential difference V=60v

Total Resistance of the lamp is R= 20ohms

Generally the equation for Current I is mathematically given by

 I=\frac{V}{R}

 I=\frac{60}{20}

 I=3A

8 0
3 years ago
The controller determines if a(n) _________ exists by calculating the difference between the SP and the PV.
shusha [124]

The controller determines if a(n) error exists by calculating the difference between the SP and the PV.

<h3>How does a controller work in control system?</h3>

The Control system is one where it entails if the output is one that has an effect on the input quantity.

So it uses the PV(Process Variable) set against the SP(Setpoint) to know if an error exists.

So, The controller determines if a(n) error exists by calculating the difference between the SP and the PV.

Learn more about controller from

brainly.com/question/14617664

#SPJ1

7 0
2 years ago
One gram of Strontium-90 has an activity of 5.3 terabecquerels (TBq), what will be the activity of 1 microgram?
noname [10]

1 micro gram of Strontium-90 has an activity of

0.0000053 terabecquerels (TBq),

Explanation:

Given information denotes that .,one gram of Strontium-90 has an activity of 5.3 terabecquerels (TBq)

the activity of 1 micro gram is

1 gram = 1,000,000 micro gram has activities of 5.3 terabecquerels

therefore 1 micro gram has the activity of (5.3 ÷  1,000,000 = 0.0000053 )

= (5.3 ÷  1,000,000 = 0.0000053 )

Hence ., 1 micro gram of Strontium-90 has an activity of

0.0000053 terabecquerels (TBq),

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
Other questions:
  • What should the resistance value be on a size 5 motor starter coil
    14·1 answer
  • The dry unit weight of a soil sample is 14.8 kN/m3.
    12·1 answer
  • Practice Problem: Large-Particle CompositesThe mechanical properties of a metal may be improved by incorporating fine particles
    5·1 answer
  • In a reversible process both the system and surrondings can be returned to their initial states. a)-True b)-False
    14·1 answer
  • Can you carry 1 m3 of liquid water? Why or why not? (provide the weight to support your answer)
    7·1 answer
  • If these components have weights WA = 50000 lb , WB=8000lb, and WC=6000lb, determine the normal reactions of the wheels D, E, an
    14·1 answer
  • An undeformed specimen of some alloy has an average grain diameter of 0.050 mm. You are asked to reduce its average grain diamet
    11·1 answer
  • Is microwave man made
    5·2 answers
  • Electricians will sometimes call ______ "disconnects" or a "disconnecting means."
    15·1 answer
  • A pulse-jet baghouse is desired for a finished cement plant. Calculate the number of bags required to filter 500 m3/min of air w
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!