Automatic traffic signal controller

Automatic  traffic  signal  controller
C I R C U I T I D E A S
NOVEMBER 2002 ELECTRONICS FOR YOU
RUPANJANA
AUTOMATED TRAFFIC SIGNAL
CONTROLLER
This automated traffic signal controller
can be made by suitably programming
a GAL device. (For GAL
programming you may refer to the construction
project published on page 52 in
EFY’s September issue.) Its main features
are:
1. The controller assumes equal traffic
density on all the roads.
2. In most automated traffic signals the
free left-turn condition is provided throughout
the entire signal period, which poses
difficulties to the pedestrians in crossing
the road, especially when the traffic den-
VIKRAM BANERJEE
MRINAL KANTI MANDAL
DR ANIRUDHA GHOSAL
sity is high. This controller allows the pedestrians
to safely cross the road during
certain periods.
3. The controller uses digital logic,
which can be easily implemented by using
logic gates.
4. The controller is a generalised one
and can be used for different roads with
slight modification.
5. The control can also be exercised
manually when desired.
The time period for which green, yellow,
and red traffic signals remain ‘on’
(and then repeat) for the straight moving
traffic is divided into eight units of 8
seconds (or multiples thereof) each. Fig.
1 shows the flow of traffic in all permissible
directions during the eight time units
of 8 seconds each. For the left- and rightturning
traffic and pedestrians crossing
from north to south, south to north, east
to west, and west to east, only green and
red signals are used.
Table I shows the simultaneous states
of the signals for all the traffic. Each row
represents the status of a signal for 8
seconds. As can be observed from the
table, the ratio of green, yellow, and red
signals is 16:8:40 (=2:1:5) for the straight
moving traffic. For the turning traffic the
ratio of green and red signals is 8:56
(=1:7), while for pedestrians crossing the
road the ratio of green and red signals is
16:48 (=2:6).
In Table II (as well as Table I) X, Y,
and Z are used as binary variables to
Fig. 1: Flow of traffic in all possible directions
TABLE I
Simultaneous States of Signals for All the Traffic
X Y Z B-C/B-G B-E D-E/D-A D-G F-G/F-C F-A H-A/H-E HC WALK WALK
Lt/Rt St Lt/Rt St Lt/Rt St Lt/Rt St (N-S)/(S-N) (E-W)/(W-E)
0 0 0 R R R R G G R R R R
0 0 1 R G R R R G R R G R
0 1 0 R G R R R Y R R G R
0 1 1 G Y R R R R R R R R
1 0 0 R R R R R R G G R R
1 0 1 R R R G R R R G R G
1 1 0 R R R G R R R Y R G
1 1 1 R R G Y R R R R R R
C I R C U I T I D E A S
ELECTRONICS FOR YOU NOVEMBER 2002
depict the eight states of 8
seconds each. Letters A
through H indicate the left
and right halves of the roads
in four directions as shown
in Fig. 1. Two letters with a
dash in between indicate the
direction of permissible
movement from a road.
Straight direction is indicated
by St, while left and right
turns are indicated by Lt and
Rt, respectively.
The Boolean functions
for all the signal conditions
are shown in Table II.
The left- and the right-turn
signals for the traffic have
the same state, i.e. both are
red or green for the same
duration, so their Boolean
functions are identical and
they should be
connected to the same con-
Fig. 2: The circuit diagram for traffic light signalling
TABLE II
Boolean Functions for All the Signal Conditions
Signal Reference Boolean functions
Green B-C(Lt)/B-G (Rt) X’YZ
Green B-E (St) XYZ’+X’Y’Z
Red B-E (St) X+Y’Y’Z’
Yellow B-E (St) X’YZ
Green D-E (Lt)/D-A (Rt) XYZ
Green D-G (St) XYZ’+XY’Z
Red D-G (St) X’+XY’Z’
Yellow D-G (St) XYZ
Green F-G(Lt)/F-C (Rt) X’Y’Z’
Green F-A (St) X’Y’
Red F-A (St) X+X’YZ
Yellow F-A (St) X’YZ’
Green H-A (Lt)/H-E (Rt) XY’Z’
Green H-C (St) XY’
Red H-C (St) X’+XYZ
Yellow H-C (St) XYZ’
Green Walk (N-S/S-N) X’YZ’+X’Y’Z
Green Walk (E-W/W-E) XYZ’+XY’Z
Note. X’, Y’, and Z’ denote complements of variables X, Y,
and Z, respectively.
trol output.
The circuit diagram for realising these
Boolean functions is shown in Fig. 2.
Timer 555 (IC1) is wired as an astable
multivibrator to generate clock signal for
the 4-bit counter 74160 (IC2). The time
duration of IC1 can be adjusted by varying
the value of resistor R1, resistor R2,
or capacitor C2 of the clock circuit. The
‘on’ time duration T is given by the following
relationship:
T = 0.695C2(R1+R2)
IC2 is wired as a 3-bit binary counter
by connecting its Q3 output to reset pin 1
via inverter N1. Binary outputs Q2, Q1,
and Q0 form variables X, Y, and Z, respectively.
These outputs, along with their
complimentary outputs X’, Y’, and Z’,
respectively, are used as inputs to the rest
of the logic circuit to realise various outputs
satisfying Table I.
You can simulate various traffic lights
using green, yellow, and red LEDs and
feed the outputs of the circuit to respective
LEDs via
current-limiting
resistors of
470 ohms each
to check the
working of the
circuit. Here,
for turning traffic
and pedestrians
crossing
the road, only
green signal is
made available.
It means
that for the remaining
period
these signals
have to be
treated as ‘red’.
In practice,
the outputs of
Fig. 2 should
be connected
to solidstate relays
to operate
h i g h - p o w e r
bulbs. Further,
if a particular
signal condition
(such as
turning signal)
is not applicable
to a
given road, the
output of that
signal condition
should be
C I R C U I T I D E A S
NOVEMBER 2002 ELECTRONICS FOR YOU
#include<stdio.h>
#include<conio.h>
#define TRUE 1
#define False 0
int not(int x);
int or2(int x,int y);
int or3(int x,int y,int z);
int and2(int x,int y);
int and3(int x,int y,int z);
int main(void)
{
int a,b,c;
int seq,green_bl,green_bs,red_bs,yellow_bs;
int green_dl,green_ds,red_ds,yellow_ds;
int green_fl,green_fs,red_fs,yellow_fs;
int green_hl,green_hs,red_hs,yellow_hs;
int walk_ns,stop_ns;
int walk_ew,stop_ew;
clrscr();
printf(“ SIG-B SIG-D SIF-F SIG-H
WALK(N-S) WALK(E-W)\n”);
printf(“G G R Y G G R Y G G R Y G G R Y
G R G R\n”);
for(seq=0;seq<8;seq++)
{
c=(seq&1);b=(seq&2)>>1;a=(seq&4)>>2;
green_bl=and3(not(a),b,c);
green_bs=or2(and3(not(a),b,not(c)),and3(not(a),not(b),c));
red_bs=or2(a,and3(not(a),not(b),not(c)));
yellow_bs=and3(not(a),b,c);
green_dl=and3(a,b,c);
green_ds=or2(and3(a,b,not(c)),and3(a,not(b),c));
red_ds=or2(not(a),and3(a,not(b),not(c)));
yellow_ds=and3(a,b,c);
green_fl=and3(not(a),not(b),not(c));
green_fs=and2(not(a),not(b));
red_fs=or2(a,and3(not(a),b,c));
yellow_fs=and3(not(a),b,not(c));
green_hl=and3(a,not(b),not(c));
green_hs=and2(a,not(b));
red_hs=or2(not(a),and3(a,b,c));
yellow_hs=and3(a,b,not(c));
walk_ns=green_bs;
stop_ns=or3(and3(not(a),not(b),not(c)),and3(not(a),b,c),a);
walk_ew=green_ds;
stop_ew=or3(not(a),and3(a,b,c),and3(a,not(b),not(c)));
printf(“%d %d %d %d %d %d %d %d
%d %d %d %d %d %d %d %d %d %d
%d %d\n”,
green_bl,green_bs,red_bs,yellow_bs,
green_dl,green_ds,red_ds,yellow_ds,
green_fl,green_fs,red_fs,yellow_fs,
green_hl,green_hs,red_hs,yellow_hs,
walk_ns,stop_ns,
walk_ew,stop_ew);
getch();
}
return;
}
int and2(int x,int y)
{
return(x && y);
}
int and3(int x,int y,int z)
{
return(x && y && z);
}
int or2(int x,int y)
{
return(x || y);
}
int or3(int x,int y,int z)
{
return(x || y || z);
}
int not(int x)
{
return(!x);
}
TRAFFIC.C
Table III
Execution Results of Software Program
SIG-B SIG-D SIF-F SIG-H WALK(N-S) WALK(E-W)
G G R Y G G R Y G G R Y G G R Y G R G R
0 0 1 0 0 1 0 0 1 1 0 0 0 0 1 0 0 1 0 1
0 1 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 0 1
0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 1 0 0 1
1 0 0 1 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 1
0 0 1 0 0 1 0 0 0 0 1 0 1 1 0 0 0 1 0 1
0 0 1 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0
0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0
0 0 1 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 1
Note. The first column under G (green) in each group of four signals indicates the
turn signal, while the next three columns under GRY indicate signal for the straight
traffic.
connected
to green
signal of
the next
state (refer
Table I).
T h e
traffic signals
can
also be
controlled
manually,
if desired.
Any signal
state can be
established
by entering the binary value corresponding
to that particular state into the parallel
input pins of the 3-bit counter. Similarly,
the signal can be reset at any time by
providing logic 0 at the reset pin (pin 1)
of the counter using an external switch.
A software program to verify the
functioning of the circuit using a PC
is given below. (Source code and executable
file will be provided in the next
month’s EFY-CD.) When executing the program,
keep pressing Enter key to get the
next row of results. The test results on
execution of the program is shown in Table
III.

Download Ppt in a Single File

smartdust

smartdust'
The two figures above represent where we are and where we'd like to be.
On the left is where we hope to be in July of '01 - a cubic millimeter device with a sensor, power supply, analog circuitry, bidirectional optical communication, and a programmable microprocessor.  Click on the figure to get more detail.
On the right is where we are now (July '99) - a (currently) non-functional mote with a volume of about 100 cubic millimeters.  There are two silicon chips sitting on a type-5 hearing aid battery.  The right chip is a MEMS corner cube optical transmitter array - it works.  On the right is a CMOS ASIC with an optical receiver, charge pump, and simple digital controller - it doesn't work (we violated some of the design rules in the 0.25 micron process, but the next one should work).


Projects


Accomplishments
  • Using commercial-off-the-shelf (COTS) components, we've built some really wonderful little "macro motes".  Some the features:
    • temperature, humidity, barometric pressure, light intensity, tilt and vibration, and magnetic field sensors all in a cubic inch package, including the bi-directional radio, the microprocessor controller, and the battery!
    • 20 meter communication range
    • one week lifetime in continuous operation, 2 years with 1% duty cycling
  • 21 km laser communication (Coit Tower and Twin Peaks in San Francisco to Cory Hall at UC Berkeley)
    • Using one of the micro-weather stations, we stripped off the radio and wired in a laser pointer.  This went to SF.  In my office at Cal we had a video camera hooked up to a frame grabber in my laptop.  The software looked for (and decoded) flashing lights in the image, and gave us the weather information 21 km away.
  • Large angle MEMS beam-steering
    • The laser motes above need to be aimed.  We've made a sub-millimeter mirror coupled to two motors on the same silicon chip.  The motors can scan a reflected laser beam tens of degrees in either direction.
  • Micro Air Vehicle endurance record
    • Sub-contractor Steve Morris of MLB Co has built an 8" radio controlled plane which flys 60mph for 18 minutes and can carry a color video camera with a live video feed.
  • Silicon maple seeds
    • Using a honeycombed layer of silicon only 0.1 mm thick we have made a 3x10 mm winglet.  With a cubic millimeter of silicon attached, these wings auto-rotate as they fall, just like a maple seed.  The next generation will have solar cells built right in. (ok this generation had the solar cells too, but they didn't work!)


Applications
The science/engineering goal of the Smart Dust project is to demonstrate that a complete sensor/communication system can be integrated into a cubic millimeter package.  This involves both evolutionary and revolutionary advances in miniaturization, integration, and energy management.  We aren't targeting any particular sensor, in fact there is no direct funding for sensor research in the project (but we've got quite a few to choose from based on a decade or two of outstanding MEMS work at Berkeley and elsewhere).
We're funded by DARPA, so we will demonstrate Smart Dust with one or more applications of military relevance.  In addition, we're pursuing several different applications with commercial importance, and we've got a long list of applications to work on if we only had the time.  Here's a sampling of some possible applications, in no particular order:
  • Defense-related sensor networks
    • battlefield surveillance, treaty monitoring, transportation monitoring, scud hunting, ...
  • Virtual keyboard
    • Glue a dust mote on each of your fingernails.  Accelerometers will sense the orientation and motion of each of your fingertips, and talk to the computer in your watch.  QWERTY is the first step to proving the concept, but you can imagine much more useful and creative ways to interface to your computer if it knows where your fingers are: sculpt 3D shapes in virtual clay, play  the piano, gesture in sign language and have to computer translate, ...
    • Combined with a MEMS augmented-reality heads-up display, your entire computer I/O would be invisible to the people around you.  Couple that with wireless access and you need never be bored in a meeting again!  Surf the web while the boss rambles on and on.
  • Inventory Control
    • The carton talks to the box, the box talks to the palette, the palette talks to the truck, and the truck talks to the warehouse, and the truck and the warehouse talk to the internet.  Know where your products are and what shape they're in any time, anywhere.  Sort of like FedEx tracking on steroids for all products in your production stream from raw materials to delivered goods.
  • Product quality monitoring
    • temperature, humidity monitoring of meat, produce, dairy products
      • Mom, don't buy those Frosted Sugar Bombs, they sat in 80% humidity for two days, they won't be crunchy!
    • impact, vibration, temp monitoring of consumer electronics
      • failure analysis and diagnostic information, e.g. monitoring vibration of bearings for frequency signatures indicating imminent failure (back up that hard drive now!)
  • Smart office spaces
    • The Center for the Built Environment has fabulous plans for the office of the future in which environmental conditions are tailored to the desires of every individual.  Maybe soon we'll all be wearing temperature, humidity, and environmental comfort sensors sewn into our clothes, continuously talking to our workspaces which will deliver conditions tailored to our needs.  No more fighting with your office mates over the thermostat.
  • Interfaces for the Disabled (courtesy of Bryndis Tobin)
    • Bryndis sent me email with the following idea: put motes "on a quadriplegic's face, to monitor blinking & facial twitches - and send them as commands to a wheelchair/computer/other device."  This could be generalized to a whole family of interfaces for the disabled.  Thanks Bryndis!
  • The dark side
    • Yes, personal privacy is getting harder and harder to come by.  Yes, you can hype Smart Dust as being great for big brother (thank you, New Scientist). Yawn.  Every technology has a dark side - deal with it. [this was my original comment on "dark side" issues, but it made a lot of people think that we weren't thinking about these issues at all.  Not true.]
    • As an engineer, or a scientist, or a hair stylist, everyone needs to evaluate what they do in terms of its positive and negative effect.  If I thought that the negatives of working on this project were larger than or even comparable to the positives, I wouldn't be working on it.  As it turns out, I think that the potential benefits of this technology far far outweigh the risks to personal privacy.
    • Download Ppt in a Single File

digital signature

digital signature  
 A digital signature is an encoded signage which is used instead of an actual handwritten signature. It provides authenticity and security to a message in an online document. A message can be any kind of data; an electronic mail, a contract, an online form, etc. You can also add a digital signature to messages encoded with protocols that are more complicated. Digital signatures are mainly useful for programs on the Internet which transfers data local machines, requiring to confirm its identity to any third party concerned. 
 Download Ppt in a Single File

ZigBee

This paper presents the feature analysis of zigbee technology based on IEEE 802.15.4 standard. . Due to characteristics such as low data rate, low price, and low power consumption, ZigBee is expected to be used in wireless sensor networks for remote monitoring, home control, and industrial automation.

Introduction to  Zigbee

ZigBee is the most popular industry wireless mesh networking standard for connecting sensors,instrumentation and control systems.ZigBee provides several benefits just because it is an industry standard supported by multiple solution providers.ZigBee solutions are relatively inexpensive because several suppliers have already implemented ZigBee-based integrated circuits and modules in anticipation of high volumes for a standard solution.ZigBee-based solutions also offer users independence from any one supplier because one company’s ZigBee networking solution can be substituted for another’s.ZigBee also offers the potential for interoperability among different suppliers’ products. Finally, in theory, a ZigBee application deployed in a location can use other existing ZigBee nodes in that location to extend its range and improve its communication reliability.ZigBee delivers solid wireless connectivity for sensors and actuators in applications that can need the general benefits of mesh networking (i.e., coverage and reliability) at a reasonable price and tolerate ZigBee’s limitations in mesh size, power consumption, node-to-node range, and master-oriented operation. ZigBee is actually a network layer protocol standard, but it is designed to operate over a radio defined by the IEEE 802.15.4 standard for the physical and data link protocol layers.
ZigBee operates in two main modes: non-beacon mode and beacon mode.  Beacon mode is a fully coordinated mode in that all the device know when to coordinate with one another.  In this mode, the network coordinator will periodically "wake-up" and send out a beacon to the devices within its network.  This beacon subsequently wakes up each device, who must determine if it has any message to receive.  If not, the device returns to sleep, as will the network coordinator, once its job is complete.  Non-beacon mode, on the other hand, is less coordinated, as any device can communicate with the coordinator at will.  However, this operation can cause different devices within the network to interfere with one another, and the coordinator must always be awake to listen for signals, thus requiring more power.  In any case, ZigBee obtains its overall low power consumption because the majority of network devices are able to remain inactive over long periods of time.

How zigbee works?

ZigBee basically uses digital radios to allow devices to communicate with one another.  A typical ZigBee network consists of several types of devices.  A network coordinator is a device that sets up the network, is aware of all the nodes within its network, and manages both the information about each node as well as the information that is being transmitted/received within the network.  Every ZigBee network must contain a network coordinator.  Other Full Function Devices (FFD's) may be found in the network, and these devices support all of the 802.15.4 functions.  They can serve as network coordinators, network routers, or as devices that interact with the physical world.  The final device found in these networks is the Reduced Function Device (RFD), which usually only serve as devices that interact with the physical world.
The figure below introduces the concept of the ZigBee network topology.  Several topologies are supported by ZigBee, including star, mesh, and cluster tree.  Star and mesh networking are both shown in the figure above.  As can be seen, star topology is most useful when several end devices are located close together so that they can communicate with a single router node.  That node can then be a part of a larger mesh network that ultimately communicates with the network coordinator.  Mesh networking allows for redundancy in node links, so that if one node goes down, devices can find an alternative path to communicate with one another. 

A comparison between zigbee and bluetooth

The ZigBee standard can operate in the 2.4GHz band or the 868MHz and 915MHz ISM (industrial, scientific and medical) bands used in Europe and the US respectively It sits below Bluetooth in terms of data rate: 250kbps at 2.4GHz (compared to Bluetooth's 1Mbps) and 20-40kbps in the lower frequency bands.
The operational range is 10-75m, compared to 1Om for Bluetooth (without a power amplifier). One other important difference between ZigBee and Bluetooth is in how their protocols work. ZigBee's uses a basic master-slave configuration suited to static star networks of many infrequently used devices that talk via small data packets. This aspect suits ZigBee to building automation and the control of multiple lights, security sensors and so on. Bluetooth's protocol is more complex because it's geared towards handling voice, images and file transfers in ad hoc networks. Bluetooth devices can work peer-to-peer and support scatternets of multiple smaller non-synchronised networks (piconets). The protocol, however, only allows up to eight slave nodes in a basic master-slave piconet set-up.
ZigBee allows up to 254 nodes. Masters can talk to each other and the number of memory size of the protocol stack that will lower the mice of ZirBee to around $2 ~ per chip; the ZigBee protocol stack will occupy around 30kwords of programme space compared to Bluetooths 25fikwords.

The main features of zigbee are:-

  • Dual PHY (2.4GHz and 868/915 MHz)
  •  Data rates of 250 kbps (@2.4 GHz), 40 kbps (@ 915 MHz), and 20 kbps (@868 MHz)
  •  Optimized for low duty-cycle applications (<0.1%)
  •  CSMA-CA channel access
  • Yields high throughput and low latency for low duty cycle devices like sensors and controls
  •  Low power (battery life multi-month to years)
  •  Multiple topologies:  star, peer-to-peer, mesh
  •  Addressing space of up to:
  • 18,450,000,000,000,000,000 devices (64 bit IEEE address)
  • 65,535 networks
  •  Optional guaranteed time slot for applications requiring low latency
  •  Fully hand-shaked protocol for transfer reliability
  •  Range: 50m typical (5-500m based on environment)

Zigbee has low data rate

The radio channel data rate is a gross indicator of the throughput of the wireless connection, all else being equal. A higher data rate is not always better, depending on the requirements of the application. For a given transmitter power, higher data rate can be achieved by sacrificing range – or range can be increased by using a lower radio channel data rate

Low latency of zigbee

Low latency is another important feature of ZigBee.When a ZigBee device is powered down (all circuitry switched off apart from a clock running at 32kHz), it can wake up and get a packet across a network connection in around 15 milliseconds. A Bluetooth device in a similar state would take around three seconds to wake up and respond. According to CCL home,the latency gives you some power consumption advantages and it‘s important for timing-critical messages. A sensor in an industrial plant needs to get its messages through in milliseconds.

Low power consumption of zigbee

ZigBee’s reliance on a central mains-powered controller minimises the power consumption of the nodes. “They will only need to turn on when they want to transfer data,” explains Horne. “There is a beacon scheme that the master uses to define slots. The nodes can then wake up, listen, synchronise to a slot and send data back. It reduces the time that the outlying nodes need to be on for.”
 Download Ppt in a Single File

WIRELESS POWER TRANSMISSION



A test of a wireless broadcast of solar power has been carried out which was able to transmit energy RF energy over a distance of up to 148 kilometers (about 90 miles) - almost 100-times further than a major 1970s power transmission performed by NASA in the Mojave Desert in California.

While the project was small scale in terms of power transmitted (about 20 watts), and was being designed for space use - it has possible implications for transmitting power to Base Stations in Rural areas. Currently, each rural base station usually requires its own diesel generator, and often security staff to protect the fuel from being stolen. The ability to broadcast the electricity supply wirelessly from a central hub, most likely to be the Base Station Controller which may already have line of sight for a Microwave backhaul could make rural base stations cheaper, and safer to operate.
The demonstration of solar-powered wireless power transmission used a solid-state phased array transmitter located on the U.S. island of Maui and receivers located on the island of Hawai (Mauna Loa).
A number of key technologies were integrated and tested together for the first time in this project, including Solar Power modules, solid-state FET amplifiers, and a novel "retrodirective" phase control system. In addition, the project developed the first ever "field-deployable" system-developing new information regarding the prospective economics of space solar power / wireless power transmission systems.
The project was sponsored by Discovery Communications as part of its Project Earth series, and produced by Impossible Pictures Ltd. of the UK.
"This milestone demonstrates that Space-Based Solar Power deserves further study as one important answer to America's future energy needs," said Mark Hopkins, Senior Vice President of the National Space Society. "This kind of demonstration is critical to the incremental development of breakthrough technologies."
The project's leader was former NASA executive and physicist John C. Mankins (Chief Operating Officer of Managed Energy Technologies LLC, and President of the Space Power Association). Key participants included Professor Nobuyuki Kaya of Kobe University in Japan and Frank Little of Texas A&M University in the U.S. (both world leaders in WPT technology), and Dr. Neville I. Marzwell of the California Institute of Technology. Students at the two universities were largely responsible for fabrication of the hardware for this first-of-a-kind experiment.
 Download Ppt in a Single File

SURFACE CONDUCTION ELECTRON EMISSION DISPLAY(SED)

SURFACE CONDUCTION ELECTRON EMISSION DISPLAY(SED)
A surface-conduction electron-emitter display (SED) is a flat panel color television technology currently being developed by a number of companies. SEDs use nanoscopic-scale electron emitters to energize colored phosphors and produce an image. In a general sense, a SED consists of a matrix of tiny cathode ray tubes, each "tube" forming a single sub-pixel on the screen, grouped in threes to form red-green-blue (RGB) pixels. SEDs combine the advantages of CRTs, namely their high contrast ratios, wide viewing angles and very fast response times, with the packaging advantages of LCD and other flat panel displays. They also use much less power than an LCD television of the same size.

After considerable time and effort in the early and mid-2000s, SED efforts started winding down in 2009 as LCD became the dominant technology. In August 2010, Canon announced they were shutting down their joint effort to develop SEDs commercially, signalling the end of development efforts.[1] SEDs are closely related to another developing display technology, the field emission display, or FED, differing primarily in the details of the electron emitters. Sony, the main backer of FED, has similarly backed off from their development efforts. 
 Download Ppt in a Single File

REDTACTON

REDTACTON

RedTacton Technology

This detailed article on Red Tacton technology is developed by our team for students as a Seminar topic for their academic needs. We have referenced various research papers,reports and other documentations for developing this article.
We have discussed about various infrared and Bluetooth wireless technologies in our recent posts. But the technology has been advanced that these technologies have been overrated. Now, researchers are trying to develop a new path for transmission of signals called Human Area Networking. As the name indicates, such a technology will have the human body surface to transmit and receive signals at very high speeds. Now we are going to discuss such a technology, which is currently under development, called RedTacton Technology.
According o science studies, we know that our body is creating minute electric charges all the time. This electric field thus created is used for RedTacton technology to transmit and receive [duplex communication] the signals. Thus, this method is completely different from other signal transmitting technologies like wireless and infrared. Thus, like LAN and WAN, a new network protocol called HAN [Human Area Network], is being configured.
RedTacton Technology
RedTacton Technology

How RedTacton Works?

  • Similar to any other technology, RedTacton Technology, will also have a transmitter and a receiver.
  • As soon as the human body comes in contact with the RedTacton transceiver, the signals will start to be transmitted. When the contact is taken off, the transmission will also stop.
  • The terminals are either embedded in the devices or are carried by the user itself. According to the natural and physical movements of the user, the communication will happen in various combinations.
  • The communication through the user can occur only through his body surface parts like hands, fingers, arms, feet, face, legs or torso. The technology also works in shoes and other clothing’s as well.
How RedTacton Works
How RedTacton Works

CREDIT FOR IMAGE

  • The transmitter in RedTacton will induce a mild electric field on the human body surface. A transistor or photonic electric field sensor will be setup as the sensor for the electric field on the RedTacton receiver. This sensor detects the electric field and the signal will be processed in the receiver as well.
  • This processed signal thus becomes the data that is to be downloaded.
The basic block diagram of a RedTacton Transceiver is shown below.
RedTacton Transceiver Block Diagram
RedTacton Transceiver Block Diagram

  • Like digital signals, the signals will depend on the fluctuations in the electric field that is induced in the body. As the electric field is mild in nature, highly sensitive sensing technology is used in the receiver part.
RedTacton Working
RedTacton Working
IMAGE FROM

  • Other than the electric field that transmits the data, there will also be very small and unstable electric fields on the surface of the body. This will be natural in nature and will be automatically sent back to earth.

Comparison with other network technologies

Take a look at the figure below. The chart displayed shows the exact position of RedTacton with the other network technologies that are available today.
RedTacton actually is helpful in short distance communication. When compared with a wi-fi communication, this technology seems advantageous. In wi-fi, there is no need of any physical connections. Thus communication is established as soon as the signals arrive. But, when it comes to security reasons, wi-fi is a problem. As the signals can be easily hacked by others, extra security measures have to be included.
Also, when compared with wired transmission, RedTacton is more advantageous. Here physical connection is required at a high rate for data transmission. With more and more users trying to retrieve data from a single source, the physical connections become a problem. But, there will not be many problems with security.
So, we can confirm that RedTacton technology comes right in between wireless and wired connection. It can provide maximum security as well as data transfer without the use of physical connections. The security will be maximum as the data transfers can occur only between two contact points. Take a look at the figure below to know the exact comparison between all the technologies.
RedTacton - Comparison with other network technologies
RedTacton - Comparison with other network technologies
IMAGE TAKEN FROM


RedTacton Features

Here are some of the main features of this technology.
Features of RedTacton
Features of RedTacton
IMAGE SOURCE
  • Touch Feature
In this technology, every mode of communication can be done with a touch. All physical movements like touching, gripping, sitting, walking, stepping and so on are used as triggers for various processes of the equipment. The processes can be the START and STOP of the equipment, data retrieval or even locking and unlocking.
  • Broadband Feature
For broadband communication, the ideal speed with this method is said to be 10 Mbps. This is constant for full duplex communication.
Even if multiple communications is used through this technology, the speed will not be affected as the signal is transmitted through the human body.

Application of RedTacton

If you want to listen to music from your MP3 player, you will have to adjust the headphone to your ears and then switch on the player that is kept in your pocket. But, with this technology, since there are no wires, the digital signals can be passed from your player to the headphone through your body, clothes, and shoes and so on. To play the next song or to adjust the settings you can do it by selecting one of the touching features as explained above.
If you want to send the photos that are stored in your camera to a laptop, all you have to do is make a contact between the laptop and the camera.
Other amazing applications also includes the sending of business cards to each other just by a shake hand, exchange telephone numbers while you are dancing, sending e-mails with a touch and so on.
 Download Ppt in a Single File

TRACKING & POSITIONING OF MOBILES IN TELECOMMUNICATION

TRACKING & POSITIONING OF MOBILES IN TELECOMMUNICATION
  Mobile positioning technology has become an important area of research, for emergency as well as for commercial services. Mobile positioning in cellular networks will provide several services such as, locating stolen mobiles, emergency calls, different billing tariffs depending on where the call is originated, and methods to predict the user movement inside a region. The evolution to location-dependent services and applications in wireless systems continues to require the development of more accurate and reliable mobile positioning technologies. The major challenge to accurate location estimation is in creating techniques that yield acceptable performance when the direct path from the transmitter to the receiver is intermittently blocked. This is the Non-Line-Of-Sight (NLOS) problem, and it is known to be a major source of error since it systematically causes mobile to appear farther away from the base station (BS) than it actually is, thereby increasing the positioning error.
Recent demands from new applications require positioning capabilities of mobile telephones or other devices. The ability to obtain the geo-location of the Mobile Telephone (MT) in the cellular system allows the network operators to facilitate new services to the mobile users. The most immediate motivation for the cellular system to provide MT position is enhanced in accident emergency services. The positioning of the mobile user could provide services like
¢ Emergency service for subscriber safety.
¢ Location sensitive billing.
¢ Cellular Fraud detection.
¢ Intelligent transport system services.
¢ Efficient and effective network performance and management.

Location Tracking Curve Method
The method proposed by us for tracking the location of a mobile telephone using curves connecting the points where circles intersect one another, the circles radii being the distances between BSs and the mobile                                                                     telephone. The steps involved are:
a. Each base station nearer to a mobile telephone receives a predetermined signal from the mobile telephone and calculates the distance between the mobile telephone and the base station and the variances of time arrival of the signal at the base station;
b. A circle is drawn to have a radius being the distance and the coordinates of the base station being the center of the circle;
c. A pair of the first and the second base stations is selected among the base stations. A several location tracking curves connecting two intersection points between the selected circles corresponding to the first and the second base stations are drawn. One of the location tracking curves is selected using the variances of the first and the second base stations;
d. The steps c. and d. are repeated for the other pairs of the base stations;
e. The intersection points are obtained among the location tracking curves selected in step d. and e. and,
f. The location of the mobile telephone is determined using the coordinates of the intersection points obtained in step e.

The several location tracking curves are parts of circles with centers near to the base station with smaller variances between the first and the second base stations. The circles formed by the location tracking curves have the centers on a line connecting the coordinates of the first and the second base stations. The larger variances between the variances of the first and the second base stations are compared to the variances of the several location tracking curves, and one of the location tracking curves is selected according to the comparison result. The location coordinates of 
the mobile telephone are determined by averaging the coordinates of the


 Download Ppt in a Single File

CRUSOE PROCESSOR

CRUSOE PROCESSOR
  On board Transmeta Crusoe TM5800 Processor 800MHz
• Supports up to 512MB of DDR SDRAM via SODIMM Socket
• 10Mbps / 100Mbps Ethernet
• VIA VT82C686B Chipset
• AC ‘97 Audio Controller
• TTL Flat Panel Support
• TV Output NTSC/PAL
• Four USB 1.1 Ports
• Two Serial Ports
 Download Ppt in a Single File

VOICE MORPHING SYSTEM

 voice morphing
 Diamond Edition also presents a faster voice morphing algorithm, pro-looking interface, and numerous nickvoices, effects and packages of parody voices
which help users talk in the voices of many Hollywood stars and famous people.
 Download Ppt in a Single File

Cutting edge at the cell edge

 Cutting edge at the cell edge
 Emerging broadband wireless systems, such as those based on IEEE 802.16 m or 3GPP LTE-A, will re-use spectrum in every sector (1 : 1 reuse) and maximize system spectrum efficiency. In so doing, the spectrum efficiency for cell-edge users is very poor in comparison with the system-wide average, and nomadic users located near the cell edge experience very low throughput. This is an important concern for India, where nomadic users constitute 85% of mobile phone users, urban cells are relatively small, and the fraction of cell-edge users is as high as 40%. The basic approach to improving cell-edge performance is the so-called fractional frequency reuse (FFR), where spectrum reuse is less than 1 : 1 for cell-edge users. However, techniques that mitigate/cancel interference can improve the spectrum efficiency of FFR. This paper reviews an integrated package of three techniques, proposed by CEWiT for inclusion in the international standards, which mitigate the impact of cell-edge co-channel interference in the downlink: two-dimensional phase offset diversity, inter-cell interference cancellation, and conjugate data repetition. The first two techniques employ multiple transmit antennas. The first and third are open-loop techniques, which will work for nomadic as well as high-speed users, while the second is closed-loop and involves base-station co-operation, and is suitable for nomadic users. All three techniques share the important feature that the transmit signal from each base station appears to be emanating from a single transmit antenna, enabling the use of low-complexity multi-antenna interference suppression algorithms at the receiver. The paper will discuss the performance of each technique, and also show that they can be employed together in a complementary manner to improve cell-edge performance.

Download Ppt in a Single File

Orthogonal-Frequency-Division-Multiplexing

 Orthogonal-Frequency-Division-Multiplexing
Orthogonal frequency-division multiplexing (OFDM) is a method of encoding digital data on multiple carrier frequencies. OFDM has developed into a popular scheme for wideband digital communication, whether wireless or over copper wires, used in applications such as digital television and audio broadcasting, DSL broadband internet access, wireless networks, and 4G mobile communications.
OFDM is essentially identical to coded OFDM (COFDM) and discrete multi-tone modulation (DMT), and is a frequency-division multiplexing (FDM) scheme used as a digital multi-carrier modulation method. A large number of closely spaced orthogonal sub-carrier signals are used to carry data. The data is divided into several parallel data streams or channels, one for each sub-carrier. Each sub-carrier is modulated with a conventional modulation scheme (such as quadrature amplitude modulation or phase-shift keying) at a low symbol rate, maintaining total data rates similar to conventional single-carrier modulation schemes in the same bandwidth.
Download Ppt in a Single File

Hide Blog Title & Description From Header On Blogger/Blogspot

Hide Blog Title & Description From Header On Blogger/Blogspot :
If you are on blogger platform and using any blogspot default template, you can notice your blog title and description appearing on the header area. If you are using a long blog title and a little more long blog description, then it will look odd. So, you need to remove those blog name and description info from the header area to make it look attractive. You may also like to exclude title & description and create a custom header for your blogger blogs. But remember that having title and description may boost your blog SEO values.

Remove Title & Description From Blogger Header :
  1. Log into your blogger profile and go to Dashboard.
  2. Navigate to Layout >> Edit HTML.
  3. Search for #Header h1 in your HTML code. If you don’t find this code, you may search for another piece of code #Header .description.
  4. Now insert display:none; at the end of the above code.
  5. Look at the below code to get the idea.
#header .description { /*<-- this is header description css*/
margin:5px 5px 0;
padding:15px 20px .25em;
line-height:1.2em;
display:none; /*<--Insert this line*/ }   
6. Save the template and you are done. 
Now your blog title and description will not show up in your blog’s 
header area. You may use any attractive image in your header and there 
will be no text to ruin the beauty of your blogger or blogspot blog 
header. 

Gps


What is GPS?

satellite 
The Global Positioning System (GPS) is a satellite-based navigation system made up 
of a network of 24 satellites placed into orbit by the U.S.
Department of Defense. GPS was originally intended for military applications, but in the 1980s, th
e government made the system available for civilian use. GPS works in any weather conditions,
anywhere in the world, 24 hours a day. There are no subscription fees or setup charges to use GPS.

How it works

GPS satellites circle the earth twice a day in a very precise orbit
and transmit signal information to earth. GPS receivers take this information and use triangulation
to calculate the user's exact location. Essentially, the GPS receiver compares the time a signal was 
transmitted by a satellite with the time it was received. The time difference tells the GPS receiver
how far away the satellite is. Now, with distance measurements from a few more satellites,
the receiver can determine the user's position and display it on the unit's electronic map.
GPS Screens 
A GPS receiver must be locked on to the signal of at least three
satellites to calculate a 2D position (latitude and longitude) 
and track movement. With four or more satellites in view
, he receiver can determine the user's 3D position (latitude, longitude and altitude).
Once the user's position has been determined, the GPS unit can calculate other information,
such as speed, bearing, track, trip distance, distance to destination, sunrise and sunset time
and more.

How accurate is GPS?

Today's GPS receivers are extremely accurate, thanks to their parallel multi-channel design. 
Garmin's 12 parallel channel receivers are quick to lock onto satellites when first turned on 
and they maintain strong locks, even in dense foliage or urban settings with tall buildings. 
Certain atmospheric factors and other sources of error can affect the accuracy of GPS receivers
. Garmin® GPS receivers are accurate to within 15 meters on average.
GPS Signals 
Newer Garmin GPS receivers with WAAS (Wide Area Augmentation System) capability
can improve accuracy to less than three meters on average.
No additional equipment or fees are required to take advantage of WAAS.
Users can also get better accuracy with Differential GPS (DGPS), which corrects GPS signals
to within 
an average of three to five meters
. The U.S. Coast Guard operates the most common DGPS correction service.
This system consists of a network of towers that receive 
GPS signals and transmit a corrected signal by beacon transmitters. In order to get th
e corrected signal, users must have a differential beacon receiver and beacon antenna in addition
Satellite Diagramto their GPS.

 

 

 

 

 

 

 

The GPS satellite system

The 24 satellites that make up the GPS space segment are orbiting 
the earth about 12,000 miles above us. They are constantly moving, making two complete orbits
in less than 24 hours. These satellites are travelling at speeds of roughly 7,000 miles an hour.
GPS satellites are powered by solar energy. They have backup batteries onboard to keep them
running in 
the event of a solar eclipse, when there's no solar power. Small rocket boosters on each satellite 
keep
them flying in the correct path.
Here are some other interesting facts about the GPS satellites (also called NAVSTAR,
the official U.S. Department of Defense name for GPS):
  • The first GPS satellite was launched in 1978.
  • A full constellation of 24 satellites was achieved in 1994.
  • Each satellite is built to last about 10 years. Replacements are constantly being built
  • and launched into orbit.
  • A GPS satellite weighs approximately 2,000 pounds and is about 17 feet across with the
  • solar panels extended.
  • Transmitter power is only 50 watts or less.

What's the signal?

GPS satellites transmit two low power radio signals, designated L1 and L2.
Civilian GPS uses the L1 frequency of 1575.42 MHz in the UHF band. The
signals travel by line of sight, meaning they will pass through clouds, glass and 
plastic but will not go through most solid objects such as buildings and mountains.
A GPS signal contains three different bits of information - a pseudorandom code
, ephemeris data and almanac data. The pseudorandom code is simply an I.D. 
code that identifies which satellite is transmitting information. You can view this
number on your Garmin GPS unit's satellite page, as it identifies which satellites 
it's receiving.
Ephemeris data, which is constantly transmitted by each satellite, contains
important
information about the status of the satellite (healthy or unhealthy), current
date and time
. This part of the signal is essential for determining a position.
The almanac data tells the GPS receiver where each GPS satellite should
be at any time
throughout the day. Each satellite transmits almanac data showing the
orbital information 
for that satellite and for every other satellite in the system.
Blocked Signal Diagram

Sources of GPS signal errors

Factors that can degrade the GPS signal and thus affect accuracy include the
following:
  • Ionosphere and troposphere delays - The satellite signal slows as 
  • it passes through the atmosphere. The GPS system uses a built-in
  • model that calculates an average amount of delay to partially
  • correct for this type of error.
  • Signal multipath - This occurs when the GPS signal is reflected off 
  • objects such as tall buildings or large rock surfaces before it 
  • reaches the receiver. This increases the travel time of the signal
  • , thereby causing errors.
  • Receiver clock errors - A receiver's built-in clock is not as
  • accurate as the atomic clocks onboard the GPS satellites
  • . Therefore, it may have very slight timing errors.
  • Orbital errors - Also known as ephemeris errors,
  • these are inaccuracies of the satellite's reported location.
  • Number of satellites visible - The more satellites a GPS receiver 
  • can "see," the better the accuracy. Buildings, terrain, electronic
  • interference, or 
  • sometimes even dense foliage can block signal reception, causing 
  • position errors 
  • or possibly no position reading at all. GPS units typically will not
  • work indoors, underwater or underground.
  • Satellite geometry/shading - This refers to the relative position 
  • of the satellites at any 
  • given time. Ideal satellite geometry exists when the satellites are
  • located at wide angles 
  • relative to each other. Poor geometry results when the satellites 
  • are located in a line
  • or in a tight grouping.
  • Intentional degradation of the satellite signal - Selective Availability (SA) 
  • is an intentional 
  • degradation of the signal once imposed by the U.S
  • . Department 
  • of Defense. SA was intended to prevent military adversaries 
  • from using 
  • the highly accurate GPS signals. The government turned off SA
  • in May 2000,
  • which significantly improved the accuracy of civilian GPS receivers.
 Download Ppt in a Single File 
Click Here To Download

Copyright © 2012 Student guide.