electronics projects pune


Electronics Project based on security

Laptops are vulnerable to theft and loss due to their small size and the characteristics of their common usage environment. Since they allow users to work while away from their desk, they are most useful in public locations and while traveling. Unfortunately, this is also where they are most at risk. Existing schemes for securing data either do not protect the device after it is stolen or require bothersome re-authentication. 

So how does a machine know who is using it? Current systems authenticate their users infrequently, and assume the user’s identity does not change. Such persistent authentication is inappropriate for mobile and ubiquitous systems, where associations between people and devices are fluid and unpredictable. We solve this problem with Transient Authentication, in which a small hardware token (Mobile Phone) continuously authenticates the user’s presence over a short-range, wireless link. When the user departs, the token and device lose contact and the device secures itself. We show how to leverage this authentication framework to secure folders on laptop into which secrets may creep. In our model of authentication, a user uses his Bluetooth-enabled mobile phone, which works as an authentication token that provides the authentication for laptop over a short-range wireless link. The user authenticate to the mobile phone infrequently. In turn, the mobile phone continuously authenticates to the laptop by means of the short-range, wireless link. 

INTRODUCTION 

Powerful and affordable laptops have brought users an unprecedented level of convenience and flexibility. Laptops let users work anywhere, anytime. Unfortunately, physical security is a major problem for these devices. To be portable, they must be lightweight and small-sized. Since they are designed for mobile use, they are often exposed in public places such as airports, coffee houses, and taxis, where they are vulnerable to theft or loss. Along with the value of lost hardware, users must worry about the exposure of sensitive information. People store vast amounts of personal data on their laptops and the loss of a device may lead to the exposure of credit card numbers, passwords, client data, and military secrets. 

Laptops sensitive data can also be protected by using encryption, but the challenge in device security is not encrypting data but authenticating the current user. A device must obtain proof of the user’s identity and authority before granting access to data. This proof could take the form of a password, a smart card inserted into a reader, or bio-metric data from a fingerprint or iris scanner. Unfortunately, these forms of authentication are infrequent and persistent. Should a device subsequently fall into the wrong hands, an attacker could act as the real user, subverting encryption for the duration that this authentication holds. But, how often must a user authenticate her? One might require users to re authentication each time the device performed any operation on sensitive data. This would quickly render the system unusable and many users would disable the authentication system out of annoyance. Another mechanism would require the user to “unlock” the device once at boot. This would enhance the user experience but leave data vulnerable if the device were lost or stolen. These two models highlight an inherent tension between security and usability. While data should only be accessible when its authorized user is present, it is obtrusive to continually ask for proof. 

Our new model, Transient Authentication, resolves this tension. Users can have a small token (e.g., Mobile Phone) and modest computational resources. It constantly authenticates to devices on behalf of the user. The limited radio range (several meters) serves as a proximity cue, letting a device take steps to protect its data when the user leaves the physical area. Since users have the token which is been frequently used by the user, it is far less likely to be misplaced or stolen than is a laptop. 

Armed with this authentication data from the mobile phone, laptop protects data when the user departs by encrypting, overwriting, and/or flushing it. Cryptographic file systems secure data in persistent storage, but the unique characteristics of laptops make protecting data in other memory locations critical as well. Batteries and wireless network links allow devices to continue running while traveling and in public places. This is precisely where they are most vulnerable to loss or theft. Some processes can safely continue while the user is absent, either because they do not handle sensitive data or because they secure their secrets themselves. Such applications use application-aware protection API to access authentication data and token services.

TRANSIENT AUTHENTICATION :

Transient Authentication is founded on the following four design principles:

Tie Capabilities to Users.                                                               

The laptops should only perform sensitive operations when the user is present. Thus, all encryption keys must reside solely on the user’s mobile phone, which is in her possession at all times and is therefore far less likely to be stolen or misplaced. For performance, credentials may be temporarily cached at the laptops, but must be discarded whenever the mobile phone is not present. 

Do No Harm. 

Users quickly disable inconvenient security mechanisms. But, anecdotal evidence shows that users are willing to infrequently reenter passwords. Transient Authentication requires user participation that is no more burdensome. Users will also quickly disable our system if they notice poor performance. To ensure adoption, the additional overhead of key authentication, communication, and data encryption must not be excessive. 

Secure and Restore on People Time. 

When the user departs, the device must secure itself before an attacker would have the chance to physically extract any information. This time window is on the order of seconds, not milli or microseconds. Conversely, when a user walks back to use the device, the token will regain wireless contact while she is still meters away. This gives the system several seconds to restore the device’s state.

Ensure Explicit Consent. 

The device must not take any sensitive action without the user’s consent.

Transient Authentication must ensure that both

1) The user’s laptop is indeed talking to her mobile phone and

2) Her mobile phone is not communicating with any other devices without her knowledge.

    To do so, users explicitly bind tokens to devices through an exchange of public keys that establishes a pair wise trust relationship. To limit the consequences of mobile phone loss, users authenticate themselves to their mobile phone daily.

 

  1. AUTHENTICATION SYSTEM DESIGN

Mutual authentication:

The mutual authentication is the first step in the authentication system. In this step the system perform a challenge-response function between the laptop and mobile phone in order to authenticate each other based on public key system. The mobile phone and has predefined key pair.

 User authentication:

Authentication between user and his/her mobile phone both infrequent and persistent, when the mobile phone asks for user authentication this authentication holds for 24 hours, if failed to do so user cannot access his/her data what ever the state it would be.                                                

 User Authentication: User has to re-authenticate once in 24 hours to access the data as per persistent authentication.

Session key creation:

Session key is uses to encrypt all laptop-mobile phone communication, once session key is established, all information that transfers over the wireless link will not be in clear text format; instead it will be encrypted and authenticated using a session key. The creation of symmetric session key is done based on Diffie-Hellman Key Exchange Agreement/Algorithm.

Disconnection and re connection:

 The system periodically sense mobile phone to ensure that the user is still present, when the mobile phone is out of the range the laptop take step to secure it self. There are two reasons why laptop cannot receive a response from the mobile phone, firstly the mobile phone and the user are truly being away, or secondly the link may have dropped the packet. For the latter the system uses expected round trip time between laptop and mobile phone, because this is a single, uncontested network hop, this time is relatively stable.  

Encryption and Decryption process:

The system uses the U.S. government standard 128-bit advanced encryption standard to encrypt all laptop-mobile phone communication, we chose this method because it is the current advanced encryption standard chosen by the National Institute of Standards and Technology and it is fast enough to run efficiently with limited memory resources and processing time.

CONNECTION ESTABLISHMENT

Connection establishment at laptop side:

            The laptop acts as client side in the piconets, its communication consist of initializing the Bluetooth stack, discovering mobile phone that is in proximity, open and close and initiate connections and perform security application I/O messages.

            Bluetooth initialization typically entails setting the device’s name, security settings and/or turning the Bluetooth radio on/off. These a fore mentioned steps are done via what is referred to as the Bluetooth control centre (BCC), which typically are a set of control panels that services as the central authority for local Bluetooth device settings.

            Before creating the connection the application retrieve local device information that uses for creating connection. Creating Bluetooth connections is done using the logical link control and adaptation layer (L2CAP) of the Bluetooth protocol stack. L2CAP does a simple Ns lookup and gets the address of the mobile phone (server or master) and tries to establish a logical connection with the L2CAP of the master (mobile phone) through the host controller interface (HCI) layer below. After creating the connection the application performs the security function I/O messages. 

 

 Connection establishment at mobile phone side:

The mobile phone acts as server side in the piconets, it performs same client functions except that instead of initializing and opening connection it creates a server connection using the L2CAP and waiting for connections, accept and open connections and perform security application I/O messages.

Before creating the connections the application get the local device and make it to discoverable however the client (laptop) can establish a connection to it. When mobile phone receive a L2CAP connection request it accept and open connection and start to perform security I/O messages and manage connection according to its results.

 

 

Electronics / Embedded Systems Project Topic List

SRCodeProject name
1PPELECTRO001project based on A WIFI based Smart Wireless Sensor Network for Monitoring an Agricultural Environment
2PPELECTRO002project based on AC/DC/Stepper Motor Closed Loop Speed Control
3PPELECTRO003project based on Accelerometer (Gyroscope) Controlled Robot
4PPELECTRO004project based on Advanced GPS based navigator for illiterates
5PPELECTRO005project based on Advanced vehicle tracking and automatic crash notification using GPS and GSM technology with Location Name as SMS
6PPELECTRO006project based on Android controlled scrolling LED message display
7PPELECTRO007project based on Android Smart Phone operated Robot with bluetooth control
8PPELECTRO008project based on Android speech recognition based Home automation
9PPELECTRO009project based on Android speech recognition based Lamp dimmer
10PPELECTRO010project based on ARM7 Cortex M3 based USB Host Data Logger
11PPELECTRO011project based on Automatic Closed loop tire pressure monitoring and control system
12PPELECTRO012project based on Automatic Intelligent Plant Watering System
13PPELECTRO013project based on Automatic Intelligent Plant Watering System (Microcontroller + Rain Sensor)
14PPELECTRO014project based on Automatic Room Illumination Control (Microcontroller Board + Sensors)
15PPELECTRO015project based on Automatic Rotor Resistance Controller using Microcontroller
16PPELECTRO016project based on Automatic Temperature Measurement and Control (Microcontroller Board + Sensors + LCD)
17PPELECTRO017project based on Autonomous Robot with artificial vision for obstacle detection
18PPELECTRO018project based on Bluetooth devices based access control system without built-in application
19PPELECTRO019project based on CAN communication for vehicles
20PPELECTRO020project based on Closed loop DC Motor Speed Controller (Microcontroller Board + Sensors + LCD + DC Motor)
21PPELECTRO021project based on Construction of Intelligent Digital weighing Machine
22PPELECTRO022project based on Construction of microcontroller based Touchscreen Mobile Phone with Password protected features
23PPELECTRO023project based on Construction of Touchscreen based portable Digital Clock
24PPELECTRO024project based on Contact less Motor speed monitoring on Graphical display with high and low speed alerts
25PPELECTRO025project based on Data logger for energy meter with time and KWH readings
26PPELECTRO026project based on DC Motor Speed and direction control over GSM Mobile/Modem
27PPELECTRO027project based on DC Motor Speed and direction control using RF/IR/Zigbee technologies
28PPELECTRO028project based on DC Voltage and Current Meter With LCD Display
29PPELECTRO029project based on DC Voltage and Current Meter With PC Display
30PPELECTRO030project based on Design and Construction of MEMS Accelerometer based Tilt Operated touch free mobile phone
31PPELECTRO031project based on Digital Compass and GPS based Navigation System
32PPELECTRO032project based on Digital Frequency Meter (Microcontroller Board + Sensors + LCD)
33PPELECTRO033project based on Digital Multimeter (Microcontroller Board + Sensors + LCD)
34PPELECTRO034project based on Digital Tachometer (Non-contact)
35PPELECTRO035project based on Digital Vehicle Dash Board
36PPELECTRO036project based on Digital vehicle speedometer with password enabled speed limit setting
37PPELECTRO037project based on Digital Voltmeter (Microcontroller Board + Sensors + LCD)
38PPELECTRO038project based on DS1307 and Microcontroller based TV remote controlled Digital Clock
39PPELECTRO039project based on DTMF mobile phone controlled dam water gates controlling system with high-level protection
40PPELECTRO040project based on Dual GSM Modems based irrigation water pump controller for illiterates
41PPELECTRO041project based on Electrical Data (voltage, current, frequency etc
42PPELECTRO042project based on Electrical Data(voltage,current,frequency etc
43PPELECTRO043project based on Evaluation of the tongue drive system by individuals with high-level spinal cord injury (IEEE 2009)
44PPELECTRO044project based on Frequency Locked Loop DC Motor Speed Control (Microcontroller Board + Sensors + LCD + DC Motor)
45PPELECTRO045project based on Function Generator Using Microcontroller
46PPELECTRO046project based on Google Android operated Smart Home
47PPELECTRO047project based on GPRS based real-time device status logger into sooxma website
48PPELECTRO048project based on GPS & GSM Based Car Security System
49PPELECTRO049project based on GPS & GSM based Human Health Monitoring and Alert System with patient’s location on earth
50PPELECTRO050project based on GPS and Graphical display based tourist-guiding system with Touchscreen keyboard input for dynamic location recording
51PPELECTRO051project based on GPS and GSM based real-time vehicle tracking on GoogleEarth (with two GSM Modems)
52PPELECTRO052project based on GPS based asset/vehicle/animal/child tracking system
53PPELECTRO053project based on GPS based border alert system for fishermen
54PPELECTRO054project based on GPS based navigator with location display on Graphical LCD
55PPELECTRO055project based on GPS based office cab monitoring system very useful for the safety of female employees
56PPELECTRO056project based on GPS based station name announcement and display system for Trains/buses
57PPELECTRO057project based on GPS based travel assistant for blind people
58PPELECTRO058project based on GPS based universal clock
59PPELECTRO059project based on GPS based vehicle travel location-logging system
60PPELECTRO060project based on GPS Navigator/Logger (Microcontroller Board + Memory Card +PC Software)
61PPELECTRO061project based on GPS+GSM based Realtime Bus/Train Location Finder and display on Earth's Map
62PPELECTRO062project based on Graphical LCD and Memory stick (MMC/SD card) based textbook reading system
63PPELECTRO063project based on GSM Based Automatic Energy Meter Reading System
64PPELECTRO064project based on GSM Based Automatic Irrigation Water Controller System
65PPELECTRO065project based on GSM based digital Notice board with display on Monitor or LCD display
66PPELECTRO066project based on GSM based Highway vehicle traffic monitoring system
67PPELECTRO067project based on GSM Based Home Security System
68PPELECTRO068project based on GSM based instantaneous vehicle registration details extraction system very useful for Traffic police
69PPELECTRO069project based on GSM Based Irrigation System
70PPELECTRO070project based on GSM based Irrigation Water Pump Controller for Illiterates
71PPELECTRO071project based on GSM based SCADA (Supervisory Control and Data Acquisition) implementation
72PPELECTRO072project based on GSM Mobile phone controlled intelligent Robot
73PPELECTRO073project based on GSM+GPS based school kids tracking system
74PPELECTRO074project based on Hazardous chemical valve control system with stepper motor and line of site remote control
75PPELECTRO075project based on Head movement based voice enabled wireless
76PPELECTRO076project based on High voltage fuse blown indicator with Voice based announcement system
77PPELECTRO077project based on Image based password authentication for Illiterates with Touchscreen
78PPELECTRO078project based on Implementation of location based advertisement system using GPS and Graphical LCD
79PPELECTRO079project based on Implementation of wireless sensors network for Wild Fire monitoring system
80PPELECTRO080project based on Infrared (IR) remote controlled Muscle Stimulator with duration and intensity control
81PPELECTRO081project based on Innovative keyboard construction with only one input pin
82PPELECTRO082project based on Intelligent mobile phone with GPS enabled features
83PPELECTRO083project based on Intelligent Robot controlled by Wi-Fi communication
84PPELECTRO084project based on Interfacing Microcontroller to Cellphone graphical display
85PPELECTRO085project based on IR Remote Stepper Motor Controller
86PPELECTRO086project based on Liquid dispensing system with adjustable quantity for industrial use
87PPELECTRO087project based on Live Human being detection wireless remote controlled Robot
88PPELECTRO088project based on Location driven car music player
89PPELECTRO089project based on MEMS Accelerometer based digital photo frame with automatic position/view adjustment system (similar to digital cameras)
90PPELECTRO090project based on MEMS Accelerometer based tilt operated Graphical LCD and memory stick based textbook reading system
91PPELECTRO091project based on MEMS Accelerometer based Tilt Operated wireless phonebook copying to PC
92PPELECTRO092project based on Micro controller based Wireless matchbox with digital lantern
93PPELECTRO093project based on Micro Electro Mechanical Sensor (MEMS) Accelerometer/Gyroscope based self-balancing robot
94PPELECTRO094project based on Microcontroller and GPS based geographical map drawing instrument
95PPELECTRO095project based on Microcontroller and RF transceiver based chatting application with Touchscreen keyboard implementation
96PPELECTRO096project based on Microcontroller and Touchscreen based wireless library book catalog system
97PPELECTRO097project based on Microcontroller and Triac based realtime temperature monitoring and control
98PPELECTRO098project based on Microcontroller and voice based alerting system for blind people with GPS enabled location identification
99PPELECTRO099project based on Microcontroller based automatic liquid dispensing system
100PPELECTRO100project based on Microcontroller based Automatic Railway Gate Control System
101PPELECTRO101project based on Microcontroller based digital clock with Graphical LCD and Sanskrit font (or Any regional font) Numbers
102PPELECTRO102project based on Microcontroller based dual Lithium-ion battery charger with automated charge and discharge cycles
103PPELECTRO103project based on Microcontroller based Generator/Alternator Control and Monitoring System
104PPELECTRO104project based on Microcontroller based GPS Data Logger into MMC/SD Card
105PPELECTRO105project based on Microcontroller based GPS Navigator with Google Earth Interface and MMC/SD 1GB Card Data Logging
106PPELECTRO106project based on Microcontroller based Hardware(USB or Serial) key implementation for any software based applications
107PPELECTRO107project based on Microcontroller based Heartbeat Monitor with Display On Computer
108PPELECTRO108project based on Microcontroller based Heartbeat Monitor with LCD Display
109PPELECTRO109project based on Microcontroller based online examination system with dynamic questions
110PPELECTRO110project based on Microcontroller based refrigeration control system
111PPELECTRO111project based on Microcontroller based Single phasing preventor
112PPELECTRO112project based on Microcontroller based Substation Monitoring and control System
113PPELECTRO113project based on Microcontroller based Temperature Measurement and Relay Control with PC Interface
114PPELECTRO114project based on Microcontroller Based Temperature Monitoring & Control
115PPELECTRO115project based on Microcontroller based virtual boundary/fencing for Wild Animals
116PPELECTRO116project based on Microcontroller Digital Access Control System
117PPELECTRO117project based on Microcontroller to Microcontroller Infrared based communication
118PPELECTRO118project based on Microcontroller to PC Iteraction Using Java Applet based Application
119PPELECTRO119project based on Microcontroller to PC Iteraction Using VB GUI Application
120PPELECTRO120project based on Microcontroller to PC Iteraction Using VC++ GUI Application
121PPELECTRO121project based on Microcontroller to PC USB Interface With Device Control + PC Software (
122PPELECTRO122project based on Military persons training system that monitors the speed at which they move and records the calculated traveled distance with the time
123PPELECTRO123project based on Mobile phone controlled four-legged walking robot with speed and direction control
124PPELECTRO124project based on Mobile phone controlled Street Light monitoring and control system
125PPELECTRO125project based on Mobile technology (GSM) based remote monitoring and control of digital Energy meter
126PPELECTRO126project based on Motor Speed Monitoring over GSM Mobile
127PPELECTRO127project based on Multi Channel Frequency Measurement with LCD Display
128PPELECTRO128project based on Multi Channel Frequency Measurement with PC Display
129PPELECTRO129project based on Multi Channle Voltage Measurement with LCD Display
130PPELECTRO130project based on Multi Channle Voltage Measurement with PC Display
131PPELECTRO131project based on Password enabled pre-paid liquid/milk dispensing system
132PPELECTRO132project based on Password protected GSM based Device control
133PPELECTRO133project based on Password protected IR based Device Control
134PPELECTRO134project based on PC Controlled Analog Devices
135PPELECTRO135project based on PC Controlled Digital Devices
136PPELECTRO136project based on PIR + GSM based Home Security System
137PPELECTRO137project based on PIR based energy conservation system for corporate Computers and lighting system
138PPELECTRO138project based on PIR Sensor based Intrusion Detection System
139PPELECTRO139project based on PWM DC Motor Speed Controller (Microcontroller Board + Sensors + LCD + DC Motor)
140PPELECTRO140project based on Radio Frequency based remote controlled robot with wireless video camera mounted on it
141PPELECTRO141project based on Radio Frequency based wireless remote controlled digital camera with high power focus LED
142PPELECTRO142project based on Radio Frequency wireless remote controlled digital camera with high power LED based focusing light
143PPELECTRO143project based on RC5 IR Based Remote Device Switching (IR Remote + Microcontroller + Device Relays)
144PPELECTRO144project based on Real-time Heartbeat Monitoring system with display on Graphical LCD and Voice based alerting system
145PPELECTRO145project based on Real-time SCADA (Microcontroller Board + Sensors + PC Software)
146PPELECTRO146project based on Remote control of critical software applications with mobile phone
147PPELECTRO147project based on Remote Control of PC/Computer using GSM Modem or Cell Phone
148PPELECTRO148project based on RF Control Of Induction/DC/Stepper Motor & Other Industrial Loads
149PPELECTRO149project based on RF transceiver (Zigbee/X-Bee) based energy meter monitoring system
150PPELECTRO150project based on RFID and GSM based intelligent courier/letter collection box
151PPELECTRO151project based on RFID and GSM based intelligent letterbox (mailbox)
152PPELECTRO152project based on RFID/Mifare/Smart Card based security access control systems
153PPELECTRO153project based on SCADA system design and construction for real-time electrical parameter monitoring and control
154PPELECTRO154project based on Smartphone blutooth controlled Robot
155PPELECTRO155project based on SMS based remote SIM card’s address book access system
156PPELECTRO156project based on Soil Moisture sensor based intelligent irrigation water pump controlling system with GSM technology
157PPELECTRO157project based on Solar based air compressor pump for car bike tire inflate
158PPELECTRO158project based on Solar data logger into MMC/SD Memory Card
159PPELECTRO159project based on Speaking microcontroller for deaf and dumb
160PPELECTRO160project based on Standalone Heartbeat Data Logger (MCU+SD/MMC 1GB Card+Sensors)
161PPELECTRO161project based on Telugu Tutor with dynamic text and Images identification for elementary school kids
162PPELECTRO162project based on Temperature Analyzers with computerized graphical image
163PPELECTRO163project based on Temperature Measurement over GSM Mobile
164PPELECTRO164project based on The controls include taking picture snaps, switching on the flash light, changing camera direction using stepper motor etc
165PPELECTRO165project based on The data for the duration upto One Month can be logged continuously
166PPELECTRO166project based on The sensors check blood density on the patient's fingertips in order to measure heart rate
167PPELECTRO167project based on This gives the visual and voice alerts to users crossing the rail path
168PPELECTRO168project based on This project uses infrared/laser sensor system to count the number of vehicles passing in both the directions
169PPELECTRO169project based on This temperature is processed by microcontroller and sent to the user over GSM mobile
170PPELECTRO170project based on Timer based automatic power cutoff for industrial sealing/packaging machines
171PPELECTRO171project based on Timer based Electrical Oven temperature monitoring and control for Metal Industries
172PPELECTRO172project based on Touch Screen based digital devices control system
173PPELECTRO173project based on Touch Screen GLCD based Digital Devices Control System
174PPELECTRO174project based on Touchscreen based Nurse/attendant calling system for physically impaired
175PPELECTRO175project based on Touchscreen based Ordering System for Restaurants
176PPELECTRO176project based on Touchscreen based temperature monitoring and control system with graphical LCD
177PPELECTRO177project based on Touchscreen based wireless communication assistant for dumb/illiterates in Airlines
178PPELECTRO178project based on Touchscreen based Wireless Language Translator in Airlines using Zigbee
179PPELECTRO179project based on Touchscreen controlled lamp dimmer for next generation apartments
180PPELECTRO180project based on Touchscreen controlled motor speed and direction controlling system
181PPELECTRO181project based on Touchscreen operated liquid dispensing system
182PPELECTRO182project based on Travel assistant for blind with dynamic user input for location based alerts
183PPELECTRO183project based on Triac and optically isolated diac based electrical oven temperature monitoring and controlling system with zero-crossing detector
184PPELECTRO184project based on uC based Closed Loop Temperature Control
185PPELECTRO185project based on uC based Heartbeat Monitoring over GSM Mobile
186PPELECTRO186project based on uC based MMC/SD Memory Card Interfaceing with FAT File System
187PPELECTRO187project based on uC based MMC/SD Memory Card Interfacing
188PPELECTRO188project based on uC based Multiple Device Control based on Change in Input Frequency
189PPELECTRO189project based on uC based Real Time Clock and Multiple Device control based on Time and Date
190PPELECTRO190project based on uC based Real Time Clock with (2x16) LCD Display
191PPELECTRO191project based on uC based Solar Tracker with Stepper Motor Control Solar Tracker
192PPELECTRO192project based on uC based Wireless Temperature Measurement
193PPELECTRO193project based on uC based Wireless(Radio/IR) Heartbeat Monitor
194PPELECTRO194project based on uC to PC Serial Interface With Device Control + PC Software (
195PPELECTRO195project based on Universal Remote Control with Haptic Interface
196PPELECTRO196project based on UPS battery monitoring system over GSM for high availability systems (banking/finance/medical etc)
197PPELECTRO197project based on USB Memory Stick Data Logger
198PPELECTRO198project based on Using Magneto-Inductive Sensors to Detect Tongue Position in a Wireless Assistive Technology for People with Severe Disabilities (IEEE 2007)
199PPELECTRO199project based on Using Unconstrained Tongue Motion as an Alternative Control Mechanism for Wheeled Mobility (IEEE 2009)
200PPELECTRO200project based on Virtual distance measuring tape with Graphical LCD
201PPELECTRO201project based on Virtual wireless dancing bells for classical dancers
202PPELECTRO202project based on Voice enabled devices switching for visually impaired
203PPELECTRO203project based on Voice Operated Guidance Systems for Vision Impaired People
204PPELECTRO204project based on Voice operated Intelligent Fire extinguisher vehicle
205PPELECTRO205project based on Voltage/Current/Frequency Reading with IR Remote
206PPELECTRO206project based on VRBot and EasyVR based Interactive Speech Recognition System
207PPELECTRO207project based on Wearable technology for wireless gadgets control
208PPELECTRO208project based on WiFi and PC based advanced Home Automation system
209PPELECTRO209project based on Wifi and TFT Color LCD based wireless Home automation
210PPELECTRO210project based on Wifi networking based Industrial automation
211PPELECTRO211project based on Wireless control of powered wheelchairs with tongue motion using tongue drive assistive technology (IEEE 2008)
212PPELECTRO212project based on Wireless Digital Camera Controller
213PPELECTRO213project based on Wireless Energy Meter monitoring system with automatic tariff calculation
214PPELECTRO214project based on Wireless energy meter monitoring system with automatic tariff calculation on handheld
215PPELECTRO215project based on Wireless GoogleEarth control system at Railway/Bus Stations for tourist’s route map guidance
216PPELECTRO216project based on Wireless Heartbeat Monitoring and Alert system
217PPELECTRO217project based on Wireless Heartbeat Sensor (GSM based)
218PPELECTRO218project based on Wireless PC based multi-patient health monitoring system for Corporate Hospitals
219PPELECTRO219project based on Wireless SCADA
220PPELECTRO220project based on Wireless Speedo meter for boat/ship with speed and location limit alerts
221PPELECTRO221project based on Wireless Stepper Motor Controller (Radio Rx/Tx + Stepper Motor + Microcontroller)
222PPELECTRO222project based on Wireless touchscreen based multi-patient health monitoring system for corporate hospitals
223PPELECTRO223project based on Zigbee and Touchscreen Controlled PC
224PPELECTRO224project based on Zigbee based Wireless Energy Meter reading logging system on PC
225PPELECTRO225project based on Zigbee based Wireless Energy Meter reading system
226PPELECTRO226project based on A   Current Controller Design for Current Source Inverter-Fed AC Machine Drive   System
227PPELECTRO227project based on A   DC–DC Converter Based on the Three-State Switching Cell for High Current and   Voltage Step-Down Applications
228PPELECTRO228project based on A   High Step-Down Transformerless Single-Stage Single-Switch AC/DC Converter
229PPELECTRO229project based on A   High Step-Up Converter With a Voltage Multiplier Module for a Photovoltaic   System
230PPELECTRO230project based on A   High-Performance SPWM Controller for Three-Phase UPS Systems Operating Under   Highly Nonlinear Loads
231PPELECTRO231project based on A   New Control Method of Interleaved Single-Stage Flyback AC–DC Converter for   Outdoor LED Lighting Systems
232PPELECTRO232project based on A   New DC Anti-Islanding Technique of Electrolytic Capacitor-Less Photovoltaic   Interface in DC Distribution Systems
233PPELECTRO233project based on A   Single-Phase Grid-Connected Fuel Cell System Based on a Boost-Inverter
234PPELECTRO234project based on A   Three-Level Converter With Reduced Filter Size Using Two Transformers and   Flying  Capacitors
235PPELECTRO235project based on A BIDIRECTIONAL UPS INVERTER UTILISING HIGH FREQUENCY CENTER-TAPPED TRANSFORMER
236PPELECTRO236project based on A Blind CFO Estimator Based on Smoothing Power Spectrum for OFDM Systems
237PPELECTRO237project based on A Compact and Compliant     External Pipe-Crawling Robot
238PPELECTRO238project based on A Comparison of Symmetrical and Asymmetrical Three-Phase H-Bridge Multilevel Inverter for DTC Induction Motor Drives
239PPELECTRO239project based on A Control-Theoretic Approach to Distributed Optimal Configuration of 802.11 WLANs
240PPELECTRO240project based on A Current Controller Design for Current Source Inverter-Fed AC Machine Drive System
241PPELECTRO241project based on A DATA EMBEDDING METHOD USING BPCS PRINCIPLE WITH NEW COMPLEXITY MEASURES ...
242PPELECTRO242project based on A DC–DC Converter Based on the Three-State Switching Cell for High Current and Voltage Step-Down Applications
243PPELECTRO243project based on A Finite-Time Reputation System for Cooperation in Wireless Ad
244PPELECTRO244project based on A Follower Robot Using Object Recognition & Machine Vision...
245PPELECTRO245project based on A High Step-Down Transformerless Single-Stage Single-Switch AC/DC Converter
246PPELECTRO246project based on A High Step-Up Converter With a Voltage Multiplier Module for a Photovoltaic System
247PPELECTRO247project based on A High-Efficiency Grid-Tie Battery Energy Storage System
248PPELECTRO248project based on A High-Performance SPWM Controller for Three-Phase UPS Systems Operating Under Highly Nonlinear Loads
249PPELECTRO249project based on A Hybrid Cascade Converter Topology With Series-Connected Symmetrical and Asymmetrical Diode-Clamped H-Bridge Cells
250PPELECTRO250project based on A Hybrid Three Phase Current Source Rectifier For High Power Application
251PPELECTRO251project based on A Hybrid Wind-Solar Energy System: A New Rectifier Stage Topology
252PPELECTRO252project based on A Medium Access Control Scheme for Wireless LANs with Constant-Time Contention
253PPELECTRO253project based on A Modified SEPIC Converter for High-Power-Factor Rectifier and Universal Input Voltage Applications
254PPELECTRO254project based on A Modular Grid-Connected Photovoltaic Generation System Based on DC Bus
255PPELECTRO255project based on A Multicarrier Pulse Width Modulator for the Auxiliary Converter and the Diode Rectifier
256PPELECTRO256project based on A New Approach to Achieve Maximum Power Point Tracking for PV System With a Variable Inductor
257PPELECTRO257project based on A New Control Method of Interleaved Single-Stage Flyback AC–DC Converter for Outdoor LED Lighting Systems
258PPELECTRO258project based on A New DC Anti-Islanding Technique of Electrolytic Capacitor-Less Photovoltaic Interface in DC Distribution Systems
259PPELECTRO259project based on A New ZVT-ZCT-PWM DC–DC Converter
260PPELECTRO260project based on A Novel Control Scheme of Synchronous Buck Converter for ZVS in Light-Load Condition
261PPELECTRO261project based on A Novel Detection Approach Using Bio-Inspired Vision for Enhanced Object Tracking in Video
262PPELECTRO262project based on A Novel High Step-Up DC–DC Converter for a Microgrid System
263PPELECTRO263project based on A Novel Power Management Control Strategy for Stand-alone Photovoltaic Power System-Matlab
264PPELECTRO264project based on A Novel Single-Stage High-Power-Factor Electronic Ballast With Boost Topology for Multiple Fluorescent Lamps
265PPELECTRO265project based on A Novel Surgical Manipulator with Workspace-Conversion Ability for Tele surgery.
266PPELECTRO266project based on A Passive Soft-Switching Snubber for PWM Inverters
267PPELECTRO267project based on A Policy Enforcing Mechanism for Trusted Ad Hoc Networks
268PPELECTRO268project based on A Practical Adaptive Pacing Scheme for TCP in Multihop Wireless Networks
269PPELECTRO269project based on A Privacy-Preserving Location Monitoring System for Wireless Sensor Networks
270PPELECTRO270project based on A Real time Wireless Brain Computer Interface System for Drowsiness Detection Using MATLAB...
271PPELECTRO271project based on A Region-Based Clustering Mechanism for Channel Access in Vehicular Ad Hoc Networks
272PPELECTRO272project based on A Review of Various Carrier based PWM Methods for
273PPELECTRO273project based on A Robot that Approaches Pedestrians
274PPELECTRO274project based on A Security Architecture Achieving Anonymity and Traceability in Wireless Mesh Networks
275PPELECTRO275project based on A Simple Critical-Load-Based CAC Scheme for IEEE 802.11 DCF Networks
276PPELECTRO276project based on A Simple Digital Autotuning For Analog Controller in SMPS
277PPELECTRO277project based on A Single-Input Space Vector for Control of AC–DC Converters Under Generalized Unbalanced Operating Conditions
278PPELECTRO278project based on A Single-Phase Grid-Connected Fuel Cell System Based on a Boost-Inverter
279PPELECTRO279project based on A Soft Switching Scheme for Multiphase DC/Pulsating-DC Converter for Three-Phase High-Frequency-Link Pulsewidth Modulation(PWM) Inverter
280PPELECTRO280project based on A Tactical Information Management System for Unmanned Vehicles Using Vehicular Ad-hoc Networks
281PPELECTRO281project based on A Three-Level Converter With Reduced Filter Size Using Two Transformers and Flying  Capacitors
282PPELECTRO282project based on A Three-Phase Unity Power Factor Single-Stage AC–DC Converter Based on an Interleaved Flyback Topology
283PPELECTRO283project based on A Unified Approach to Optimizing Performance in Networks Serving Heterogeneous Flows
284PPELECTRO284project based on Adaptive   Dead-Time Compensation for Grid-Connected PWM Inverters of Single-Stage PV   Systems
285PPELECTRO285project based on Adaptive   Theory-Based Improved Linear Sinusoidal Tracer Control Algorithm for DSTATCOM
286PPELECTRO286project based on Adaptive   Voltage Control of the DC/DC Boost Stage in PV Converters With Small Input   Capacitor
287PPELECTRO287project based on Adaptive Dead-Time Compensation for Grid-Connected PWM Inverters of Single-Stage PV Systems
288PPELECTRO288project based on Adaptive PD Controller Modeled via Support Vector
289PPELECTRO289project based on Adaptive Routing in Dynamic Ad Hoc Networks
290PPELECTRO290project based on Adaptive Theory-Based Improved Linear Sinusoidal Tracer Control Algorithm for DSTATCOM
291PPELECTRO291project based on Adaptive Voltage Control of the DC/DC Boost Stage in PV Converters With Small Input Capacitor
292PPELECTRO292project based on Advanced Traffic & Emergency Vehicle Pass-By Control Using RFID...
293PPELECTRO293project based on An   Adaptive Output Current Estimation Circuit for a Primary-Side Controlled LED   Driver
294PPELECTRO294project based on An   Optimal Control Method for Photovoltaic Grid-Tied-Interleaved Flyback   Microinverters to Achieve High Efficiency in Wide Load Range
295PPELECTRO295project based on An Adaptive Output Current Estimation Circuit for a Primary-Side Controlled LED Driver
296PPELECTRO296project based on An Analysis of IEEE 802.11 DCF and Its Application to Energy-Efficient Relaying in Multi-Hop Ad-Hoc Networks
297PPELECTRO297project based on An Attribute-Based Access Control System for Emergency Services over Vehicular Ad Hoc Networks
298PPELECTRO298project based on An Autonomous Robot Based on a wheelchair
299PPELECTRO299project based on An Efficient AC–DC Step-Up Converter for Low-Voltage Energy Harvesting
300PPELECTRO300project based on An Efficient High-Step-Up Interleaved DC–DC Converter
301PPELECTRO301project based on An Improved Sliding Mode Controller for Boost Converter in Solar Energy System
302PPELECTRO302project based on An Inrush Mitigation Technique of Load Transformers for the Series Voltage Sag Compensator
303PPELECTRO303project based on An Integrated Health Management Process for Automotive Cyber-Physical Systems
304PPELECTRO304project based on An Islanding Detection Method for a Grid-Connected System Based on the Goertzel Algorithm
305PPELECTRO305project based on An Optimal Algorithm for Relay Node Assignment in Cooperative Ad Hoc Networks
306PPELECTRO306project based on An Optimal Control Method for Photovoltaic Grid-Tied-Interleaved Flyback Microinverters to Achieve High Efficiency in Wide Load Range
307PPELECTRO307project based on Analysis   and Comparison of Medium Voltage High Power DC/DC Converters for Offshore   Wind Energy Systems
308PPELECTRO308project based on Analysis   and Design of a Push–Pull Quasi-Resonant Boost Power Factor Corrector
309PPELECTRO309project based on Analysis   of a Fifth-Order Resonant Converter for High-Voltage DC Power Supplies
310PPELECTRO310project based on Analysis and Comparison of Medium Voltage High Power DC/DC Converters for Offshore Wind Energy Systems
311PPELECTRO311project based on Analysis and Design of a Push–Pull Quasi-Resonant Boost Power Factor Corrector
312PPELECTRO312project based on Analysis and Implementation of a Hybrid High-Power-Factor Three-Phase Unidirectional Rectifier
313PPELECTRO313project based on Analysis of a Fifth-Order Resonant Converter for High-Voltage DC Power Supplies
314PPELECTRO314project based on Analysis of Boundary Control for Buck Converters With Instantaneous Constant-Power Loads
315PPELECTRO315project based on Analysis of Cascaded H Bridge Multilevel Inverters with
316PPELECTRO316project based on Analysis of two resonant converters with the same converter leg
317PPELECTRO317project based on Analysis,   Design, and Experimental Results of a Novel Soft-Switching Snubberless   Current-Fed Half-Bridge Front-End Converter-Based PV Inverter
318PPELECTRO318project based on Analysis, design and experimental results of a floating-output
319PPELECTRO319project based on Analysis, Design, and Experimental Results of a Novel Soft-Switching Snubberless Current-Fed Half-Bridge Front-End Converter-Based PV Inverter
320PPELECTRO320project based on Analysis, Design, and Experimentation of an Isolated ZVT Boost Converter With Coupled Inductors
321PPELECTRO321project based on Anomalous Loss Performance for Mixed Real-Time and TCP Traffic
322PPELECTRO322project based on Application   and Stability Analysis of a Novel Digital Active EMI Filter Used in a   Grid-Tied PV Microinverter Module
323PPELECTRO323project based on Application and Stability Analysis of a Novel Digital Active EMI Filter Used in a Grid-Tied PV Microinverter Module
324PPELECTRO324project based on Application of Temperature Compensated Ultrasonic Ranging for Blind Person and Verification Using MATLAB
325PPELECTRO325project based on ARM BASED GRAPE DRYER SYSTEM
326PPELECTRO326project based on ARM BASED MAXIMUM POWER POINT TRACKER FOR SOLAR
327PPELECTRO327project based on Asymmetric   Control of DC-Link Voltages for Separate MPPTs in Three-Level Inverters
328PPELECTRO328project based on Asymmetric Control of DC-Link Voltages for Separate MPPTs in Three-Level Inverters
329PPELECTRO329project based on Automated Restaurant Order System Using ZigBee
330PPELECTRO330project based on Automatic Car Counting Method for Unmanned Aerial Vehicle Images
331PPELECTRO331project based on Automatic License Plate Recognition (ALPR): A State of the Art Review
332PPELECTRO332project based on Automatic Lighting System Using Multiple Robotic Lamps
333PPELECTRO333project based on Automatic locker machine design and implementation using RFID and MC...
334PPELECTRO334project based on Automatic Meteorological Data Acquisition System based on ARM...
335PPELECTRO335project based on AUTOMATIC RETRIVAL OF MRI BRAIN IMAGE USING MULTIQUERIES SYSTEM
336PPELECTRO336project based on Automatic Vehicle Identification using RFID
337PPELECTRO337project based on Automatic Weed Detection System and Smart Herbicide Sprayer Robot for corn fields
338PPELECTRO338project based on Autonomous Electric Vehicle Steering and Path-Following Control Systems
339PPELECTRO339project based on Average current controlled switching regulators with cascade boost converters
340PPELECTRO340project based on Battery/Supercapacitors   Combination in Uninterruptible Power Supply (UPS)
341PPELECTRO341project based on Battery/Supercapacitors Combination in Uninterruptible Power Supply (UPS)
342PPELECTRO342project based on Blocking Misbehaving Users in Anonymizing Networks
343PPELECTRO343project based on Boost Converter
344PPELECTRO344project based on Bridgeless   SEPIC Converter With a Ripple-Free Input Current
345PPELECTRO345project based on Bridgeless High-Power-Factor Buck Converter
346PPELECTRO346project based on Bridgeless SEPIC Converter With a Ripple-Free Input Current
347PPELECTRO347project based on Bridgeless SEPIC Rectifier With Unity Power Factor and Reduced Conduction Losses
348PPELECTRO348project based on CAN PROTOCOL BASED DATA ACQUISITION SYSTEM
349PPELECTRO349project based on Capacitor Balance Issues of the Diode-Clamped Multilevel Inverter Operated in a Quasi Two-State Mode
350PPELECTRO350project based on Capacitor  Balance Issues of the Diode-Clamped Multilevel Inverter Operated in a Quasi Two-State Mode
351PPELECTRO351project based on Cascaded   Multicell Trans-Z-Source Inverters
352PPELECTRO352project based on Cascaded Multicell Trans-Z-Source Inverters
353PPELECTRO353project based on Cascaded Multilevel Inverter for Hybrid Electric Vehicles
354PPELECTRO354project based on Churn-Resilient Protocol for Massive Data Dissemination in P2P Networks
355PPELECTRO355project based on Circuit Analysis and Modeling of a Phase-Shifted Pulsewidth modulation Full-Bridge-Inverter-Fed Ozone Generator With Constant AppliedElectrode Voltage
356PPELECTRO356project based on Class-D/DE   Dual-Mode-Operation Resonant Converter for Improved-Efficiency Domestic   Induction Heating System
357PPELECTRO357project based on Class-D/DE Dual-Mode-Operation Resonant Converter for Improved-Efficiency Domestic Induction Heating System
358PPELECTRO358project based on Climate Monitoring System using ARM
359PPELECTRO359project based on Closed-Loop Analysis and Cascade Control of a Nonminimum Phase
360PPELECTRO360project based on Coding Schemes Applied to Peak-to-Average Power Ratio (PAPR) Reduction in OFDM Systems
361PPELECTRO361project based on Colour and texture feature-based image retrieval by using Hadamard matrix in discrete wavelet transform
362PPELECTRO362project based on Common-Mode   Voltage Reduction Methods for Current-Source Converters in Medium-Voltage   Drives
363PPELECTRO363project based on Common-Mode Voltage Reduction Methods for Current-Source Converters in Medium-Voltage Drives
364PPELECTRO364project based on Communication Cost Minimization in Wireless Sensor and Actor
365PPELECTRO365project based on Comparative Evaluation of Spoofing Defenses
366PPELECTRO366project based on Comparative study of Proportional Integral and Backstepping Controller for Buck Converter
367PPELECTRO367project based on Comparison of Power Quality Improvement Techniques in AC-DC Cuk Converter
368PPELECTRO368project based on Comparison of Z-Source Inverter and Traditional Two-Stage Boost-Buck Inverter in Grid-tied Renewable Energy Generation
369PPELECTRO369project based on Conductance MPPT With Direct Control Method Using Cuk Converter
370PPELECTRO370project based on Context Aware Driver Behavior Detection System in Intelligent Transportation Systems (ITS)
371PPELECTRO371project based on Context-Adaptive Multimodal Wireless Sensor Network for Energy-Efficient Gas Monitoring
372PPELECTRO372project based on Control   of Improved Full-Bridge Three-Level DC/DC Converter for Wind Turbines in a DC   Grid
373PPELECTRO373project based on Control of Improved Full-Bridge Three-Level DC/DC Converter for Wind Turbines in a DC Grid
374PPELECTRO374project based on Current Harmonic Compensation and Power Factor Improvement by Hybrid Shunt Active Power Filter
375PPELECTRO375project based on Current-Fed Quasi-Z-Source Inverter With Voltage Buck–Boost and Regeneration Capability
376PPELECTRO376project based on Current-Fed Quasi-Z-Source Inverter With VoltageBuck–Boost and Regeneration Capability
377PPELECTRO377project based on Customized Ultra High Frequency Radio Frequency
378PPELECTRO378project based on DC-Voltage   Fluctuation Elimination Through a DC-Capacitor Current Control for DFIG   Converters Under Unbalanced Grid Voltage Conditions
379PPELECTRO379project based on DC-Voltage Fluctuation Elimination Through a DC-Capacitor Current Control for DFIG Converters Under Unbalanced Grid Voltage Conditions
380PPELECTRO380project based on Dead-Time Elimination for Voltage Source Inverters
381PPELECTRO381project based on Delay Analysis and Optimality of Scheduling Policies for Multi-Hop Wireless Networks
382PPELECTRO382project based on Delaying Transmissions in Data Communication Networks to Improve Transport-Layer Performance
383PPELECTRO383project based on Design   and Implementation of Energy Management System With Fuzzy Control for DC   Microgrid Systems
384PPELECTRO384project based on Design   Methodology for a Very High Frequency Resonant Boost Converter
385PPELECTRO385project based on Design   Optimization of Transformerless Grid-Connected PV Inverters Including   Reliability
386PPELECTRO386project based on Design And Development Of PIC Microcontroller Based Vehicle Monitoring System Using Controller Area Network (CAN) Protocol
387PPELECTRO387project based on Design and Evaluation of a Proxy Cache for Peer-to-Peer Traffic
388PPELECTRO388project based on Design and Fabrication of Pneumatic robot
389PPELECTRO389project based on Design and Fabrication of sheet grooving machine
390PPELECTRO390project based on Design and Implementation of a Current-Source Converter for Use in Industry Applications of D-STATCOM
391PPELECTRO391project based on Design and Implementation of a Photovoltaic High-Intensity-Discharge Street Lighting System
392PPELECTRO392project based on Design and Implementation of Energy Management System With Fuzzy Control for DC Microgrid Systems
393PPELECTRO393project based on DESIGN AND PERFORMANCE OF AN OPTIMAL INERTIAL POWER HARVESTER FOR HUMAN-POWERED DEVICES...
394PPELECTRO394project based on Design Considerations of Soft Switched Buck PFC Converter
395PPELECTRO395project based on Design Guidelines of New Step-up DC/DC Converter for Fuel Cell Powered Distributed Generation Systems
396PPELECTRO396project based on Design Methodology for a Very High Frequency Resonant Boost Converter
397PPELECTRO397project based on Design of a Wireless Medical Monitoring System using Zigbee...
398PPELECTRO398project based on Design of an Intelligent Electric Vehicle for Blind
399PPELECTRO399project based on Design of Efficient Multicast Protocol for IEEE 802.11n WLANs and Cross-Layer Optimization for Scalable Video Streaming
400PPELECTRO400project based on DESIGN OF INTELLIGENT MOBILE VEHICLE CHECKING SYSTEM BASED ON ARM7...
401PPELECTRO401project based on Design of Milk Analysis Embedded System for Dairy Farmers
402PPELECTRO402project based on Design of the bangle bearing unit on channel T-7
403PPELECTRO403project based on Design Optimization of Transformerless Grid-Connected PV Inverters Including Reliability
404PPELECTRO404project based on Design,   Analysis, and Implementation of Solar Power Optimizer for DC Distribution   System
405PPELECTRO405project based on Design, Analysis, and Implementation of Solar Power Optimizer for DC Distribution System
406PPELECTRO406project based on Detecting Communities in Sparse MANETs
407PPELECTRO407project based on Detection and Classification of Apple Fruit Diseases using Complete Local Binary Patterns
408PPELECTRO408project based on detection of eye lid
409PPELECTRO409project based on Development   and Operational Control of Two-String Maximum Power Point Trackers in DC   Distribution Systems
410PPELECTRO410project based on Development and Operational Control of Two-String Maximum Power Point Trackers in DC Distribution Systems
411PPELECTRO411project based on DEVELOPMENT OF A GRID CONNECTED PHOTOVOLTAIC POWER CONDITIONING SYSTEM BASED ON FLYING CAPACITORS INVERTER
412PPELECTRO412project based on Digital   Plug-In Repetitive Controller for Single-Phase Bridgeless PFC Converters
413PPELECTRO413project based on Digital Average Current-Mode Control of PWM DC–DC Converters Without Current Sensors
414PPELECTRO414project based on Digital Plug-In Repetitive Controller for Single-Phase Bridgeless PFC Converters
415PPELECTRO415project based on Direct signalling for trains
416PPELECTRO416project based on Discontinuous Energy Pump Source Inverters
417PPELECTRO417project based on Discontinuous Operation Modes of Current-fed Quasi-Z-Source Inverter
418PPELECTRO418project based on DME Project-abrasive Cutting off Machine,BE- Analysis and tooling of door hinge braket ...
419PPELECTRO419project based on DME-FISH LIKE Propulation system,eng.project-mesaurement of energy saving from vars by utilization h...
420PPELECTRO420project based on DNA Secret Writing Techniques
421PPELECTRO421project based on Driver Fatigue Detection Using Machine Vision Approach
422PPELECTRO422project based on Dual   Transformerless Single-Stage Current Source Inverter With Energy Management   Control Strategy
423PPELECTRO423project based on Dual Transformerless Single-Stage Current Source Inverter With Energy Management Control Strategy
424PPELECTRO424project based on Dynamic Characteristics of Current-Fed Superbuck Converter
425PPELECTRO425project based on Dynamic Conflict-Free Transmission Scheduling for Sensor Network Queries
426PPELECTRO426project based on Dynamic Ultrasonic Hybrid Localization System for Indoor Mobile Robots
427PPELECTRO427project based on Dynamics of Malware Spread in Decentralized Peer-to-Peer Networks
428PPELECTRO428project based on Dynamics of Network Connectivity in Urban Vehicular Networks
429PPELECTRO429project based on Effects of Switching Asymmetry on an Isolated Full-Bridge Boost Converter
430PPELECTRO430project based on Efficient Data Collection in Wireless Sensor Networks with Path-Constrained Mobile Sinks
431PPELECTRO431project based on Efficient Network Modification to Improve QoS Stability at Failures
432PPELECTRO432project based on Electric   Equivalent Model for Induction Electrodeless Fluorescent Lamps
433PPELECTRO433project based on Electric Equivalent Model for Induction Electrodeless Fluorescent Lamps
434PPELECTRO434project based on Embedded Flexible Force Sensor for In-Situ Tire–Road Interaction Measurements
435PPELECTRO435project based on EMI Filter Design for a MHz, kW Three-Phase/Level PWM Rectifier
436PPELECTRO436project based on Endpoint-Based Call Admission Control and Resource Management
437PPELECTRO437project based on Energy Harvesting through Piezo-electric Technology ...
438PPELECTRO438project based on Energy-Efficient Multicasting of Scalable Video Streams Over WiMAX Networks
439PPELECTRO439project based on Enhanced   Control of a DFIG-Based Wind-Power Generation System With Series Grid-Side   Converter Under Unbalanced Grid Voltage Conditions
440PPELECTRO440project based on Enhanced Control of a DFIG-Based Wind-Power Generation System With Series Grid-Side Converter Under Unbalanced Grid Voltage Conditions
441PPELECTRO441project based on Estimating Parameters of Multiple Heterogeneous Target Objects Using Composite Sensor Nodes
442PPELECTRO442project based on Evidence Collection from Car Black Boxes using Smart phones...
443PPELECTRO443project based on Explicit Congestion Control Algorithms for Time Varying Capacity Media
444PPELECTRO444project based on Exploiting Heterogeneity in P2P Video Streaming
445PPELECTRO445project based on Fast Data Collection in Tree-Based Wireless Sensor Networks
446PPELECTRO446project based on Fast Detection of Mobile Replica Node Attacks in Wireless Sensor Networks Using Sequential Hypothesis Testing
447PPELECTRO447project based on Fast Recovery From Dual-Link or Single-Node Failures in IP Networks Using Tunneling
448PPELECTRO448project based on Fault Localization Using Passive End-to-End Measurements and
449PPELECTRO449project based on Fault Recovery Strategy for Hybrid Cascaded H-Bridge
450PPELECTRO450project based on Fighting robot with gun & wireless camera
451PPELECTRO451project based on Finger Print Based Medical Information Retrieval & Patient Information...
452PPELECTRO452project based on Fingerprint activated remote input device for personal id recognition and access authentication...
453PPELECTRO453project based on Flexible Broadcasting of Scalable Video Streams to Heterogeneous Mobile Devices
454PPELECTRO454project based on Flying Capacitor Multilevel Inverter Based Shunt Active Power Filter with Trifling Susceptibility to Divisional Voltages Deregulation
455PPELECTRO455project based on for VoWLAN
456PPELECTRO456project based on Front Sensor and GPS-Based Lateral Control of Automated Vehicles
457PPELECTRO457project based on Fundamental Frequency Switching Strategies of a Seven-Level Hybrid Cascaded H-Bridge Multilevel Inverter
458PPELECTRO458project based on Generalised pulse width modulation approach for DC capacitor voltage balancing in diode-clamped multilevel converters
459PPELECTRO459project based on Generalized   Multicell Switched-Inductor and Switched-Capacitor Z-Source Inverters
460PPELECTRO460project based on Generalized Multicell Switched-Inductor and Switched-Capacitor Z-Source Inverters
461PPELECTRO461project based on GPS BASED CARE FOR ELDERLY AND DISABLED
462PPELECTRO462project based on Grid   Interfacing of Multimegawatt Photovoltaic Inverters
463PPELECTRO463project based on Grid Interfacing of Multimegawatt Photovoltaic Inverters
464PPELECTRO464project based on GSM BASED VEHICLE GASEOUS FUEL LEAKAGE DETECTION WITH AUTOMATIC SAFETY WARNING AND ALERTING SYSTEM...
465PPELECTRO465project based on GZVNewly-Constructed Simplified Single-Phase Multistring Multilevel
466PPELECTRO466project based on Hiding Secret Image in Video
467PPELECTRO467project based on High   Boost Ratio Hybrid Transformer DC–DC Converter for Photovoltaic Module   Applications
468PPELECTRO468project based on High   Power Factor AC–DC LED Driver With Film Capacitors
469PPELECTRO469project based on High Boost Ratio Hybrid Transformer DC–DC Converter for Photovoltaic Module Applications
470PPELECTRO470project based on High Frequency Resonant SEPIC Converter with Wide Input and Output Voltage Ranges
471PPELECTRO471project based on High Frequency Transformer Isolated Z-Source Inverters
472PPELECTRO472project based on High Power Factor AC–DC LED Driver With Film Capacitors
473PPELECTRO473project based on High-Efficiency   Asymmetrical Half-Bridge Converter Without Electrolytic Capacitor for   Low-Output-Voltage AC–DC LED Drivers
474PPELECTRO474project based on High-Efficiency   Single-Input Multiple-Output DC–DC Converter
475PPELECTRO475project based on High-Efficiency Asymmetrical Half-Bridge Converter Without Electrolytic Capacitor for Low-Output-Voltage AC–DC LED Drivers
476PPELECTRO476project based on High-Efficiency MOSFET Inverter with H-Type Configuration for
477PPELECTRO477project based on High-Efficiency Single-Input Multiple-Output DC–DC Converter
478PPELECTRO478project based on High-Performance Adaptive Perturb and Observe MPPT Technique for Photovoltaic-Based Microgrids
479PPELECTRO479project based on High-Voltage and High-Power Applications
480PPELECTRO480project based on Hoc Networks
481PPELECTRO481project based on Hoc Networks with Priority
482PPELECTRO482project based on HOME AUTOMATION SYSTEM BASED ON ARM AND ZIGBEE
483PPELECTRO483project based on Hybrid Integration of a Low-Voltage, High-Current Power Supply Buck Converter With an LTCC Substrate Inductor
484PPELECTRO484project based on Hybrid-Frequency   Modulation for PWM-Integrated Resonant Converters
485PPELECTRO485project based on Hybrid-Frequency Modulation for PWM-Integrated Resonant Converters
486PPELECTRO486project based on Identification Tags and Reader Antennas  Enabling Reliable
487PPELECTRO487project based on Impact of File Arrivals and Departures on Buffer Sizing in Core Routers
488PPELECTRO488project based on Improved   Sensorless Operation of a CSI-Based Induction Motor Drive: Long Feeder Case
489PPELECTRO489project based on Improved   Trans-Z-Source Inverter With Continuous Input Current and Boost Inversion   Capability
490PPELECTRO490project based on Improved   Voltage-Vector Sequences on Dead-Beat Predictive Direct Power Control of   Reversible Three-Phase Grid-Connected Voltage-Source Converters
491PPELECTRO491project based on Improved Histogram Bin Shifting based Reversible Watermarking
492PPELECTRO492project based on Improved Sensorless Operation of a CSI-Based Induction Motor Drive: Long Feeder Case
493PPELECTRO493project based on Improved Trans-Z-Source Inverter With Continuous Input Current and Boost Inversion Capability
494PPELECTRO494project based on Improved Voltage-Vector Sequences on Dead-Beat Predictive Direct Power Control of Reversible Three-Phase Grid-Connected Voltage-Source Converters
495PPELECTRO495project based on Improved Z-Source Inverter With Reduced Z-Source Capacitor Voltage Stress and Soft-Start Capability
496PPELECTRO496project based on Improving the Performance of Wireless Ad Hoc Networks Through MAC Layer Design
497PPELECTRO497project based on in Routers With Very Small Buffers
498PPELECTRO498project based on Induction Motor Drive Using Seven Level Multilevel Inverter for Energy Saving in Variable Torque Load Application
499PPELECTRO499project based on Inherent clamp flyback–buck converter with winding cross-coupled inductors
500PPELECTRO500project based on Input   Differential-Mode EMI of CRM Boost PFC Converter
501PPELECTRO501project based on Input Differential-Mode EMI of CRM Boost PFC Converter
502PPELECTRO502project based on Integration   and Operation of a Single-Phase Bidirectional Inverter With Two Buck/Boost   MPPTs for DC-Distribution Applications
503PPELECTRO503project based on Integration and Operation of a Single-Phase Bidirectional Inverter With Two Buck/Boost MPPTs for DC-Distribution Applications
504PPELECTRO504project based on Intelligent Traction Control Model for Speed Sensor Vehicles in Computer-Based Transit System
505PPELECTRO505project based on Interleaved   Boundary Conduction Mode (BCM) Buck Power Factor Correction (PFC) Converter
506PPELECTRO506project based on Interleaved Boundary Conduction Mode (BCM) Buck Power Factor Correction (PFC) Converter
507PPELECTRO507project based on Interleaved Soft-Switching Boost Converter for Photovoltaic Power-Generation System
508PPELECTRO508project based on interleaved-input boost-derived DC–DC high-gain transformer-less converter
509PPELECTRO509project based on Inverter Topology for Distributed Energy Resources
510PPELECTRO510project based on Jumping Robot
511PPELECTRO511project based on laboratory and on roa investigation of engine performance charactristics for diesel kerosene blends ...
512PPELECTRO512project based on Large P2P Streaming Networks
513PPELECTRO513project based on LCCT-Z-Source Inverters
514PPELECTRO514project based on Light-Load   Efficiency Improvement in Buck-Derived Single-Stage Single-Switch PFC   Converters
515PPELECTRO515project based on Light-Load Efficiency Improvement in Buck-Derived Single-Stage Single-Switch PFC Converters
516PPELECTRO516project based on Light-to-Light:   PV-Fed LED Lighting Systems
517PPELECTRO517project based on Light-to-Light: PV-Fed LED Lighting Systems
518PPELECTRO518project based on Link-State Routing With Hop-by-Hop Forwarding Can Achieve Optimal Traffic Engineering
519PPELECTRO519project based on Load Balance with Imperfect Information in Structured Peer-to-Peer Systems
520PPELECTRO520project based on Localization of Mobile Nodes in Wireless Networks with Correlated in Time Measurement Noise
521PPELECTRO521project based on Locking and Unlocking of Theft Vehicles Using CAN
522PPELECTRO522project based on Loss Performance Modeling for Hierarchical Heterogeneous Wireless
523PPELECTRO523project based on Manual spring compression tool
524PPELECTRO524project based on Mechanism Design-Based Secure Leader Election Model for Intrusion Detection in MANET
525PPELECTRO525project based on Mechanism Design-Based Secure Leader Election Model Intrusion Detection in MANET
526PPELECTRO526project based on Minimal Grasper: A Practical Robotic Grasper With Robust Performance for Pick-and-Place Tasks
527PPELECTRO527project based on Mitigation   of Lower Order Harmonics in a Grid-Connected Single-Phase PV Inverter
528PPELECTRO528project based on Mitigation of Lower Order Harmonics in a Grid-Connected Single-Phase PV Inverter
529PPELECTRO529project based on Mix-Voltage Conversion for Single-Inductor Dual-Output Buck Converters
530PPELECTRO530project based on Mobile Robot Navigation
531PPELECTRO531project based on Mobility Tracking using GPS and Cell Id.
532PPELECTRO532project based on Modeling   and Simulation of All-Electric Ships With Low-Voltage DC Hybrid Power Systems
533PPELECTRO533project based on Modeling and Detection of Camouflaging Worm
534PPELECTRO534project based on Modeling and Improving TCP Performance over Cellular Link with Variable Bandwidth
535PPELECTRO535project based on Modeling and Simulation of All-Electric Ships With Low-Voltage DC Hybrid Power Systems
536PPELECTRO536project based on Modeling Nonsaturated IEEE 802.11 DCF Networks Utilizing an Arbitrary Buffer Size
537PPELECTRO537project based on Modelling and simulation of power factor corrected AC–DC converters
538PPELECTRO538project based on Monitoring the Impact of P2P Users on a Broadband Operator’s Network over Time
539PPELECTRO539project based on MSU Jumper: A Single-Motor- Actuated Miniature Steerable
540PPELECTRO540project based on Multicascoded Sources for a High-Efficiency Fuel-Cell Hybrid Power
541PPELECTRO541project based on Multilevel   DC-Link Inverter and Control Algorithm to Overcome the PV Partial Shading
542PPELECTRO542project based on Multilevel DC-Link Inverter and Control Algorithm to Overcome the PV Partial Shading
543PPELECTRO543project based on Multilevel Inverter
544PPELECTRO544project based on Multilevel Inverter For Grid-Connected PV System Employing Digital PI Controller
545PPELECTRO545project based on Multi-Level Inverters
546PPELECTRO546project based on Multilevel inverters for low-power application
547PPELECTRO547project based on Multiphase DC–DC Converters Using a Boost-Half-Bridge Cell for
548PPELECTRO548project based on Multiple Working Mode Control of Door-Opening With a Mobile Modular and Reconfigurable Robot
549PPELECTRO549project based on Multiple-Target Tracking for Intelligent Headlights Control
550PPELECTRO550project based on Multiplier SEPIC Converter
551PPELECTRO551project based on Multistring Five-Level Inverter With Novel PWM Control Scheme for PV Application
552PPELECTRO552project based on Mutual   Impedance of Small Ring-Type Coils for Multiwinding Induction Heating   Appliances
553PPELECTRO553project based on Mutual Impedance of Small Ring-Type Coils for Multiwinding Induction Heating Appliances
554PPELECTRO554project based on Network Connectivity with a Family of Group Mobility Models
555PPELECTRO555project based on Networks for Road Surveillance
556PPELECTRO556project based on Networks With Speed-Sensitive Call Admission Control
557PPELECTRO557project based on New Approach for MPPT Control of Photovoltaic System With Mutative-Scale Dual-Carrier
558PPELECTRO558project based on Nine level Cascaded H-bridge Multilevel DC-Link Inverter
559PPELECTRO559project based on Nonisolated High Step-up Boost Converter Integrated With Sepic Converter
560PPELECTRO560project based on Nonlinear   Behavior and Instability in a Three-Phase Boost Rectifier Connected to a   Nonideal Power Grid With an Interacting Load
561PPELECTRO561project based on Nonlinear Behavior and Instability in a Three-Phase Boost Rectifier Connected to a Nonideal Power Grid With an Interacting Load
562PPELECTRO562project based on Novel   Energy Conversion System Based on a Multimode Single-Leg Power Converter
563PPELECTRO563project based on Novel Energy Conversion System Based on a Multimode Single-Leg Power Converter
564PPELECTRO564project based on Novel Iris Segmentation and Recognition System for Human Identification
565PPELECTRO565project based on Omega-Shaped Inchworm-Inspired Crawling Robot With Large-Index-and-Pitch (LIP) SMA Spring Actuators
566PPELECTRO566project based on On Reliable Broadcast in Low Duty-Cycle Wireless Sensor Networks
567PPELECTRO567project based on On the Effectiveness of Monitoring for Intrusion Detection in Mobile Ad Hoc Networks
568PPELECTRO568project based on On the Price of Security in Large-Scale Wireless Ad Hoc Networks
569PPELECTRO569project based on Optimal Pulsewidth Modulation of Nine-Switch Converter
570PPELECTRO570project based on Optimal Selective Forwarding for Energy Saving in Wireless Sensor Networks
571PPELECTRO571project based on Optimization of Perturb and Observe Maximum Power Point Tracking Method
572PPELECTRO572project based on Origin   of Cross-Coupling Effects in Distributed DC–DC Converters in Photovoltaic   Applications
573PPELECTRO573project based on Origin of Cross-Coupling Effects in Distributed DC–DC Converters in Photovoltaic Applications
574PPELECTRO574project based on Palm-Print Classification by Global Features
575PPELECTRO575project based on Patient Monitoring System using GSM Technology
576PPELECTRO576project based on Pen Drive to Pen Drive and Mobile Data Transfer Using ARM...
577PPELECTRO577project based on PERFORMANCE EVALUATION OF TRADITIONAL AND ADAPTIVE LIFTING BASED W AVELETS WITH SPIHT FOR LOSSY IMAGE COMPRESSION
578PPELECTRO578project based on Performance Modeling of Message Dissemination In Vehicular Ad
579PPELECTRO579project based on Perturbation   On-Time (POT) Technique in Power Factor Correction (PFC) Controller for Low   Total Harmonic Distortion and High Power Factor
580PPELECTRO580project based on Perturbation On-Time (POT) Technique in Power Factor Correction (PFC) Controller for Low Total Harmonic Distortion and High Power Factor
581PPELECTRO581project based on PFC Cuk Converter Based Electronic Ballast for an 18 W Compact Fluorescent Lamp
582PPELECTRO582project based on PFC Cuk Converter Based Electronic Ballast for an W Compact Fluorescent Lamp
583PPELECTRO583project based on Photovoltaic Arrays
584PPELECTRO584project based on Photovoltaic Lighting System Based On Z-Source/Quasi-Z-Source Converter Topology
585PPELECTRO585project based on Photovoltaic Nonisolated AC-Module Applications
586PPELECTRO586project based on Photovoltaic Parallel Resonant DC-link Soft Switching Inverter using Hysteresis Current Control
587PPELECTRO587project based on PIC CONTROLLER BASED INSTANTANEOUS TECHNIQUE HEART BIT MONITOR...
588PPELECTRO588project based on POKA-YOKE 2.2 LTR DICOR Engine value height configaration ...
589PPELECTRO589project based on Portable Goliath crane
590PPELECTRO590project based on Power Electronics for Photovoltaic Energy System of an Oceanographic Buoy
591PPELECTRO591project based on Power Quality Improvement Techniques in AC-DC Cuk Converter
592PPELECTRO592project based on Precise   Accelerated Torque Control for Small Inductance Brushless DC Motor
593PPELECTRO593project based on Precise Accelerated Torque Control for Small Inductance Brushless DC Motor
594PPELECTRO594project based on Prediction or Not? An Energy-Efficient Framework for Clustering-Based Data Collection in Wireless Sensor Networks
595PPELECTRO595project based on Privacy in VoIP Networks: Flow Analysis Attacks and Defense
596PPELECTRO596project based on Problems   Incurred in a Vector-Controlled Single-Phase Induction Motor, and a Proposal   for a Vector-Controlled Two-Phase Induction Motor as a Replacement
597PPELECTRO597project based on Problems Incurred in a Vector-Controlled Single-Phase Induction Motor, and a Proposal for a Vector-Controlled Two-Phase Induction Motor as a Replacement
598PPELECTRO598project based on Project Tiltes
599PPELECTRO599project based on Project Titles
600PPELECTRO600project based on PWM Converters
601PPELECTRO601project based on Quasi-Z-Source Inverter for Photovoltaic Power Generation Systems
602PPELECTRO602project based on Real Time Vehicle Tracking System using GSM and GPS Technology- An Anti-theft Tracking System...
603PPELECTRO603project based on Real-Time Intelligent Alarm System of Driver Fatigue Based on Video Sequences
604PPELECTRO604project based on Reconfigurable   Solar Converter: A Single-Stage Power Conversion PV-Battery System
605PPELECTRO605project based on Reconfigurable Solar Converter: A Single-Stage Power Conversion PV-Battery System
606PPELECTRO606project based on Reducing Common-Mode Noise in Two-Switch Forward Converter
607PPELECTRO607project based on Regression for a Biped Robot.
608PPELECTRO608project based on Remote Unmanned Weather Stations
609PPELECTRO609project based on RFID Based Students Attendance Management System
610PPELECTRO610project based on RFID based train identification and railway crossing system...
611PPELECTRO611project based on Robotic arm,fabrication of advanced seed planting implement,FRF correction in modal testing under ac...
612PPELECTRO612project based on Robust Adaptive Controller for a Tractor–Trailer Mobile Robot
613PPELECTRO613project based on Role of High Power Semiconductor Devices in Hybrid Electric Vehicles
614PPELECTRO614project based on RSU-Based Distributed Key Management (RDKM) For Secure Vehicular Multicast Communications
615PPELECTRO615project based on Safe Maritime Autonomous Navigation With COLREGS Using Velocity Obstacles
616PPELECTRO616project based on Secret Key Establishment Using Temporally and Spatially Correlated Wireless Channel Coefficients
617PPELECTRO617project based on Secure High-Throughput Multicast Routing in Wireless Mesh Networks
618PPELECTRO618project based on Secure Multihop Network Programming with Multiple One-Way Key Chains
619PPELECTRO619project based on Self-recognition of Vehicle Position Using UHF Passive RFID Tags
620PPELECTRO620project based on Sequential Testing for Wireless Sensor Networks
621PPELECTRO621project based on Series   Asymmetrical Half-Bridge Converters With Voltage Autobalance for High   Input-Voltage Applications
622PPELECTRO622project based on Series Asymmetrical Half-Bridge Converters With Voltage Autobalance for High Input-Voltage Applications
623PPELECTRO623project based on Series resonant inverter with selective harmonic operation applied to all-metal domestic induction heating
624PPELECTRO624project based on Shared Steering Control Between a Driver and an Automation: Stability in the Presence of Driver Behavior Uncertainty
625PPELECTRO625project based on Simple Model for Chunk-Scheduling Strategies in P2P Streaming
626PPELECTRO626project based on Simulation and Hardware Implementation of Incremental
627PPELECTRO627project based on Single-Inductor Four-Switch Non-Inverting Buck-Boost DC-DC Converter
628PPELECTRO628project based on Single-Phase AC–AC Converter Based on Quasi-Z-Source Topology
629PPELECTRO629project based on Single-Phase Seven-Level Grid-Connected Inverter for Photovoltaic System
630PPELECTRO630project based on Smart  Host Microcontroller for Optimal Battery Charging in a Solar-Powered Robotic Vehicle
631PPELECTRO631project based on Soft-Switching   DC/DC Converter With a Full ZVS Range and Reduced Output Filter for   High-Voltage Applications
632PPELECTRO632project based on Soft-Switching DC/DC Converter With a Full ZVS Range and Reduced Output Filter for High-Voltage Applications
633PPELECTRO633project based on Space-Vector-Modulated   Three-Level Inverters With a Single Z-Source Network
634PPELECTRO634project based on Space-Vector-Modulated Three-Level Inverters With a Single Z-Source Network
635PPELECTRO635project based on Spatial-Temporal Coverage Optimization in Wireless Sensor Networks
636PPELECTRO636project based on Stability Analysis of a Non-Inverting Synchronous Buck-Boost Power Converter for a Solar Power Management System
637PPELECTRO637project based on Stateless Multicast Protocol for Ad-Hoc Networks
638PPELECTRO638project based on Stealthy Attacks in Wireless Ad Hoc Networks: Detection and Countermeasure
639PPELECTRO639project based on Superchunk-Based Efficient Search in P2P-VoD System
640PPELECTRO640project based on Superpixel Classification Based Optic Disc and Optic Cup Segmentation for Glaucoma Screening
641PPELECTRO641project based on Supporting Efficient and Scalable Multicasting over Mobile Ad Hoc Networks
642PPELECTRO642project based on Switched Inductor Z-Source Inverter
643PPELECTRO643project based on Switched-Capacitor/Switched-Inductor Structures for Getting Transformerless Hybrid DC–DC
644PPELECTRO644project based on Switched-Capacitor/Switched-Inductor Structures for Getting Transformerless Hybrid DC–DC PWM Converters
645PPELECTRO645project based on Switched-Inductor Quasi-Z-Source Inverter
646PPELECTRO646project based on Sybil Attacks Detection in Vehicular Ad Hoc Networks
647PPELECTRO647project based on Synchronous Buck Converter based PV Energy System for Portable Applications Chaotic Search
648PPELECTRO648project based on Synchronous-Reference-Frame-Based   Control of Switched Boost Inverter for Standalone DC Nanogrid Applications
649PPELECTRO649project based on Synchronous-Reference-Frame-Based Control of Switched Boost Inverter for Standalone DC Nanogrid Applications
650PPELECTRO650project based on Synthesis of Multiple-Input DC/DC Converters
651PPELECTRO651project based on Synthesizable   Integrated Circuit and System Design for Solar Chargers
652PPELECTRO652project based on Synthesizable Integrated Circuit and System Design for Solar Chargers
653PPELECTRO653project based on System for hazardous gas, Human detection and temperature monitor control...
654PPELECTRO654project based on System in High-Voltage Application
655PPELECTRO655project based on Tank-Like Module-Based Climbing Robot Using Passive Compliant Joints
656PPELECTRO656project based on The   TAIPEI Rectifier—A New Three-Phase Two-Switch ZVS PFC DCM Boost Rectifier
657PPELECTRO657project based on The Asymptotic Behavior of Minimum Buffer Size Requirements in
658PPELECTRO658project based on The Comparative Analysis of MultiCarrier Control Techniques For SPWM Controlled Cascaded H-Bridge Multilevel Inverter
659PPELECTRO659project based on The Limit of Information Propagation Speed in Large-Scale Multihop Wireless Networks
660PPELECTRO660project based on The TAIPEI Rectifier—A New Three-Phase Two-Switch ZVS PFC DCM Boost Rectifier
661PPELECTRO661project based on Three–leg power converter topology for a battery charger
662PPELECTRO662project based on Throughput Optimization in Mobile Backbone Networks
663PPELECTRO663project based on Time-Domain Signal Detection Based on Second-Order Statistics for MIMO-OFDM Systems
664PPELECTRO664project based on Touch Screen Based Temperature Monitoring and Control System with Graphical LCD....
665PPELECTRO665project based on Towards a New Modality-Independent Interface for a Robotic Wheelchair
666PPELECTRO666project based on Traffic Sign Recognition for Computer Vision Project-Based Learning
667PPELECTRO667project based on Traffic Violation Detection Using Multiple Trajectories Evaluation of Vehicles
668PPELECTRO668project based on Transformerless Single-Phase Multilevel-Based Photovoltaic Inverter
669PPELECTRO669project based on Transient Analysis of IEEE 802.15.4 Sensor Networks
670PPELECTRO670project based on Trans-Z-Source Inverters
671PPELECTRO671project based on Triple Loop   Modulation (TLM) for High Reliability and Efficiency in a Power Factor   Correction (PFC) System
672PPELECTRO672project based on Triple Loop Modulation (TLM) for High Reliability and Efficiency in a Power Factor Correction (PFC) System
673PPELECTRO673project based on Unterminated   Small-Signal Behavioral Model of DC–DC Converters
674PPELECTRO674project based on Unterminated Small-Signal Behavioral Model of DC–DC Converters
675PPELECTRO675project based on Using Link Gradients to Predict the Impact of Network Latency on Multitier Applications
676PPELECTRO676project based on Vertical-Edge-Based Car-License-Plate Detection Method
677PPELECTRO677project based on Wireless Black Box Using GPS Tracking for Accidental Monitoring of Vehicles...
678PPELECTRO678project based on Wireless Fountain Coding with IEEE 802.11e Block ACK for Media Streaming in Wireline-cum-WiFi Network: A Performance Study
679PPELECTRO679project based on Wireless Pick n Place Robot
680PPELECTRO680project based on Wireless Sensor Node to Detect Hazardous Gas Pipeline ...
681PPELECTRO681project based on Wireless Under Water Mobile Robot System Based on ZigBee
682PPELECTRO682project based on Wireless Vision-based stabilization of Indoor Micro Helicopter
683PPELECTRO683project based on With a Common Active Clamp
684PPELECTRO684project based on with Constant On-Time (COT) Control
685PPELECTRO685project based on Zigbee based wireless electronic notice board with multipoint receiver...
686PPELECTRO686project based on Z-SOURCE INVERTER BASED PHOTOVOLTAIC POWER GENERATION
687PPELECTRO687project based on Γ-Z-Source   Inverters