- Radial - clearance at the tips of the rotor and casing.
- Axial - the fore-and-aft clearance, at the sides of the rotor and the casing.
Tuesday, December 31, 2019
What Are Two Types Of Clearance In A Turbine?
What Is A Balance Piston?
Thursday, December 5, 2019
What is Li-Po batteries?
Li-Po batteries:
These are also called as Lithium Ion polymer rechargeable batteries because it uses high conductivity polymer gel/polymers electrolyte instead of liquid electrolyte. These come under the Li-ion technology. These are a bit costly. But the battery is very highly protected when compared to the Li-ion batteries. It has Power density of 185 Wh/Kg.
Advantages:
- These are highly protective compared to Li-ion batteries.
- Very light in weight
- Thin in structure when compared to Li-ion batteries.
- Power density, nominal voltages are comparatively very high compared to Ni-Cad and Ni-MH batteries.
Disadvantages:
- Expensive.
- Might explode if wrongly connected.
- Should not be bent or exposed to high temperature which may cause to explosion.
Applications: Can be used in all the portable devices which need rechargeable advantage like drones, robotics, RC toys etc.
What is Li-ion batteries?
Li-ion batteries: These are made up of Lithium metal and are latest in rechargeable technology. As these are compact in size they can be used in most of the portable applications which need high power specifications. These are the best rechargeable batteries available. These have a nominal voltage of 3.7V (most commonly we have 3.6V and 7.2V) and have various ranges of power capacity (starting from 100s of mAh to 1000s of mAh). Even the C-rating ranges from 1C to 10C and Power density of Li-ion batteries is 126 Wh/Kg.
Advantages:
- Very light in weight.
- High C-rating.
- Power density is very high.
- Cell voltage is high.
Disadvantages:
- These are a bit expensive.
- If the terminals are short circuited the battery might explode.
- Battery protection circuit is needed.
What is Ni- MH batteries?
Ni- MH batteries:
The Nickel – Metal Hydride batteries are much preferable than Ni-Cad batteries because of their lower environmental impact. Its nominal voltage is 1.25 V which is greater than Ni-Cad batteries. It has less nominal voltage than alkaline batteries and they are good replacement due to its availability and less environmental impact. The power density of Ni-MH batteries is 100 Wh/Kg.
Advantages:
- Available in all standard sizes.
- High power density.
- Easy to recharge.
- A good alternative to alkaline which has almost all similarities and also it is rechargeable.
Disadvantages:
- Self-discharge is very high.
- Expensive than Ni-Cad batteries.
Applications:
Used in all applications similar to the alkaline and Ni-Cad batteries.
What is Nickel Cadmium Batteries?
Advantages:
- Cheap in cost
- Easy to recharge
- Can be used in all environments
- Comes in all standard sizes
Disadvantages:
- Lower power density
- Contains toxic metal
- Needs to be charged very frequently in order to avoid growth of crystals on the battery plate.
Applications:
Used in RC toys, cordless phones, solar lights and mostly in the applications where price is important.
What is Lead-acid batteries?
Advantages:
- Cheap in cost
- Easily rechargeable
- High power output capability
Disadvantages:
- Very heavy
- Occupies much space
- Power density is very low
Applications:
Used in cars, UPS (uninterrupted Power Supply), robotics, heavy machinery etc..
What is Alkaline battery?
- Alkaline batteries: It is basically constructed with the chemical composition of Zinc (Zn) and Manganese dioxide (MnO2), as the electrolyte used in it is potassium hydroxide which is purely an alkaline substance the battery is named as alkaline battery having the power density of 100 Wh/Kg.
- Cycle life is more
- More compatible and efficient for powering up portable devices.
- Shelf life is more.
- Small in size.
- Highly efficient.
- Low internal resistance so that discharge state in idle state is less.
- Leakage is low.
Cost is a bit high. Except it everything is an advantage.
It can used in torches, remotes, wall clocks, small portable gadgets etc.
Monday, December 2, 2019
What is Coin Cell battery:
- Light in weight
- Small in size
- High density
- Low cost
- High nominal voltage (up to 3V)
- Easy to get high voltages by arranging serially
- Long shelf life
- Needs a holder
- Low current draw capability
Saturday, November 30, 2019
Function: strcmp()
C/C++ Programing:
strcmp( leftString[], rightString[] )
This function can return three different integer values based on the comparison:
1. Zero
2. An integer greater than zero
3. An integer less than zero.
......................................................................
Code:
int
main()
{
char
leftStr[] =
"g f g"
;
char
rightStr[] =
"g f g"
;
// Using strcmp()
int
res =
strcmp
(leftStr, rightStr);
if
(res==0)
printf
(
"Strings are equal"
);
else
printf
(
"Strings are unequal"
);
printf
(
"\nValue returned by strcmp() is: %d"
, res);
return
0;
}
.........................................................................
Output: when both string are same it will return zero.
Strings are equal
Value returned by strcmp() is: 0
Wednesday, November 13, 2019
What is control valve?
- A valve with a pneumatic, hydraulic, electric or other externally powered actuator that automatically opens or closes the valve fully or partially by the signals received from controlling instruments is called control valve.
- Bellows
- Positioner
- Stem
How to check a capacitor?
- At first a good capacitor shows "dead short" any two terminals then the resistance reading gradually starts build up as the capacitor begins to charge up to the battery voltage.
- A good capacitor shows almost an infinite resistance between the terminals and the earthing points from the very beginning.
Friday, November 1, 2019
What is battery power density?
Power density:
It defines power capacity of a battery for a given mass of volume.
For example 100 Wh/Kg (Alkaline battery standard power density) implies that for 1 Kg of chemical composition it provides 100 Wh of power capacity.
Now, volume of a AAA alkaline battery is 11.5 grams. So if 1Kg can
give 100 Wh capacity, then how much a 11.5 gram AAA battery can
give??
Let’s calculate.
Wh (for 11.5 gm) = 100*11.5/1000 = 1.15 Wh
So, we know the nominal voltage of alkaline battery is 1.5V. So it provides 1.5V * (1.15/1.5)A * 1 hour gives 0.76 Ah = 760 mAh of power capacity which is almost equal to the power capacity of a standard AAA alkaline battery.