answersLogoWhite

0


Best Answer

The Accumulators are used with the Hydraulic Oil Skid Units for Expansion Turbines running at Speed of 30,000RPM in Cryogenic Air Separation Plants. The cylindrical unit has a rubber bladder which is having 2 ~3 Bar N2 pressure and oil in surrounding area. During the power tripping when the oil pump trips, accumulator supplies the oil to the bearings till the turbine RPM comes to rest and the bearings are saved.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the function of an oil accumulator?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is accumulator function in c language?

Normally the return value from the function is through the information from the accumulator.


What is theFunction of accumulator in hydraulics system?

The function of accumulator in hydraulic system is to receive and store excess oil pumped through the system, which is used to compensate sudden increase in loads.


Why turbine hunting?

check the oil accumulator


What is the function of a accumulator?

A hydraulic accumulator is a device wherein its main function is to store energy in an efficient way. It does this by temporarily removing the stresses and pressures of external sources such as gasses. There are other types of accumulators as well.


What is the function of a hydraulic accumulator?

A hydraulic accumulator is a device wherein its main function is to store energy in an efficient way. It does this by temporarily removing the stresses and pressures of external sources such as gasses. There are other types of accumulators as well.


What does a hydraulic accumulator do with energy?

A hydraulic accumulator contains a bladder filled with a compressible gas, usually nitrogen. The pressure of the gas in the bladder is known as the pre-charge, and will vary based on the ambient temperature. Hydraulic oil is pumped into the accumulator but outside of the bladder. As the oil is pumped in, the bladder compresses, which exerts a force on the oil. There is usually an pressure transducer in the system which will signal the hydraulic pump to turn off when a certain oil pressure is reached in the accumulator. A hydraulic accumulator can have several uses. It can be used to store hydraulic pressure for later use. It can be also used as a type of "shock absorber" for hydraulic systems.


What is the function of accumulator 8085?

It is an 8 bit register which is accessable to programmer and is main fuction is to perfom all arithmetic and logical function.


What is the function of the accumulator?

An accumulator is a register that is a part of a processor. It has more/faster instructions than other registers. Examples:/360: no accumulator8080: A6800: A and B8086: AX80386: EAXx86-64: RAXThe accumulator in an automatic transmission softens the shift between gears.


What is the function of an accumulator?

An accumulator is a register that is a part of a processor. It has more/faster instructions than other registers. Examples:/360: no accumulator8080: A6800: A and B8086: AX80386: EAXx86-64: RAXThe accumulator in an automatic transmission softens the shift between gears.


Function of flag register?

The main function of flag register is show the status of result stored in accumulator after execution of an instruction. Amar oli Dang,Nepal


To draw diagram of accumulator?

A mechanical, or electrical accumulator???


Can you write a C program to find the sum of a given column in a 2D array?

Use the following function to find the sum of a given column in an array of integers: int sum_column (int** array, unsigned int rows, unsigned int columns, unsigned int column) { assert (column<columns); int accumulator int row; accumulator = 0; for (row=0; row<rows; ++row) { accumulator += array[row][column]; } return accumulator; }