Saturday, 9 December 2017

TINY TABLE FAN - How to make it

In this video I have explained how to make a small table fan with toy motor, 9 volt battery..Very useful for school students project.. make use of it

REQUIRED MATERIALS:
  1) mini plastic fan
  2) Toy motor
  3) 9 volt battery
  4) Snapper
  5) on/off switch

Connect the equipments as described in a video ..If any doubts please post in a comment for further clarification
.
 Check out this video for detailed setup:

Friday, 8 December 2017

USB Sound Card ENTER - How it works

USB sound card which has two sockets
  1) input socket - For Mike
  2) Output socket- For Headphone Output

Used In any device like hometheatres, amplifiers, etc..,,where aux out is not there

Available in amazon :


https://www.amazon.in/Quantum-QHM623-USB-Sound-Card/dp/B007Z9K45U?tag=googinhydr18418-21&tag=googinkenshoo-21&ascsubtag=9fc918a1-c8e9-47b9-96fb-499e565df134

REMOVE THE DUST IN THE AC FILTER WITHOUT A MECHANIC

 This video explains the quick and simple way to clean up the dust in the filter without a mechanic..

Here is the steps to clean it in a proper way

Step 1:  Open the air conditioner's both side gently upward

Step 2 : Dust filter is found inside in blue color. Remove it carefully by moving upward

Step3 : Brush up the dust in the filter on both side or you can also clean up with wet cloth and drain                it later

Step 4: Dust is removed and now place the filter carefully making sure it locked perfectly

Step 5 : Lock the ac cabinet perfectly and Remove the dust every month regularly

       

Sunday, 27 December 2015

Power Electronics By P s BHIMBRA

This Book is very usefull for all electrical engineering students who are persuing power electronics ...So pls make use of it..friends....!!!
 

Download Link::  https://drive.google.com/open?id=0B-Zn76buNhNtNE55bl9sSkRDMFk

Leave us a comment....Have a HAppY ReaDiNg...!!!!

Thursday, 6 November 2014

BASIC APPLICATIONS OF NANOTECHNOLOGY


Electronics

      Nanotechnology holds some answers for how we might increase the capabilities of electronics devices while we reduce their weight and power consumption.

Food

      Nanotechnology is having an impact on several aspects of food science, from how food is grown to how it is packaged. Companies are developing nanomaterials that will make a difference not only in the taste of food, but also in food safety, and the health benefits that food delivers. 

Fuel Cells

       Nanotechnology is being used to reduce the cost of catalysts used in fuel cells to produce hydrogen ions from fuel such as methanol and to improve the efficiency of membranes used in fuel cells to separate hydrogen ions from other gases such as oxygen. 

Space

        Nanotechnology may hold the key to making space-flight more practical. Advancements in nanomaterials make lightweight spacecraft and a cable for the space elevator possible. By significantly reducing the amount of rocket fuel required, these advances could lower the cost of reaching orbit and travelling in space

Fuels

     Nanotechnology can address the shortage of fossil fuels such as diesel and gasoline by making the production of fuels from low grade raw materials economical, increasing the mileage of engines, and making the production of fuels from normal raw materials more efficient. 

       Nanotechnology can improve the performance of catalysts used to transform vapors escaping from cars or industrial plants into harmless gasses. That's because catalysts made from nanoparticles have a greater surface area to interact with the reacting chemicals than catalysts made from larger particles. The larger surface area allows more chemicals to interact with the catalyst simultaneously, which makes the catalyst more effective. 

Cleaner Water

Nanotechnology is being used to develop solutions to three very different problems in water quality. One challenge is the removal of industrial wastes, such as a cleaning solvent called TCE, from groundwater. Nanoparticles can be used to convert the contaminating chemical through a chemical reaction to make it harmless. Studies have shown that this method can be used successfully to reach contaminates dispersed in underground ponds and at much lower cost than methods which require pumping the water out of the ground for treatment. 

Chemical Sensors

        Nanotechnology can enable sensors to detect very small amounts of chemical vapors. Various types of detecting elements, such as carbon nanotubes, zinc oxide nanowires or palladium nanoparticles can be used in nanotechnology-based sensors. Because of the small size of nanotubes, nanowires, or nanoparticles, a few gas molecules are sufficient to change the electrical properties of the sensing elements. This allows the detection of a very low concentration of chemical vapors. 

Sporting Goods

If you're a tennis or golf fan, you'll be glad to hear that even sporting goods has wandered into the nano realm. Current nanotechnology applications in the sports arena include increasing the strength of tennis racquets, filling any imperfections in club shaft materials and reducing the rate at which air leaks from tennis balls.

      Making composite fabric with nano-sized particles or fibers allows improvement of fabric properties without a significant increase in weight, thickness, or stiffness as might have been the case with previously-used  techniques. 

MEASURING THE DISTANCE USING ULTRASOUND


This Project uses Ultrasound to measure distance. Measured distance is displayed on LCD. You can use this digital output data in making many interesting projects such as accident proof vehicle or Robots, object identifier,  Sonar (detection of objects under water) etc.
Sound is a mechanical vibration transmitted by an elastic medium. Ultrasound are of frequencies greater than 20,000 Hz. Human can only hear approximately between 20 Hz and 20,000 Hz.
The speed of sound travels depends on the medium which it passes through. In the air speed is approximately 345 m/s, in water 1500 m/s and in a bar of steel 5000 m/s. So we can use ultrasound and by calculating Time we can find distance. This type of range finding is also called Sonar. Sonar works similarly to Radar. To measure the distance of a sound ravelled, it needs to be reflected.distance = time  X  velocity.
     In this project you will need Transducer and Sensors for Ultrasound Transmission and Detection. One such Transceivers is HC-SR04 Module. These devices typically transmit a short burst of ultrasonic sound toward a target and detect sound back to the sensor. Beside this you will need Arduino Board and 16×2 LCD Display.
If you are new to Arduino, Please read our post on Microprocessor Project.
         
       Parts used:
a) Arduino Controller Board
b) Ultrasound Module HC-SR04
c) 16X2 LCD
C PROGRAM TO BE UPLOADED IN ARDUINO 
     //programme by circuiteasy.com
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

const int trigPin = 8;
const int echoPin = 13;
 
void setup() 

  {
    lcd.begin(16, 2);
  }
 
void loop()
{
  
  long int duration, inches, meter;
 
  
  pinMode(trigPin, OUTPUT);
  digitalWrite(trigPin, LOW);
  delayMicroseconds(2);
  digitalWrite(trigPin, HIGH);
  delayMicroseconds(10);
  digitalWrite(trigPin, LOW);
 
 
  pinMode(echoPin, INPUT);
  duration = pulseIn(echoPin, HIGH);
 
  inches = microsecondsToInches(duration);
  meter = microsecondsToMeters(duration);
  
  
  lcd.clear();
  lcd.setCursor(0,0);
  lcd.print(inches);
  lcd.setCursor(5,0);
  lcd.print("Inches");
  lcd.setCursor(0,1);
  lcd.print(meter);
  lcd.setCursor(5,1);
  lcd.print("Meter");
  delay(1000);
}
 
long int microsecondsToInches(long microseconds)
       {
       return microseconds / 74 / 2;
       }


long int microsecondsToMeters(long microseconds)
       {
       return microseconds / 2900 / 2;
       }

Thursday, 30 October 2014

BEST BASIC ELECTRONICS BOOKS EVER

#1  Getting Started in Electronics by Forrest.M.Mims

                                  buy getting started in electronics

Make Electronics – Learning by Discovery by Charles Platt

                           buy make electronics by charles platt


All New Electronics – Self Teaching Guide by Harry Kybett & Earl Boysen

                    buy basic electronics books


 Practical Electronics for Inventors by Paul Scherz