Thursday 14 May 2015

DC MOTORS

INTRODUCTION:

The basic principles of electromagnetic induction were discovered in the early 1800's by Oersted Gauss, and Faraday. By 1820, Hans Christian Oersted and Andre Marie Ampere had discovered that an electric current produces a magnetic field. The next 15 years saw a flurry of cross-Atlantic experimentation and innovation, leading finally to a simple DC rotary motor. A number of men were involved in the work, so proper credit for the first DC motor is really a function of just how broadly you choose to define the word "motor."

Construction:

DC motors consist of one set of coils, called armature winding, inside another set of coils or a set of permanent magnets, called the stator. Applying a voltage to the coils produces a torque in the armature, resulting in motion.

Stator

  • The stator is the stationary outside part of a motor.
  • The stator of a permanent magnet dc motor is composed of two or more permanent magnet pole pieces.
  • The magnetic field can alternatively be created by an electromagnet. In this case, a DC coil (field winding) is wound around a magnetic material that forms part of the stator.

Rotor

  • The rotor is the inner part which rotates.
  • The rotor is composed of windings (called armature windings) which are connected to the external circuit through a mechanical commutator.
  • Both stator and rotor are made of ferromagnetic materials. The two are separated by air-gap.

Winding

A winding is made up of series or parallel connection of coils.
  • Armature winding - The winding through which the voltage is applied or induced.
  • Field winding - The winding through which a current is passed to produce flux (for the electromagnet)
  • Windings are usually made of copper.

DC Motor Basic Principles

Energy Conversion

If electrical energy is supplied to a conductor lying perpendicular to a magnetic field, the interaction of current flowing in the conductor and the magnetic field will produce mechanical force (and therefore,mechanical energy).

Value of Mechanical Force

There are two conditions which are necessary to produce a force on the conductor. The conductor must be carrying current, and must be within a magnetic field. When these two conditions exist, a force will be applied to the conductor, which will attempt to move the conductor in a direction perpendicular to the magnetic field. This is the basic theory by which all DC motors operate.The force exerted upon the conductor can be expressed as follows.
F = B i l Newton
Where B is the density of the magnetic field, l is the length of conductor, and i the value of current flowing in the conductor. The direction of motion can be found using Fleming’s Left Hand Rule.



Figure 1: Fleming’s Left Hand Rule
The first finger points in the direction of the magnetic field (first - field), which goes from the North Pole to the South Pole. The second finger points in the direction of the current in the wire (second - current). The thumb then points in the direction the wire is thrust or pushed while in the magnetic field (thumb - torque or thrust).

WORKING PRINCIPLE:

Consider a coil in a magnetic field of flux density B (figure 2). When the two ends of the coil are connected across a DC voltage source, current I flows through it. A force is exerted on the coil as a result of the interaction of magnetic field and electric current. The force on the two sides of the coil is such that the coil starts to move in the direction of force.

Figure 2: Torque production in a DC motor
In an actual DC motor, several such coils are wound on the rotor, all of which experience force,resulting in rotation. The greater the current in the wire, or the greater the magnetic field, the faster the wire moves because of the greater force created.
At the same time this torque is being produced, the conductors are moving in a magnetic field. At different positions, the flux linked with it changes, which causes an emf to be induced
(e = d/dt) as shown in figure 3. This voltage is in opposition to the voltage that causes current flow through the conductor and is referred to as a counter-voltage or back emf.


Figure 3: Induced voltage in the armature winding of DC motor
The value of current flowing through the armature is dependent upon the difference between the applied voltage and this counter-voltage. The current due to this counter-voltage tends to oppose the very cause for its production according to Lenz’s law. It results in the rotor slowing down. Eventually, the rotor slows just enough so that the force created by the magnetic field (F = Bil) equals the load force applied on the shaft. Then the system moves at constant velocity.

Monday 30 March 2015

Introduction to solid mechanics lab and to study the layout of the lab.



Title:
Introduction to solid mechanics lab and to study the layout of the lab.

Objectives:
1.To familiarize one with the basic apparatus and devices present in the solid mechanics lab.
2.To learn how the apparatus is used to perform the experiments.

Brief Apparatus Description:
The apparatus present in the solid mechanics lab is:
1. Strain Gauge
2. Torsion of bars apparatus
3. Extension spring apparatus
4. Compression spring apparatus
5. Rubber in shear apparatus
6. Universal Testing Machine

Theory Background:
1. Strain Gauge
This apparatus is used to measure the amount of strain produced and its distribution when force is applied on the specimen. It has a significant importance in the stress strain analysis.
The experiments related to tensile stress, torsion and bending are performed on this apparatus.

2. Torsion of bars apparatus
This apparatus is used for measuring the strength of bars, and distortion in bars which is resulted due to a twist.

3. Extension spring apparatus
This apparatus is used to measure the actual stiffness of a spring

4. Compression spring apparatus
This apparatus is used to measure the actual stiffness of a spring

5. Rubber in shear apparatus
This apparatus is used for determining the shear stress, shear strain and modulus of rigidity of rubber

6. Universal Testing Machine:
This apparatus is used to measure the yield strength, tensile stress and bending e.t.c in materials, when they are subjected to loads and stresses.


SQUARE OF STARS CODE IN C++ LANGUAGE



#include<iostream.h>#include<conio.h>void main(){char n;for(n=1;n<=10;n++)endl;for (n=1;n<=6;n++)cout<<"**********"<<endl;
getch();}

How to find out table of any number in C++


To Find Table Of Any Number:

#include<iostream.h>#include<conio.h>void main(){int num,n;cout<<"enter number to find its multiplication table ";cin>>num;
for(n=1;n<=10;n++){cout<<num<<"*"<<n<<"="<<num*n<<endl;}getch();

how to find of the factorial of any number in C++

TO Find The Factorial Of Any Number;


#include<iostream.h>#include<conio.h>void main(){int n,num,factorial=1;cout<<"enter number to find its factorial";cin>>num;for(n=1;n<=num;n++){factorial=factorial*n;}cout<<”factorial of given number” “="<<factorial<<endl;getch();}







C++ code for Finding out The Greatest Number


To Find The Greatest Number:

#include<iostream.h>
#include<conio.h>
void main()
{
int num1,num2,num3,num4,num5;
cout<<" Enter value for first number";
cin>>num1;
cout<<" Enter value for second number";
cin>>num2;
cout<<" Enter value for third number";
cin>>num3;
cout<<" Enter value for fourth number";
cin>>num4;
cout<<" Enter value for fifth number";
cin>>num5;
if(num1>num2&&num1>num3&&num1>num4&&num1>num5)
{
cout<<" First number is greatest"<<endl<<"which is= "<<num1;
}
if (num1<num2&&num1<num3&&num1<num4&&num1<num5)
{
cout<<" First number is smallest"<<endl<<"which is= "<<num1;
}
else if(num2>num1&&num2>num3&&num2>num4&&num2>num5)
{
cout<<" Second number is greatest"<<endl<<"which is= "<<num2;
}
if(num2<num1&&num2<num3&&num2<num4&&num2<num5)
{
cout<<" Second number is smallest"<<endl<<"which is= "<<num2;
}
else if (num3>num1&&num3>num2&&num3>num4&&num3>num5)
{
cout<<" Third number is greatest"<<endl<<"which is= "<<num3;
}
if (num3<num1&&num3<num2&&num3<num4&&num3<num5)
{
cout<<" Third number is smallest"<<endl<<"which is= "<<num3;
}
else if (num4>num1&&num4>num2&&num4>num3&&num4>num5)
{
cout<<" Fourth number is greatest"<<endl<<"which is= "<<num4;
}
if (num4<num1&&num4<num2&&num4<num3&&num4<num5)
{
cout<<" Fourth number is smallest"<<endl<<"which is= "<<num4;
}
else if (num5>num1&&num5>num2&&num5>num3&&num5>num4)
{
cout<<" Fifth number is grestest"<<endl<<"which is= "<<num5;
}
else if (num5<num1&&num5<num2&&num5<num3&&num5<num4)
{
cout<<" Fifth number is smallest"<<endl<<"which is= "<<num5;
}

getch();
}






Sunday 29 March 2015

Calculating factorial of any number in C++

Calculating factorial of any number
#include <iostream>
#include <conio.h>
using namespace std;
int main ()
{
int num;
int factorial=1;
cout<<"enter num";
cin>>num;
for
(int a=1;a<=num;a++)
{
factorial=factorial*a;
}
cout<<"factorial="<<factorial;
getch();
return 0;}
output
enter integer 4
factorial=24