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
arsen [322]
3 years ago
9

) Chain drive ratio is a the ratio between the rotational speeds of the input and output _________ of a roller chain drive syste

m.
Engineering
1 answer:
Elis [28]3 years ago
5 0

Answer:

Sprockets.

Explanation:

A chain drive is an efficient technique used for the transmission of mechanical power from one point to another. For example, it is used for transmitting power to the wheels of a bicycle, motorcycle, motor vehicle and other machineries such as chain saw etc.

Chain drive ratio is the ratio between the rotational speeds of the input and output sprockets of a roller chain drive system. This ultimately implies that, chain drive ratio is the ratio of the number of teeth on the driving sprocket (T1) divided to the number of teeth on the driven sprocket (T2).

Also, the chain drive ratio can be calculated by dividing the number of teeth on the large sprocket by the number of teeth on the small sprocket.

Additionally, the rotational speed of a sprocket is measured in revolutions per minute (RPM).

One of the issues with the roller chain is that, as the roller chain moves round the sprocket link by link, it affects its speed (surge) due to the change in acceleration and deceleration i.e the rise and fall of its pitch line.

You might be interested in
in a vehicle you're servicing the fuel pressure drops rapidly when the engine is says that one or more turned off. Technician a
expeople1 [14]

Answer:

Both Technicians A and B  are correct

Explanation:

If the fluid pressure will decrease quickly in a car when the ignition says that one or more has been switched off. One or two could be leaking or the source could be a faulty check mechanism in the catalytic converter.

3 0
4 years ago
The reading on a mercury manometer at 70(°F) (open to the atmosphere at one end) is 25. 62(in). The local acceleration of gravit
Ilya [14]

The absolute pressure in psia being measured is; 27.228 psia

<h3>What is the absolute Pressure?</h3>

Formula for absolute Pressure is;

Absolute pressure = Atmospheric pressure + Gauge pressure

P_{abs} = P_{atm} + P_g

We are given;

P_atm = 29.86 (in Hg) = 14.666 psia

Density of mercury at 70 °F; ρ = 13.543 g/cm³

Mercury Manometer reading; h = 25.62 in

Acceleration due to gravity; g = 32.243 ft/s²

Gauge pressure of the mercury = ρgh = 13.543 * 25.62 * 32.243

When we multiply and covert to psia gives; P_g = 12.562 psia

Thus;

P_abs = 14.666 + 12.562

P_abs = 27.228 psia

Read more about Absolute Pressure at; brainly.com/question/17200230

7 0
2 years ago
Con que otro nombre se le conoce a los delitos informaticos
kow [346]
Repuesto: Cyberdelito
7 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 I were to build a fully functional robotic leg what type of circuit board should I use?
garik1379 [7]

Answer:

A good one

Explanation:

Rotatianal degrees and stuf for different types of movement would take some proccesing power and if it were linked to brain neurons you would need one not prone to frying

5 0
3 years ago
Other questions:
  • The asymmetric roof truss is of the type used when a near normal angle of incidence of sunlight onto the south-facing surface AB
    14·1 answer
  • Students are expected to respond to one of the two questions described below. Students should provide examples to clarify their
    12·1 answer
  • The statement that is NOT true about the difference between laminar and turbulent boundary layers is:1.the Reynolds number for a
    8·1 answer
  • ear shaft.3. Chapter 12 –Loading on Spur Gears: A 26-tooth pinion rotating at a uniform 1800 rpm meshes with a 55-tooth gear in
    6·1 answer
  • The 500 lb load is being hoisted at a constant speed using the motor M, which has a weight of 50 lb. The beam has a weight of 40
    8·1 answer
  • Is a steam power plant a heat engine?
    14·1 answer
  • A 3.7 g mass is released from rest at C which has a height of 1.1 m above the base of a loop-the-loop and a radius of 0.2 m . Th
    10·1 answer
  • List two reasons why machined parts often require a high degree of precision.
    8·1 answer
  • Technician A says that camshaft rotation must be in the same direction as crankshaft rotation. Technician B says that camshaft r
    8·1 answer
  • Tech A says that to reassemble a duo-servo brake, first reassemble the brake shoes on the backing plate, and then attach the par
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!