answersLogoWhite

0

What is the function of a diff unit?

User Avatar

Anonymous

14y ago
Updated: 8/18/2019

A differential (gear box) as fitted to automobiles:

This is fitted to allow the two wheels on an axle to turn at different speeds and travel different distance's in a corner.

Less common is the centre differential in a four wheel drive application that can allow the front and rear axles turn at different speeds for the same reason.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Why is the differentil on your MF20 tractor not slipping in turns?

the linkage to the diff lock pedal could be siezed/stiff that's if it even has a diff lock also the spider gears in the diff unit could be damaged causing the diff to lock up


What is unit impulse function?

the unit impulse function g(t)


What is meant by the phrase the cell is the function unit of life?

nonsence duffer is the function unit of life


What are the Laplace transform of unit doublet function?

The Laplace transform of the unit doublet function is 1.


Which grouping consists of connecting of connecting fibers that enable the cell to function as a unit?

Cytoskeleton consists of connecting fibers that enable the cell to function as a unit.


What is impulse function?

the unit impulse function g(t)


What are the Diff songs in diff region?

It means Different songs in different regions . In diff places have diff folks .


What is the function of Algorithm Logic unit?

alu alogrithm logic unit


What is the basic unit of function?

anicus


What is the function of attenuator unit?

Nothing


What is the function unit of a muscle?

Sarcomere


How do you solve differential equation by MATLAB?

At first, you have used a command for variable a function. Example as.... f(x)=x^4+5*x-7 (i) To differentiate the equation (ii) n derivative of the equation SOLUTION: (i) MATLAB CODE: syms x f=inline('x^4+5*x-7','x')%f=inline('function','variable') diff(f(x)) the above code will write in M-file and run, then you will get Answer. OR BY USING COMMAND WINDOW: >> syms x >> f=inline('x^4+5*x-7','x') f = Inline function: f(x) = x^4+5*x-7 >> diff(f(x)) ans = 4*x^3 + 5 (ii) solution diff(function,n)% here diff is command >> syms x >> diff(x^4+5*x-7,3) ans = 24*x