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.
- 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
SR | Code | Project name |
---|---|---|
1 | PPELECTRO001 | project based on A WIFI based Smart Wireless Sensor Network for Monitoring an Agricultural Environment |
2 | PPELECTRO002 | project based on AC/DC/Stepper Motor Closed Loop Speed Control |
3 | PPELECTRO003 | project based on Accelerometer (Gyroscope) Controlled Robot |
4 | PPELECTRO004 | project based on Advanced GPS based navigator for illiterates |
5 | PPELECTRO005 | project based on Advanced vehicle tracking and automatic crash notification using GPS and GSM technology with Location Name as SMS |
6 | PPELECTRO006 | project based on Android controlled scrolling LED message display |
7 | PPELECTRO007 | project based on Android Smart Phone operated Robot with bluetooth control |
8 | PPELECTRO008 | project based on Android speech recognition based Home automation |
9 | PPELECTRO009 | project based on Android speech recognition based Lamp dimmer |
10 | PPELECTRO010 | project based on ARM7 Cortex M3 based USB Host Data Logger |
11 | PPELECTRO011 | project based on Automatic Closed loop tire pressure monitoring and control system |
12 | PPELECTRO012 | project based on Automatic Intelligent Plant Watering System |
13 | PPELECTRO013 | project based on Automatic Intelligent Plant Watering System (Microcontroller + Rain Sensor) |
14 | PPELECTRO014 | project based on Automatic Room Illumination Control (Microcontroller Board + Sensors) |
15 | PPELECTRO015 | project based on Automatic Rotor Resistance Controller using Microcontroller |
16 | PPELECTRO016 | project based on Automatic Temperature Measurement and Control (Microcontroller Board + Sensors + LCD) |
17 | PPELECTRO017 | project based on Autonomous Robot with artificial vision for obstacle detection |
18 | PPELECTRO018 | project based on Bluetooth devices based access control system without built-in application |
19 | PPELECTRO019 | project based on CAN communication for vehicles |
20 | PPELECTRO020 | project based on Closed loop DC Motor Speed Controller (Microcontroller Board + Sensors + LCD + DC Motor) |
21 | PPELECTRO021 | project based on Construction of Intelligent Digital weighing Machine |
22 | PPELECTRO022 | project based on Construction of microcontroller based Touchscreen Mobile Phone with Password protected features |
23 | PPELECTRO023 | project based on Construction of Touchscreen based portable Digital Clock |
24 | PPELECTRO024 | project based on Contact less Motor speed monitoring on Graphical display with high and low speed alerts |
25 | PPELECTRO025 | project based on Data logger for energy meter with time and KWH readings |
26 | PPELECTRO026 | project based on DC Motor Speed and direction control over GSM Mobile/Modem |
27 | PPELECTRO027 | project based on DC Motor Speed and direction control using RF/IR/Zigbee technologies |
28 | PPELECTRO028 | project based on DC Voltage and Current Meter With LCD Display |
29 | PPELECTRO029 | project based on DC Voltage and Current Meter With PC Display |
30 | PPELECTRO030 | project based on Design and Construction of MEMS Accelerometer based Tilt Operated touch free mobile phone |
31 | PPELECTRO031 | project based on Digital Compass and GPS based Navigation System |
32 | PPELECTRO032 | project based on Digital Frequency Meter (Microcontroller Board + Sensors + LCD) |
33 | PPELECTRO033 | project based on Digital Multimeter (Microcontroller Board + Sensors + LCD) |
34 | PPELECTRO034 | project based on Digital Tachometer (Non-contact) |
35 | PPELECTRO035 | project based on Digital Vehicle Dash Board |
36 | PPELECTRO036 | project based on Digital vehicle speedometer with password enabled speed limit setting |
37 | PPELECTRO037 | project based on Digital Voltmeter (Microcontroller Board + Sensors + LCD) |
38 | PPELECTRO038 | project based on DS1307 and Microcontroller based TV remote controlled Digital Clock |
39 | PPELECTRO039 | project based on DTMF mobile phone controlled dam water gates controlling system with high-level protection |
40 | PPELECTRO040 | project based on Dual GSM Modems based irrigation water pump controller for illiterates |
41 | PPELECTRO041 | project based on Electrical Data (voltage, current, frequency etc |
42 | PPELECTRO042 | project based on Electrical Data(voltage,current,frequency etc |
43 | PPELECTRO043 | project based on Evaluation of the tongue drive system by individuals with high-level spinal cord injury (IEEE 2009) |
44 | PPELECTRO044 | project based on Frequency Locked Loop DC Motor Speed Control (Microcontroller Board + Sensors + LCD + DC Motor) |
45 | PPELECTRO045 | project based on Function Generator Using Microcontroller |
46 | PPELECTRO046 | project based on Google Android operated Smart Home |
47 | PPELECTRO047 | project based on GPRS based real-time device status logger into sooxma website |
48 | PPELECTRO048 | project based on GPS & GSM Based Car Security System |
49 | PPELECTRO049 | project based on GPS & GSM based Human Health Monitoring and Alert System with patient’s location on earth |
50 | PPELECTRO050 | project based on GPS and Graphical display based tourist-guiding system with Touchscreen keyboard input for dynamic location recording |
51 | PPELECTRO051 | project based on GPS and GSM based real-time vehicle tracking on GoogleEarth (with two GSM Modems) |
52 | PPELECTRO052 | project based on GPS based asset/vehicle/animal/child tracking system |
53 | PPELECTRO053 | project based on GPS based border alert system for fishermen |
54 | PPELECTRO054 | project based on GPS based navigator with location display on Graphical LCD |
55 | PPELECTRO055 | project based on GPS based office cab monitoring system very useful for the safety of female employees |
56 | PPELECTRO056 | project based on GPS based station name announcement and display system for Trains/buses |
57 | PPELECTRO057 | project based on GPS based travel assistant for blind people |
58 | PPELECTRO058 | project based on GPS based universal clock |
59 | PPELECTRO059 | project based on GPS based vehicle travel location-logging system |
60 | PPELECTRO060 | project based on GPS Navigator/Logger (Microcontroller Board + Memory Card +PC Software) |
61 | PPELECTRO061 | project based on GPS+GSM based Realtime Bus/Train Location Finder and display on Earth's Map |
62 | PPELECTRO062 | project based on Graphical LCD and Memory stick (MMC/SD card) based textbook reading system |
63 | PPELECTRO063 | project based on GSM Based Automatic Energy Meter Reading System |
64 | PPELECTRO064 | project based on GSM Based Automatic Irrigation Water Controller System |
65 | PPELECTRO065 | project based on GSM based digital Notice board with display on Monitor or LCD display |
66 | PPELECTRO066 | project based on GSM based Highway vehicle traffic monitoring system |
67 | PPELECTRO067 | project based on GSM Based Home Security System |
68 | PPELECTRO068 | project based on GSM based instantaneous vehicle registration details extraction system very useful for Traffic police |
69 | PPELECTRO069 | project based on GSM Based Irrigation System |
70 | PPELECTRO070 | project based on GSM based Irrigation Water Pump Controller for Illiterates |
71 | PPELECTRO071 | project based on GSM based SCADA (Supervisory Control and Data Acquisition) implementation |
72 | PPELECTRO072 | project based on GSM Mobile phone controlled intelligent Robot |
73 | PPELECTRO073 | project based on GSM+GPS based school kids tracking system |
74 | PPELECTRO074 | project based on Hazardous chemical valve control system with stepper motor and line of site remote control |
75 | PPELECTRO075 | project based on Head movement based voice enabled wireless |
76 | PPELECTRO076 | project based on High voltage fuse blown indicator with Voice based announcement system |
77 | PPELECTRO077 | project based on Image based password authentication for Illiterates with Touchscreen |
78 | PPELECTRO078 | project based on Implementation of location based advertisement system using GPS and Graphical LCD |
79 | PPELECTRO079 | project based on Implementation of wireless sensors network for Wild Fire monitoring system |
80 | PPELECTRO080 | project based on Infrared (IR) remote controlled Muscle Stimulator with duration and intensity control |
81 | PPELECTRO081 | project based on Innovative keyboard construction with only one input pin |
82 | PPELECTRO082 | project based on Intelligent mobile phone with GPS enabled features |
83 | PPELECTRO083 | project based on Intelligent Robot controlled by Wi-Fi communication |
84 | PPELECTRO084 | project based on Interfacing Microcontroller to Cellphone graphical display |
85 | PPELECTRO085 | project based on IR Remote Stepper Motor Controller |
86 | PPELECTRO086 | project based on Liquid dispensing system with adjustable quantity for industrial use |
87 | PPELECTRO087 | project based on Live Human being detection wireless remote controlled Robot |
88 | PPELECTRO088 | project based on Location driven car music player |
89 | PPELECTRO089 | project based on MEMS Accelerometer based digital photo frame with automatic position/view adjustment system (similar to digital cameras) |
90 | PPELECTRO090 | project based on MEMS Accelerometer based tilt operated Graphical LCD and memory stick based textbook reading system |
91 | PPELECTRO091 | project based on MEMS Accelerometer based Tilt Operated wireless phonebook copying to PC |
92 | PPELECTRO092 | project based on Micro controller based Wireless matchbox with digital lantern |
93 | PPELECTRO093 | project based on Micro Electro Mechanical Sensor (MEMS) Accelerometer/Gyroscope based self-balancing robot |
94 | PPELECTRO094 | project based on Microcontroller and GPS based geographical map drawing instrument |
95 | PPELECTRO095 | project based on Microcontroller and RF transceiver based chatting application with Touchscreen keyboard implementation |
96 | PPELECTRO096 | project based on Microcontroller and Touchscreen based wireless library book catalog system |
97 | PPELECTRO097 | project based on Microcontroller and Triac based realtime temperature monitoring and control |
98 | PPELECTRO098 | project based on Microcontroller and voice based alerting system for blind people with GPS enabled location identification |
99 | PPELECTRO099 | project based on Microcontroller based automatic liquid dispensing system |
100 | PPELECTRO100 | project based on Microcontroller based Automatic Railway Gate Control System |
101 | PPELECTRO101 | project based on Microcontroller based digital clock with Graphical LCD and Sanskrit font (or Any regional font) Numbers |
102 | PPELECTRO102 | project based on Microcontroller based dual Lithium-ion battery charger with automated charge and discharge cycles |
103 | PPELECTRO103 | project based on Microcontroller based Generator/Alternator Control and Monitoring System |
104 | PPELECTRO104 | project based on Microcontroller based GPS Data Logger into MMC/SD Card |
105 | PPELECTRO105 | project based on Microcontroller based GPS Navigator with Google Earth Interface and MMC/SD 1GB Card Data Logging |
106 | PPELECTRO106 | project based on Microcontroller based Hardware(USB or Serial) key implementation for any software based applications |
107 | PPELECTRO107 | project based on Microcontroller based Heartbeat Monitor with Display On Computer |
108 | PPELECTRO108 | project based on Microcontroller based Heartbeat Monitor with LCD Display |
109 | PPELECTRO109 | project based on Microcontroller based online examination system with dynamic questions |
110 | PPELECTRO110 | project based on Microcontroller based refrigeration control system |
111 | PPELECTRO111 | project based on Microcontroller based Single phasing preventor |
112 | PPELECTRO112 | project based on Microcontroller based Substation Monitoring and control System |
113 | PPELECTRO113 | project based on Microcontroller based Temperature Measurement and Relay Control with PC Interface |
114 | PPELECTRO114 | project based on Microcontroller Based Temperature Monitoring & Control |
115 | PPELECTRO115 | project based on Microcontroller based virtual boundary/fencing for Wild Animals |
116 | PPELECTRO116 | project based on Microcontroller Digital Access Control System |
117 | PPELECTRO117 | project based on Microcontroller to Microcontroller Infrared based communication |
118 | PPELECTRO118 | project based on Microcontroller to PC Iteraction Using Java Applet based Application |
119 | PPELECTRO119 | project based on Microcontroller to PC Iteraction Using VB GUI Application |
120 | PPELECTRO120 | project based on Microcontroller to PC Iteraction Using VC++ GUI Application |
121 | PPELECTRO121 | project based on Microcontroller to PC USB Interface With Device Control + PC Software ( |
122 | PPELECTRO122 | project based on Military persons training system that monitors the speed at which they move and records the calculated traveled distance with the time |
123 | PPELECTRO123 | project based on Mobile phone controlled four-legged walking robot with speed and direction control |
124 | PPELECTRO124 | project based on Mobile phone controlled Street Light monitoring and control system |
125 | PPELECTRO125 | project based on Mobile technology (GSM) based remote monitoring and control of digital Energy meter |
126 | PPELECTRO126 | project based on Motor Speed Monitoring over GSM Mobile |
127 | PPELECTRO127 | project based on Multi Channel Frequency Measurement with LCD Display |
128 | PPELECTRO128 | project based on Multi Channel Frequency Measurement with PC Display |
129 | PPELECTRO129 | project based on Multi Channle Voltage Measurement with LCD Display |
130 | PPELECTRO130 | project based on Multi Channle Voltage Measurement with PC Display |
131 | PPELECTRO131 | project based on Password enabled pre-paid liquid/milk dispensing system |
132 | PPELECTRO132 | project based on Password protected GSM based Device control |
133 | PPELECTRO133 | project based on Password protected IR based Device Control |
134 | PPELECTRO134 | project based on PC Controlled Analog Devices |
135 | PPELECTRO135 | project based on PC Controlled Digital Devices |
136 | PPELECTRO136 | project based on PIR + GSM based Home Security System |
137 | PPELECTRO137 | project based on PIR based energy conservation system for corporate Computers and lighting system |
138 | PPELECTRO138 | project based on PIR Sensor based Intrusion Detection System |
139 | PPELECTRO139 | project based on PWM DC Motor Speed Controller (Microcontroller Board + Sensors + LCD + DC Motor) |
140 | PPELECTRO140 | project based on Radio Frequency based remote controlled robot with wireless video camera mounted on it |
141 | PPELECTRO141 | project based on Radio Frequency based wireless remote controlled digital camera with high power focus LED |
142 | PPELECTRO142 | project based on Radio Frequency wireless remote controlled digital camera with high power LED based focusing light |
143 | PPELECTRO143 | project based on RC5 IR Based Remote Device Switching (IR Remote + Microcontroller + Device Relays) |
144 | PPELECTRO144 | project based on Real-time Heartbeat Monitoring system with display on Graphical LCD and Voice based alerting system |
145 | PPELECTRO145 | project based on Real-time SCADA (Microcontroller Board + Sensors + PC Software) |
146 | PPELECTRO146 | project based on Remote control of critical software applications with mobile phone |
147 | PPELECTRO147 | project based on Remote Control of PC/Computer using GSM Modem or Cell Phone |
148 | PPELECTRO148 | project based on RF Control Of Induction/DC/Stepper Motor & Other Industrial Loads |
149 | PPELECTRO149 | project based on RF transceiver (Zigbee/X-Bee) based energy meter monitoring system |
150 | PPELECTRO150 | project based on RFID and GSM based intelligent courier/letter collection box |
151 | PPELECTRO151 | project based on RFID and GSM based intelligent letterbox (mailbox) |
152 | PPELECTRO152 | project based on RFID/Mifare/Smart Card based security access control systems |
153 | PPELECTRO153 | project based on SCADA system design and construction for real-time electrical parameter monitoring and control |
154 | PPELECTRO154 | project based on Smartphone blutooth controlled Robot |
155 | PPELECTRO155 | project based on SMS based remote SIM card’s address book access system |
156 | PPELECTRO156 | project based on Soil Moisture sensor based intelligent irrigation water pump controlling system with GSM technology |
157 | PPELECTRO157 | project based on Solar based air compressor pump for car bike tire inflate |
158 | PPELECTRO158 | project based on Solar data logger into MMC/SD Memory Card |
159 | PPELECTRO159 | project based on Speaking microcontroller for deaf and dumb |
160 | PPELECTRO160 | project based on Standalone Heartbeat Data Logger (MCU+SD/MMC 1GB Card+Sensors) |
161 | PPELECTRO161 | project based on Telugu Tutor with dynamic text and Images identification for elementary school kids |
162 | PPELECTRO162 | project based on Temperature Analyzers with computerized graphical image |
163 | PPELECTRO163 | project based on Temperature Measurement over GSM Mobile |
164 | PPELECTRO164 | project based on The controls include taking picture snaps, switching on the flash light, changing camera direction using stepper motor etc |
165 | PPELECTRO165 | project based on The data for the duration upto One Month can be logged continuously |
166 | PPELECTRO166 | project based on The sensors check blood density on the patient's fingertips in order to measure heart rate |
167 | PPELECTRO167 | project based on This gives the visual and voice alerts to users crossing the rail path |
168 | PPELECTRO168 | project based on This project uses infrared/laser sensor system to count the number of vehicles passing in both the directions |
169 | PPELECTRO169 | project based on This temperature is processed by microcontroller and sent to the user over GSM mobile |
170 | PPELECTRO170 | project based on Timer based automatic power cutoff for industrial sealing/packaging machines |
171 | PPELECTRO171 | project based on Timer based Electrical Oven temperature monitoring and control for Metal Industries |
172 | PPELECTRO172 | project based on Touch Screen based digital devices control system |
173 | PPELECTRO173 | project based on Touch Screen GLCD based Digital Devices Control System |
174 | PPELECTRO174 | project based on Touchscreen based Nurse/attendant calling system for physically impaired |
175 | PPELECTRO175 | project based on Touchscreen based Ordering System for Restaurants |
176 | PPELECTRO176 | project based on Touchscreen based temperature monitoring and control system with graphical LCD |
177 | PPELECTRO177 | project based on Touchscreen based wireless communication assistant for dumb/illiterates in Airlines |
178 | PPELECTRO178 | project based on Touchscreen based Wireless Language Translator in Airlines using Zigbee |
179 | PPELECTRO179 | project based on Touchscreen controlled lamp dimmer for next generation apartments |
180 | PPELECTRO180 | project based on Touchscreen controlled motor speed and direction controlling system |
181 | PPELECTRO181 | project based on Touchscreen operated liquid dispensing system |
182 | PPELECTRO182 | project based on Travel assistant for blind with dynamic user input for location based alerts |
183 | PPELECTRO183 | project based on Triac and optically isolated diac based electrical oven temperature monitoring and controlling system with zero-crossing detector |
184 | PPELECTRO184 | project based on uC based Closed Loop Temperature Control |
185 | PPELECTRO185 | project based on uC based Heartbeat Monitoring over GSM Mobile |
186 | PPELECTRO186 | project based on uC based MMC/SD Memory Card Interfaceing with FAT File System |
187 | PPELECTRO187 | project based on uC based MMC/SD Memory Card Interfacing |
188 | PPELECTRO188 | project based on uC based Multiple Device Control based on Change in Input Frequency |
189 | PPELECTRO189 | project based on uC based Real Time Clock and Multiple Device control based on Time and Date |
190 | PPELECTRO190 | project based on uC based Real Time Clock with (2x16) LCD Display |
191 | PPELECTRO191 | project based on uC based Solar Tracker with Stepper Motor Control Solar Tracker |
192 | PPELECTRO192 | project based on uC based Wireless Temperature Measurement |
193 | PPELECTRO193 | project based on uC based Wireless(Radio/IR) Heartbeat Monitor |
194 | PPELECTRO194 | project based on uC to PC Serial Interface With Device Control + PC Software ( |
195 | PPELECTRO195 | project based on Universal Remote Control with Haptic Interface |
196 | PPELECTRO196 | project based on UPS battery monitoring system over GSM for high availability systems (banking/finance/medical etc) |
197 | PPELECTRO197 | project based on USB Memory Stick Data Logger |
198 | PPELECTRO198 | project based on Using Magneto-Inductive Sensors to Detect Tongue Position in a Wireless Assistive Technology for People with Severe Disabilities (IEEE 2007) |
199 | PPELECTRO199 | project based on Using Unconstrained Tongue Motion as an Alternative Control Mechanism for Wheeled Mobility (IEEE 2009) |
200 | PPELECTRO200 | project based on Virtual distance measuring tape with Graphical LCD |
201 | PPELECTRO201 | project based on Virtual wireless dancing bells for classical dancers |
202 | PPELECTRO202 | project based on Voice enabled devices switching for visually impaired |
203 | PPELECTRO203 | project based on Voice Operated Guidance Systems for Vision Impaired People |
204 | PPELECTRO204 | project based on Voice operated Intelligent Fire extinguisher vehicle |
205 | PPELECTRO205 | project based on Voltage/Current/Frequency Reading with IR Remote |
206 | PPELECTRO206 | project based on VRBot and EasyVR based Interactive Speech Recognition System |
207 | PPELECTRO207 | project based on Wearable technology for wireless gadgets control |
208 | PPELECTRO208 | project based on WiFi and PC based advanced Home Automation system |
209 | PPELECTRO209 | project based on Wifi and TFT Color LCD based wireless Home automation |
210 | PPELECTRO210 | project based on Wifi networking based Industrial automation |
211 | PPELECTRO211 | project based on Wireless control of powered wheelchairs with tongue motion using tongue drive assistive technology (IEEE 2008) |
212 | PPELECTRO212 | project based on Wireless Digital Camera Controller |
213 | PPELECTRO213 | project based on Wireless Energy Meter monitoring system with automatic tariff calculation |
214 | PPELECTRO214 | project based on Wireless energy meter monitoring system with automatic tariff calculation on handheld |
215 | PPELECTRO215 | project based on Wireless GoogleEarth control system at Railway/Bus Stations for tourist’s route map guidance |
216 | PPELECTRO216 | project based on Wireless Heartbeat Monitoring and Alert system |
217 | PPELECTRO217 | project based on Wireless Heartbeat Sensor (GSM based) |
218 | PPELECTRO218 | project based on Wireless PC based multi-patient health monitoring system for Corporate Hospitals |
219 | PPELECTRO219 | project based on Wireless SCADA |
220 | PPELECTRO220 | project based on Wireless Speedo meter for boat/ship with speed and location limit alerts |
221 | PPELECTRO221 | project based on Wireless Stepper Motor Controller (Radio Rx/Tx + Stepper Motor + Microcontroller) |
222 | PPELECTRO222 | project based on Wireless touchscreen based multi-patient health monitoring system for corporate hospitals |
223 | PPELECTRO223 | project based on Zigbee and Touchscreen Controlled PC |
224 | PPELECTRO224 | project based on Zigbee based Wireless Energy Meter reading logging system on PC |
225 | PPELECTRO225 | project based on Zigbee based Wireless Energy Meter reading system |
226 | PPELECTRO226 | project based on A Current Controller Design for Current Source Inverter-Fed AC Machine Drive System |
227 | PPELECTRO227 | project based on A DC–DC Converter Based on the Three-State Switching Cell for High Current and Voltage Step-Down Applications |
228 | PPELECTRO228 | project based on A High Step-Down Transformerless Single-Stage Single-Switch AC/DC Converter |
229 | PPELECTRO229 | project based on A High Step-Up Converter With a Voltage Multiplier Module for a Photovoltaic System |
230 | PPELECTRO230 | project based on A High-Performance SPWM Controller for Three-Phase UPS Systems Operating Under Highly Nonlinear Loads |
231 | PPELECTRO231 | project based on A New Control Method of Interleaved Single-Stage Flyback AC–DC Converter for Outdoor LED Lighting Systems |
232 | PPELECTRO232 | project based on A New DC Anti-Islanding Technique of Electrolytic Capacitor-Less Photovoltaic Interface in DC Distribution Systems |
233 | PPELECTRO233 | project based on A Single-Phase Grid-Connected Fuel Cell System Based on a Boost-Inverter |
234 | PPELECTRO234 | project based on A Three-Level Converter With Reduced Filter Size Using Two Transformers and Flying Capacitors |
235 | PPELECTRO235 | project based on A BIDIRECTIONAL UPS INVERTER UTILISING HIGH FREQUENCY CENTER-TAPPED TRANSFORMER |
236 | PPELECTRO236 | project based on A Blind CFO Estimator Based on Smoothing Power Spectrum for OFDM Systems |
237 | PPELECTRO237 | project based on A Compact and Compliant External Pipe-Crawling Robot |
238 | PPELECTRO238 | project based on A Comparison of Symmetrical and Asymmetrical Three-Phase H-Bridge Multilevel Inverter for DTC Induction Motor Drives |
239 | PPELECTRO239 | project based on A Control-Theoretic Approach to Distributed Optimal Configuration of 802.11 WLANs |
240 | PPELECTRO240 | project based on A Current Controller Design for Current Source Inverter-Fed AC Machine Drive System |
241 | PPELECTRO241 | project based on A DATA EMBEDDING METHOD USING BPCS PRINCIPLE WITH NEW COMPLEXITY MEASURES ... |
242 | PPELECTRO242 | project based on A DC–DC Converter Based on the Three-State Switching Cell for High Current and Voltage Step-Down Applications |
243 | PPELECTRO243 | project based on A Finite-Time Reputation System for Cooperation in Wireless Ad |
244 | PPELECTRO244 | project based on A Follower Robot Using Object Recognition & Machine Vision... |
245 | PPELECTRO245 | project based on A High Step-Down Transformerless Single-Stage Single-Switch AC/DC Converter |
246 | PPELECTRO246 | project based on A High Step-Up Converter With a Voltage Multiplier Module for a Photovoltaic System |
247 | PPELECTRO247 | project based on A High-Efficiency Grid-Tie Battery Energy Storage System |
248 | PPELECTRO248 | project based on A High-Performance SPWM Controller for Three-Phase UPS Systems Operating Under Highly Nonlinear Loads |
249 | PPELECTRO249 | project based on A Hybrid Cascade Converter Topology With Series-Connected Symmetrical and Asymmetrical Diode-Clamped H-Bridge Cells |
250 | PPELECTRO250 | project based on A Hybrid Three Phase Current Source Rectifier For High Power Application |
251 | PPELECTRO251 | project based on A Hybrid Wind-Solar Energy System: A New Rectifier Stage Topology |
252 | PPELECTRO252 | project based on A Medium Access Control Scheme for Wireless LANs with Constant-Time Contention |
253 | PPELECTRO253 | project based on A Modified SEPIC Converter for High-Power-Factor Rectifier and Universal Input Voltage Applications |
254 | PPELECTRO254 | project based on A Modular Grid-Connected Photovoltaic Generation System Based on DC Bus |
255 | PPELECTRO255 | project based on A Multicarrier Pulse Width Modulator for the Auxiliary Converter and the Diode Rectifier |
256 | PPELECTRO256 | project based on A New Approach to Achieve Maximum Power Point Tracking for PV System With a Variable Inductor |
257 | PPELECTRO257 | project based on A New Control Method of Interleaved Single-Stage Flyback AC–DC Converter for Outdoor LED Lighting Systems |
258 | PPELECTRO258 | project based on A New DC Anti-Islanding Technique of Electrolytic Capacitor-Less Photovoltaic Interface in DC Distribution Systems |
259 | PPELECTRO259 | project based on A New ZVT-ZCT-PWM DC–DC Converter |
260 | PPELECTRO260 | project based on A Novel Control Scheme of Synchronous Buck Converter for ZVS in Light-Load Condition |
261 | PPELECTRO261 | project based on A Novel Detection Approach Using Bio-Inspired Vision for Enhanced Object Tracking in Video |
262 | PPELECTRO262 | project based on A Novel High Step-Up DC–DC Converter for a Microgrid System |
263 | PPELECTRO263 | project based on A Novel Power Management Control Strategy for Stand-alone Photovoltaic Power System-Matlab |
264 | PPELECTRO264 | project based on A Novel Single-Stage High-Power-Factor Electronic Ballast With Boost Topology for Multiple Fluorescent Lamps |
265 | PPELECTRO265 | project based on A Novel Surgical Manipulator with Workspace-Conversion Ability for Tele surgery. |
266 | PPELECTRO266 | project based on A Passive Soft-Switching Snubber for PWM Inverters |
267 | PPELECTRO267 | project based on A Policy Enforcing Mechanism for Trusted Ad Hoc Networks |
268 | PPELECTRO268 | project based on A Practical Adaptive Pacing Scheme for TCP in Multihop Wireless Networks |
269 | PPELECTRO269 | project based on A Privacy-Preserving Location Monitoring System for Wireless Sensor Networks |
270 | PPELECTRO270 | project based on A Real time Wireless Brain Computer Interface System for Drowsiness Detection Using MATLAB... |
271 | PPELECTRO271 | project based on A Region-Based Clustering Mechanism for Channel Access in Vehicular Ad Hoc Networks |
272 | PPELECTRO272 | project based on A Review of Various Carrier based PWM Methods for |
273 | PPELECTRO273 | project based on A Robot that Approaches Pedestrians |
274 | PPELECTRO274 | project based on A Security Architecture Achieving Anonymity and Traceability in Wireless Mesh Networks |
275 | PPELECTRO275 | project based on A Simple Critical-Load-Based CAC Scheme for IEEE 802.11 DCF Networks |
276 | PPELECTRO276 | project based on A Simple Digital Autotuning For Analog Controller in SMPS |
277 | PPELECTRO277 | project based on A Single-Input Space Vector for Control of AC–DC Converters Under Generalized Unbalanced Operating Conditions |
278 | PPELECTRO278 | project based on A Single-Phase Grid-Connected Fuel Cell System Based on a Boost-Inverter |
279 | PPELECTRO279 | project based on A Soft Switching Scheme for Multiphase DC/Pulsating-DC Converter for Three-Phase High-Frequency-Link Pulsewidth Modulation(PWM) Inverter |
280 | PPELECTRO280 | project based on A Tactical Information Management System for Unmanned Vehicles Using Vehicular Ad-hoc Networks |
281 | PPELECTRO281 | project based on A Three-Level Converter With Reduced Filter Size Using Two Transformers and Flying Capacitors |
282 | PPELECTRO282 | project based on A Three-Phase Unity Power Factor Single-Stage AC–DC Converter Based on an Interleaved Flyback Topology |
283 | PPELECTRO283 | project based on A Unified Approach to Optimizing Performance in Networks Serving Heterogeneous Flows |
284 | PPELECTRO284 | project based on Adaptive Dead-Time Compensation for Grid-Connected PWM Inverters of Single-Stage PV Systems |
285 | PPELECTRO285 | project based on Adaptive Theory-Based Improved Linear Sinusoidal Tracer Control Algorithm for DSTATCOM |
286 | PPELECTRO286 | project based on Adaptive Voltage Control of the DC/DC Boost Stage in PV Converters With Small Input Capacitor |
287 | PPELECTRO287 | project based on Adaptive Dead-Time Compensation for Grid-Connected PWM Inverters of Single-Stage PV Systems |
288 | PPELECTRO288 | project based on Adaptive PD Controller Modeled via Support Vector |
289 | PPELECTRO289 | project based on Adaptive Routing in Dynamic Ad Hoc Networks |
290 | PPELECTRO290 | project based on Adaptive Theory-Based Improved Linear Sinusoidal Tracer Control Algorithm for DSTATCOM |
291 | PPELECTRO291 | project based on Adaptive Voltage Control of the DC/DC Boost Stage in PV Converters With Small Input Capacitor |
292 | PPELECTRO292 | project based on Advanced Traffic & Emergency Vehicle Pass-By Control Using RFID... |
293 | PPELECTRO293 | project based on An Adaptive Output Current Estimation Circuit for a Primary-Side Controlled LED Driver |
294 | PPELECTRO294 | project based on An Optimal Control Method for Photovoltaic Grid-Tied-Interleaved Flyback Microinverters to Achieve High Efficiency in Wide Load Range |
295 | PPELECTRO295 | project based on An Adaptive Output Current Estimation Circuit for a Primary-Side Controlled LED Driver |
296 | PPELECTRO296 | project based on An Analysis of IEEE 802.11 DCF and Its Application to Energy-Efficient Relaying in Multi-Hop Ad-Hoc Networks |
297 | PPELECTRO297 | project based on An Attribute-Based Access Control System for Emergency Services over Vehicular Ad Hoc Networks |
298 | PPELECTRO298 | project based on An Autonomous Robot Based on a wheelchair |
299 | PPELECTRO299 | project based on An Efficient AC–DC Step-Up Converter for Low-Voltage Energy Harvesting |
300 | PPELECTRO300 | project based on An Efficient High-Step-Up Interleaved DC–DC Converter |
301 | PPELECTRO301 | project based on An Improved Sliding Mode Controller for Boost Converter in Solar Energy System |
302 | PPELECTRO302 | project based on An Inrush Mitigation Technique of Load Transformers for the Series Voltage Sag Compensator |
303 | PPELECTRO303 | project based on An Integrated Health Management Process for Automotive Cyber-Physical Systems |
304 | PPELECTRO304 | project based on An Islanding Detection Method for a Grid-Connected System Based on the Goertzel Algorithm |
305 | PPELECTRO305 | project based on An Optimal Algorithm for Relay Node Assignment in Cooperative Ad Hoc Networks |
306 | PPELECTRO306 | project based on An Optimal Control Method for Photovoltaic Grid-Tied-Interleaved Flyback Microinverters to Achieve High Efficiency in Wide Load Range |
307 | PPELECTRO307 | project based on Analysis and Comparison of Medium Voltage High Power DC/DC Converters for Offshore Wind Energy Systems |
308 | PPELECTRO308 | project based on Analysis and Design of a Push–Pull Quasi-Resonant Boost Power Factor Corrector |
309 | PPELECTRO309 | project based on Analysis of a Fifth-Order Resonant Converter for High-Voltage DC Power Supplies |
310 | PPELECTRO310 | project based on Analysis and Comparison of Medium Voltage High Power DC/DC Converters for Offshore Wind Energy Systems |
311 | PPELECTRO311 | project based on Analysis and Design of a Push–Pull Quasi-Resonant Boost Power Factor Corrector |
312 | PPELECTRO312 | project based on Analysis and Implementation of a Hybrid High-Power-Factor Three-Phase Unidirectional Rectifier |
313 | PPELECTRO313 | project based on Analysis of a Fifth-Order Resonant Converter for High-Voltage DC Power Supplies |
314 | PPELECTRO314 | project based on Analysis of Boundary Control for Buck Converters With Instantaneous Constant-Power Loads |
315 | PPELECTRO315 | project based on Analysis of Cascaded H Bridge Multilevel Inverters with |
316 | PPELECTRO316 | project based on Analysis of two resonant converters with the same converter leg |
317 | PPELECTRO317 | project based on Analysis, Design, and Experimental Results of a Novel Soft-Switching Snubberless Current-Fed Half-Bridge Front-End Converter-Based PV Inverter |
318 | PPELECTRO318 | project based on Analysis, design and experimental results of a floating-output |
319 | PPELECTRO319 | project based on Analysis, Design, and Experimental Results of a Novel Soft-Switching Snubberless Current-Fed Half-Bridge Front-End Converter-Based PV Inverter |
320 | PPELECTRO320 | project based on Analysis, Design, and Experimentation of an Isolated ZVT Boost Converter With Coupled Inductors |
321 | PPELECTRO321 | project based on Anomalous Loss Performance for Mixed Real-Time and TCP Traffic |
322 | PPELECTRO322 | project based on Application and Stability Analysis of a Novel Digital Active EMI Filter Used in a Grid-Tied PV Microinverter Module |
323 | PPELECTRO323 | project based on Application and Stability Analysis of a Novel Digital Active EMI Filter Used in a Grid-Tied PV Microinverter Module |
324 | PPELECTRO324 | project based on Application of Temperature Compensated Ultrasonic Ranging for Blind Person and Verification Using MATLAB |
325 | PPELECTRO325 | project based on ARM BASED GRAPE DRYER SYSTEM |
326 | PPELECTRO326 | project based on ARM BASED MAXIMUM POWER POINT TRACKER FOR SOLAR |
327 | PPELECTRO327 | project based on Asymmetric Control of DC-Link Voltages for Separate MPPTs in Three-Level Inverters |
328 | PPELECTRO328 | project based on Asymmetric Control of DC-Link Voltages for Separate MPPTs in Three-Level Inverters |
329 | PPELECTRO329 | project based on Automated Restaurant Order System Using ZigBee |
330 | PPELECTRO330 | project based on Automatic Car Counting Method for Unmanned Aerial Vehicle Images |
331 | PPELECTRO331 | project based on Automatic License Plate Recognition (ALPR): A State of the Art Review |
332 | PPELECTRO332 | project based on Automatic Lighting System Using Multiple Robotic Lamps |
333 | PPELECTRO333 | project based on Automatic locker machine design and implementation using RFID and MC... |
334 | PPELECTRO334 | project based on Automatic Meteorological Data Acquisition System based on ARM... |
335 | PPELECTRO335 | project based on AUTOMATIC RETRIVAL OF MRI BRAIN IMAGE USING MULTIQUERIES SYSTEM |
336 | PPELECTRO336 | project based on Automatic Vehicle Identification using RFID |
337 | PPELECTRO337 | project based on Automatic Weed Detection System and Smart Herbicide Sprayer Robot for corn fields |
338 | PPELECTRO338 | project based on Autonomous Electric Vehicle Steering and Path-Following Control Systems |
339 | PPELECTRO339 | project based on Average current controlled switching regulators with cascade boost converters |
340 | PPELECTRO340 | project based on Battery/Supercapacitors Combination in Uninterruptible Power Supply (UPS) |
341 | PPELECTRO341 | project based on Battery/Supercapacitors Combination in Uninterruptible Power Supply (UPS) |
342 | PPELECTRO342 | project based on Blocking Misbehaving Users in Anonymizing Networks |
343 | PPELECTRO343 | project based on Boost Converter |
344 | PPELECTRO344 | project based on Bridgeless SEPIC Converter With a Ripple-Free Input Current |
345 | PPELECTRO345 | project based on Bridgeless High-Power-Factor Buck Converter |
346 | PPELECTRO346 | project based on Bridgeless SEPIC Converter With a Ripple-Free Input Current |
347 | PPELECTRO347 | project based on Bridgeless SEPIC Rectifier With Unity Power Factor and Reduced Conduction Losses |
348 | PPELECTRO348 | project based on CAN PROTOCOL BASED DATA ACQUISITION SYSTEM |
349 | PPELECTRO349 | project based on Capacitor Balance Issues of the Diode-Clamped Multilevel Inverter Operated in a Quasi Two-State Mode |
350 | PPELECTRO350 | project based on Capacitor Balance Issues of the Diode-Clamped Multilevel Inverter Operated in a Quasi Two-State Mode |
351 | PPELECTRO351 | project based on Cascaded Multicell Trans-Z-Source Inverters |
352 | PPELECTRO352 | project based on Cascaded Multicell Trans-Z-Source Inverters |
353 | PPELECTRO353 | project based on Cascaded Multilevel Inverter for Hybrid Electric Vehicles |
354 | PPELECTRO354 | project based on Churn-Resilient Protocol for Massive Data Dissemination in P2P Networks |
355 | PPELECTRO355 | project based on Circuit Analysis and Modeling of a Phase-Shifted Pulsewidth modulation Full-Bridge-Inverter-Fed Ozone Generator With Constant AppliedElectrode Voltage |
356 | PPELECTRO356 | project based on Class-D/DE Dual-Mode-Operation Resonant Converter for Improved-Efficiency Domestic Induction Heating System |
357 | PPELECTRO357 | project based on Class-D/DE Dual-Mode-Operation Resonant Converter for Improved-Efficiency Domestic Induction Heating System |
358 | PPELECTRO358 | project based on Climate Monitoring System using ARM |
359 | PPELECTRO359 | project based on Closed-Loop Analysis and Cascade Control of a Nonminimum Phase |
360 | PPELECTRO360 | project based on Coding Schemes Applied to Peak-to-Average Power Ratio (PAPR) Reduction in OFDM Systems |
361 | PPELECTRO361 | project based on Colour and texture feature-based image retrieval by using Hadamard matrix in discrete wavelet transform |
362 | PPELECTRO362 | project based on Common-Mode Voltage Reduction Methods for Current-Source Converters in Medium-Voltage Drives |
363 | PPELECTRO363 | project based on Common-Mode Voltage Reduction Methods for Current-Source Converters in Medium-Voltage Drives |
364 | PPELECTRO364 | project based on Communication Cost Minimization in Wireless Sensor and Actor |
365 | PPELECTRO365 | project based on Comparative Evaluation of Spoofing Defenses |
366 | PPELECTRO366 | project based on Comparative study of Proportional Integral and Backstepping Controller for Buck Converter |
367 | PPELECTRO367 | project based on Comparison of Power Quality Improvement Techniques in AC-DC Cuk Converter |
368 | PPELECTRO368 | project based on Comparison of Z-Source Inverter and Traditional Two-Stage Boost-Buck Inverter in Grid-tied Renewable Energy Generation |
369 | PPELECTRO369 | project based on Conductance MPPT With Direct Control Method Using Cuk Converter |
370 | PPELECTRO370 | project based on Context Aware Driver Behavior Detection System in Intelligent Transportation Systems (ITS) |
371 | PPELECTRO371 | project based on Context-Adaptive Multimodal Wireless Sensor Network for Energy-Efficient Gas Monitoring |
372 | PPELECTRO372 | project based on Control of Improved Full-Bridge Three-Level DC/DC Converter for Wind Turbines in a DC Grid |
373 | PPELECTRO373 | project based on Control of Improved Full-Bridge Three-Level DC/DC Converter for Wind Turbines in a DC Grid |
374 | PPELECTRO374 | project based on Current Harmonic Compensation and Power Factor Improvement by Hybrid Shunt Active Power Filter |
375 | PPELECTRO375 | project based on Current-Fed Quasi-Z-Source Inverter With Voltage Buck–Boost and Regeneration Capability |
376 | PPELECTRO376 | project based on Current-Fed Quasi-Z-Source Inverter With VoltageBuck–Boost and Regeneration Capability |
377 | PPELECTRO377 | project based on Customized Ultra High Frequency Radio Frequency |
378 | PPELECTRO378 | project based on DC-Voltage Fluctuation Elimination Through a DC-Capacitor Current Control for DFIG Converters Under Unbalanced Grid Voltage Conditions |
379 | PPELECTRO379 | project based on DC-Voltage Fluctuation Elimination Through a DC-Capacitor Current Control for DFIG Converters Under Unbalanced Grid Voltage Conditions |
380 | PPELECTRO380 | project based on Dead-Time Elimination for Voltage Source Inverters |
381 | PPELECTRO381 | project based on Delay Analysis and Optimality of Scheduling Policies for Multi-Hop Wireless Networks |
382 | PPELECTRO382 | project based on Delaying Transmissions in Data Communication Networks to Improve Transport-Layer Performance |
383 | PPELECTRO383 | project based on Design and Implementation of Energy Management System With Fuzzy Control for DC Microgrid Systems |
384 | PPELECTRO384 | project based on Design Methodology for a Very High Frequency Resonant Boost Converter |
385 | PPELECTRO385 | project based on Design Optimization of Transformerless Grid-Connected PV Inverters Including Reliability |
386 | PPELECTRO386 | project based on Design And Development Of PIC Microcontroller Based Vehicle Monitoring System Using Controller Area Network (CAN) Protocol |
387 | PPELECTRO387 | project based on Design and Evaluation of a Proxy Cache for Peer-to-Peer Traffic |
388 | PPELECTRO388 | project based on Design and Fabrication of Pneumatic robot |
389 | PPELECTRO389 | project based on Design and Fabrication of sheet grooving machine |
390 | PPELECTRO390 | project based on Design and Implementation of a Current-Source Converter for Use in Industry Applications of D-STATCOM |
391 | PPELECTRO391 | project based on Design and Implementation of a Photovoltaic High-Intensity-Discharge Street Lighting System |
392 | PPELECTRO392 | project based on Design and Implementation of Energy Management System With Fuzzy Control for DC Microgrid Systems |
393 | PPELECTRO393 | project based on DESIGN AND PERFORMANCE OF AN OPTIMAL INERTIAL POWER HARVESTER FOR HUMAN-POWERED DEVICES... |
394 | PPELECTRO394 | project based on Design Considerations of Soft Switched Buck PFC Converter |
395 | PPELECTRO395 | project based on Design Guidelines of New Step-up DC/DC Converter for Fuel Cell Powered Distributed Generation Systems |
396 | PPELECTRO396 | project based on Design Methodology for a Very High Frequency Resonant Boost Converter |
397 | PPELECTRO397 | project based on Design of a Wireless Medical Monitoring System using Zigbee... |
398 | PPELECTRO398 | project based on Design of an Intelligent Electric Vehicle for Blind |
399 | PPELECTRO399 | project based on Design of Efficient Multicast Protocol for IEEE 802.11n WLANs and Cross-Layer Optimization for Scalable Video Streaming |
400 | PPELECTRO400 | project based on DESIGN OF INTELLIGENT MOBILE VEHICLE CHECKING SYSTEM BASED ON ARM7... |
401 | PPELECTRO401 | project based on Design of Milk Analysis Embedded System for Dairy Farmers |
402 | PPELECTRO402 | project based on Design of the bangle bearing unit on channel T-7 |
403 | PPELECTRO403 | project based on Design Optimization of Transformerless Grid-Connected PV Inverters Including Reliability |
404 | PPELECTRO404 | project based on Design, Analysis, and Implementation of Solar Power Optimizer for DC Distribution System |
405 | PPELECTRO405 | project based on Design, Analysis, and Implementation of Solar Power Optimizer for DC Distribution System |
406 | PPELECTRO406 | project based on Detecting Communities in Sparse MANETs |
407 | PPELECTRO407 | project based on Detection and Classification of Apple Fruit Diseases using Complete Local Binary Patterns |
408 | PPELECTRO408 | project based on detection of eye lid |
409 | PPELECTRO409 | project based on Development and Operational Control of Two-String Maximum Power Point Trackers in DC Distribution Systems |
410 | PPELECTRO410 | project based on Development and Operational Control of Two-String Maximum Power Point Trackers in DC Distribution Systems |
411 | PPELECTRO411 | project based on DEVELOPMENT OF A GRID CONNECTED PHOTOVOLTAIC POWER CONDITIONING SYSTEM BASED ON FLYING CAPACITORS INVERTER |
412 | PPELECTRO412 | project based on Digital Plug-In Repetitive Controller for Single-Phase Bridgeless PFC Converters |
413 | PPELECTRO413 | project based on Digital Average Current-Mode Control of PWM DC–DC Converters Without Current Sensors |
414 | PPELECTRO414 | project based on Digital Plug-In Repetitive Controller for Single-Phase Bridgeless PFC Converters |
415 | PPELECTRO415 | project based on Direct signalling for trains |
416 | PPELECTRO416 | project based on Discontinuous Energy Pump Source Inverters |
417 | PPELECTRO417 | project based on Discontinuous Operation Modes of Current-fed Quasi-Z-Source Inverter |
418 | PPELECTRO418 | project based on DME Project-abrasive Cutting off Machine,BE- Analysis and tooling of door hinge braket ... |
419 | PPELECTRO419 | project based on DME-FISH LIKE Propulation system,eng.project-mesaurement of energy saving from vars by utilization h... |
420 | PPELECTRO420 | project based on DNA Secret Writing Techniques |
421 | PPELECTRO421 | project based on Driver Fatigue Detection Using Machine Vision Approach |
422 | PPELECTRO422 | project based on Dual Transformerless Single-Stage Current Source Inverter With Energy Management Control Strategy |
423 | PPELECTRO423 | project based on Dual Transformerless Single-Stage Current Source Inverter With Energy Management Control Strategy |
424 | PPELECTRO424 | project based on Dynamic Characteristics of Current-Fed Superbuck Converter |
425 | PPELECTRO425 | project based on Dynamic Conflict-Free Transmission Scheduling for Sensor Network Queries |
426 | PPELECTRO426 | project based on Dynamic Ultrasonic Hybrid Localization System for Indoor Mobile Robots |
427 | PPELECTRO427 | project based on Dynamics of Malware Spread in Decentralized Peer-to-Peer Networks |
428 | PPELECTRO428 | project based on Dynamics of Network Connectivity in Urban Vehicular Networks |
429 | PPELECTRO429 | project based on Effects of Switching Asymmetry on an Isolated Full-Bridge Boost Converter |
430 | PPELECTRO430 | project based on Efficient Data Collection in Wireless Sensor Networks with Path-Constrained Mobile Sinks |
431 | PPELECTRO431 | project based on Efficient Network Modification to Improve QoS Stability at Failures |
432 | PPELECTRO432 | project based on Electric Equivalent Model for Induction Electrodeless Fluorescent Lamps |
433 | PPELECTRO433 | project based on Electric Equivalent Model for Induction Electrodeless Fluorescent Lamps |
434 | PPELECTRO434 | project based on Embedded Flexible Force Sensor for In-Situ Tire–Road Interaction Measurements |
435 | PPELECTRO435 | project based on EMI Filter Design for a MHz, kW Three-Phase/Level PWM Rectifier |
436 | PPELECTRO436 | project based on Endpoint-Based Call Admission Control and Resource Management |
437 | PPELECTRO437 | project based on Energy Harvesting through Piezo-electric Technology ... |
438 | PPELECTRO438 | project based on Energy-Efficient Multicasting of Scalable Video Streams Over WiMAX Networks |
439 | PPELECTRO439 | project based on Enhanced Control of a DFIG-Based Wind-Power Generation System With Series Grid-Side Converter Under Unbalanced Grid Voltage Conditions |
440 | PPELECTRO440 | project based on Enhanced Control of a DFIG-Based Wind-Power Generation System With Series Grid-Side Converter Under Unbalanced Grid Voltage Conditions |
441 | PPELECTRO441 | project based on Estimating Parameters of Multiple Heterogeneous Target Objects Using Composite Sensor Nodes |
442 | PPELECTRO442 | project based on Evidence Collection from Car Black Boxes using Smart phones... |
443 | PPELECTRO443 | project based on Explicit Congestion Control Algorithms for Time Varying Capacity Media |
444 | PPELECTRO444 | project based on Exploiting Heterogeneity in P2P Video Streaming |
445 | PPELECTRO445 | project based on Fast Data Collection in Tree-Based Wireless Sensor Networks |
446 | PPELECTRO446 | project based on Fast Detection of Mobile Replica Node Attacks in Wireless Sensor Networks Using Sequential Hypothesis Testing |
447 | PPELECTRO447 | project based on Fast Recovery From Dual-Link or Single-Node Failures in IP Networks Using Tunneling |
448 | PPELECTRO448 | project based on Fault Localization Using Passive End-to-End Measurements and |
449 | PPELECTRO449 | project based on Fault Recovery Strategy for Hybrid Cascaded H-Bridge |
450 | PPELECTRO450 | project based on Fighting robot with gun & wireless camera |
451 | PPELECTRO451 | project based on Finger Print Based Medical Information Retrieval & Patient Information... |
452 | PPELECTRO452 | project based on Fingerprint activated remote input device for personal id recognition and access authentication... |
453 | PPELECTRO453 | project based on Flexible Broadcasting of Scalable Video Streams to Heterogeneous Mobile Devices |
454 | PPELECTRO454 | project based on Flying Capacitor Multilevel Inverter Based Shunt Active Power Filter with Trifling Susceptibility to Divisional Voltages Deregulation |
455 | PPELECTRO455 | project based on for VoWLAN |
456 | PPELECTRO456 | project based on Front Sensor and GPS-Based Lateral Control of Automated Vehicles |
457 | PPELECTRO457 | project based on Fundamental Frequency Switching Strategies of a Seven-Level Hybrid Cascaded H-Bridge Multilevel Inverter |
458 | PPELECTRO458 | project based on Generalised pulse width modulation approach for DC capacitor voltage balancing in diode-clamped multilevel converters |
459 | PPELECTRO459 | project based on Generalized Multicell Switched-Inductor and Switched-Capacitor Z-Source Inverters |
460 | PPELECTRO460 | project based on Generalized Multicell Switched-Inductor and Switched-Capacitor Z-Source Inverters |
461 | PPELECTRO461 | project based on GPS BASED CARE FOR ELDERLY AND DISABLED |
462 | PPELECTRO462 | project based on Grid Interfacing of Multimegawatt Photovoltaic Inverters |
463 | PPELECTRO463 | project based on Grid Interfacing of Multimegawatt Photovoltaic Inverters |
464 | PPELECTRO464 | project based on GSM BASED VEHICLE GASEOUS FUEL LEAKAGE DETECTION WITH AUTOMATIC SAFETY WARNING AND ALERTING SYSTEM... |
465 | PPELECTRO465 | project based on GZVNewly-Constructed Simplified Single-Phase Multistring Multilevel |
466 | PPELECTRO466 | project based on Hiding Secret Image in Video |
467 | PPELECTRO467 | project based on High Boost Ratio Hybrid Transformer DC–DC Converter for Photovoltaic Module Applications |
468 | PPELECTRO468 | project based on High Power Factor AC–DC LED Driver With Film Capacitors |
469 | PPELECTRO469 | project based on High Boost Ratio Hybrid Transformer DC–DC Converter for Photovoltaic Module Applications |
470 | PPELECTRO470 | project based on High Frequency Resonant SEPIC Converter with Wide Input and Output Voltage Ranges |
471 | PPELECTRO471 | project based on High Frequency Transformer Isolated Z-Source Inverters |
472 | PPELECTRO472 | project based on High Power Factor AC–DC LED Driver With Film Capacitors |
473 | PPELECTRO473 | project based on High-Efficiency Asymmetrical Half-Bridge Converter Without Electrolytic Capacitor for Low-Output-Voltage AC–DC LED Drivers |
474 | PPELECTRO474 | project based on High-Efficiency Single-Input Multiple-Output DC–DC Converter |
475 | PPELECTRO475 | project based on High-Efficiency Asymmetrical Half-Bridge Converter Without Electrolytic Capacitor for Low-Output-Voltage AC–DC LED Drivers |
476 | PPELECTRO476 | project based on High-Efficiency MOSFET Inverter with H-Type Configuration for |
477 | PPELECTRO477 | project based on High-Efficiency Single-Input Multiple-Output DC–DC Converter |
478 | PPELECTRO478 | project based on High-Performance Adaptive Perturb and Observe MPPT Technique for Photovoltaic-Based Microgrids |
479 | PPELECTRO479 | project based on High-Voltage and High-Power Applications |
480 | PPELECTRO480 | project based on Hoc Networks |
481 | PPELECTRO481 | project based on Hoc Networks with Priority |
482 | PPELECTRO482 | project based on HOME AUTOMATION SYSTEM BASED ON ARM AND ZIGBEE |
483 | PPELECTRO483 | project based on Hybrid Integration of a Low-Voltage, High-Current Power Supply Buck Converter With an LTCC Substrate Inductor |
484 | PPELECTRO484 | project based on Hybrid-Frequency Modulation for PWM-Integrated Resonant Converters |
485 | PPELECTRO485 | project based on Hybrid-Frequency Modulation for PWM-Integrated Resonant Converters |
486 | PPELECTRO486 | project based on Identification Tags and Reader Antennas Enabling Reliable |
487 | PPELECTRO487 | project based on Impact of File Arrivals and Departures on Buffer Sizing in Core Routers |
488 | PPELECTRO488 | project based on Improved Sensorless Operation of a CSI-Based Induction Motor Drive: Long Feeder Case |
489 | PPELECTRO489 | project based on Improved Trans-Z-Source Inverter With Continuous Input Current and Boost Inversion Capability |
490 | PPELECTRO490 | project based on Improved Voltage-Vector Sequences on Dead-Beat Predictive Direct Power Control of Reversible Three-Phase Grid-Connected Voltage-Source Converters |
491 | PPELECTRO491 | project based on Improved Histogram Bin Shifting based Reversible Watermarking |
492 | PPELECTRO492 | project based on Improved Sensorless Operation of a CSI-Based Induction Motor Drive: Long Feeder Case |
493 | PPELECTRO493 | project based on Improved Trans-Z-Source Inverter With Continuous Input Current and Boost Inversion Capability |
494 | PPELECTRO494 | project based on Improved Voltage-Vector Sequences on Dead-Beat Predictive Direct Power Control of Reversible Three-Phase Grid-Connected Voltage-Source Converters |
495 | PPELECTRO495 | project based on Improved Z-Source Inverter With Reduced Z-Source Capacitor Voltage Stress and Soft-Start Capability |
496 | PPELECTRO496 | project based on Improving the Performance of Wireless Ad Hoc Networks Through MAC Layer Design |
497 | PPELECTRO497 | project based on in Routers With Very Small Buffers |
498 | PPELECTRO498 | project based on Induction Motor Drive Using Seven Level Multilevel Inverter for Energy Saving in Variable Torque Load Application |
499 | PPELECTRO499 | project based on Inherent clamp flyback–buck converter with winding cross-coupled inductors |
500 | PPELECTRO500 | project based on Input Differential-Mode EMI of CRM Boost PFC Converter |
501 | PPELECTRO501 | project based on Input Differential-Mode EMI of CRM Boost PFC Converter |
502 | PPELECTRO502 | project based on Integration and Operation of a Single-Phase Bidirectional Inverter With Two Buck/Boost MPPTs for DC-Distribution Applications |
503 | PPELECTRO503 | project based on Integration and Operation of a Single-Phase Bidirectional Inverter With Two Buck/Boost MPPTs for DC-Distribution Applications |
504 | PPELECTRO504 | project based on Intelligent Traction Control Model for Speed Sensor Vehicles in Computer-Based Transit System |
505 | PPELECTRO505 | project based on Interleaved Boundary Conduction Mode (BCM) Buck Power Factor Correction (PFC) Converter |
506 | PPELECTRO506 | project based on Interleaved Boundary Conduction Mode (BCM) Buck Power Factor Correction (PFC) Converter |
507 | PPELECTRO507 | project based on Interleaved Soft-Switching Boost Converter for Photovoltaic Power-Generation System |
508 | PPELECTRO508 | project based on interleaved-input boost-derived DC–DC high-gain transformer-less converter |
509 | PPELECTRO509 | project based on Inverter Topology for Distributed Energy Resources |
510 | PPELECTRO510 | project based on Jumping Robot |
511 | PPELECTRO511 | project based on laboratory and on roa investigation of engine performance charactristics for diesel kerosene blends ... |
512 | PPELECTRO512 | project based on Large P2P Streaming Networks |
513 | PPELECTRO513 | project based on LCCT-Z-Source Inverters |
514 | PPELECTRO514 | project based on Light-Load Efficiency Improvement in Buck-Derived Single-Stage Single-Switch PFC Converters |
515 | PPELECTRO515 | project based on Light-Load Efficiency Improvement in Buck-Derived Single-Stage Single-Switch PFC Converters |
516 | PPELECTRO516 | project based on Light-to-Light: PV-Fed LED Lighting Systems |
517 | PPELECTRO517 | project based on Light-to-Light: PV-Fed LED Lighting Systems |
518 | PPELECTRO518 | project based on Link-State Routing With Hop-by-Hop Forwarding Can Achieve Optimal Traffic Engineering |
519 | PPELECTRO519 | project based on Load Balance with Imperfect Information in Structured Peer-to-Peer Systems |
520 | PPELECTRO520 | project based on Localization of Mobile Nodes in Wireless Networks with Correlated in Time Measurement Noise |
521 | PPELECTRO521 | project based on Locking and Unlocking of Theft Vehicles Using CAN |
522 | PPELECTRO522 | project based on Loss Performance Modeling for Hierarchical Heterogeneous Wireless |
523 | PPELECTRO523 | project based on Manual spring compression tool |
524 | PPELECTRO524 | project based on Mechanism Design-Based Secure Leader Election Model for Intrusion Detection in MANET |
525 | PPELECTRO525 | project based on Mechanism Design-Based Secure Leader Election Model Intrusion Detection in MANET |
526 | PPELECTRO526 | project based on Minimal Grasper: A Practical Robotic Grasper With Robust Performance for Pick-and-Place Tasks |
527 | PPELECTRO527 | project based on Mitigation of Lower Order Harmonics in a Grid-Connected Single-Phase PV Inverter |
528 | PPELECTRO528 | project based on Mitigation of Lower Order Harmonics in a Grid-Connected Single-Phase PV Inverter |
529 | PPELECTRO529 | project based on Mix-Voltage Conversion for Single-Inductor Dual-Output Buck Converters |
530 | PPELECTRO530 | project based on Mobile Robot Navigation |
531 | PPELECTRO531 | project based on Mobility Tracking using GPS and Cell Id. |
532 | PPELECTRO532 | project based on Modeling and Simulation of All-Electric Ships With Low-Voltage DC Hybrid Power Systems |
533 | PPELECTRO533 | project based on Modeling and Detection of Camouflaging Worm |
534 | PPELECTRO534 | project based on Modeling and Improving TCP Performance over Cellular Link with Variable Bandwidth |
535 | PPELECTRO535 | project based on Modeling and Simulation of All-Electric Ships With Low-Voltage DC Hybrid Power Systems |
536 | PPELECTRO536 | project based on Modeling Nonsaturated IEEE 802.11 DCF Networks Utilizing an Arbitrary Buffer Size |
537 | PPELECTRO537 | project based on Modelling and simulation of power factor corrected AC–DC converters |
538 | PPELECTRO538 | project based on Monitoring the Impact of P2P Users on a Broadband Operator’s Network over Time |
539 | PPELECTRO539 | project based on MSU Jumper: A Single-Motor- Actuated Miniature Steerable |
540 | PPELECTRO540 | project based on Multicascoded Sources for a High-Efficiency Fuel-Cell Hybrid Power |
541 | PPELECTRO541 | project based on Multilevel DC-Link Inverter and Control Algorithm to Overcome the PV Partial Shading |
542 | PPELECTRO542 | project based on Multilevel DC-Link Inverter and Control Algorithm to Overcome the PV Partial Shading |
543 | PPELECTRO543 | project based on Multilevel Inverter |
544 | PPELECTRO544 | project based on Multilevel Inverter For Grid-Connected PV System Employing Digital PI Controller |
545 | PPELECTRO545 | project based on Multi-Level Inverters |
546 | PPELECTRO546 | project based on Multilevel inverters for low-power application |
547 | PPELECTRO547 | project based on Multiphase DC–DC Converters Using a Boost-Half-Bridge Cell for |
548 | PPELECTRO548 | project based on Multiple Working Mode Control of Door-Opening With a Mobile Modular and Reconfigurable Robot |
549 | PPELECTRO549 | project based on Multiple-Target Tracking for Intelligent Headlights Control |
550 | PPELECTRO550 | project based on Multiplier SEPIC Converter |
551 | PPELECTRO551 | project based on Multistring Five-Level Inverter With Novel PWM Control Scheme for PV Application |
552 | PPELECTRO552 | project based on Mutual Impedance of Small Ring-Type Coils for Multiwinding Induction Heating Appliances |
553 | PPELECTRO553 | project based on Mutual Impedance of Small Ring-Type Coils for Multiwinding Induction Heating Appliances |
554 | PPELECTRO554 | project based on Network Connectivity with a Family of Group Mobility Models |
555 | PPELECTRO555 | project based on Networks for Road Surveillance |
556 | PPELECTRO556 | project based on Networks With Speed-Sensitive Call Admission Control |
557 | PPELECTRO557 | project based on New Approach for MPPT Control of Photovoltaic System With Mutative-Scale Dual-Carrier |
558 | PPELECTRO558 | project based on Nine level Cascaded H-bridge Multilevel DC-Link Inverter |
559 | PPELECTRO559 | project based on Nonisolated High Step-up Boost Converter Integrated With Sepic Converter |
560 | PPELECTRO560 | project based on Nonlinear Behavior and Instability in a Three-Phase Boost Rectifier Connected to a Nonideal Power Grid With an Interacting Load |
561 | PPELECTRO561 | project based on Nonlinear Behavior and Instability in a Three-Phase Boost Rectifier Connected to a Nonideal Power Grid With an Interacting Load |
562 | PPELECTRO562 | project based on Novel Energy Conversion System Based on a Multimode Single-Leg Power Converter |
563 | PPELECTRO563 | project based on Novel Energy Conversion System Based on a Multimode Single-Leg Power Converter |
564 | PPELECTRO564 | project based on Novel Iris Segmentation and Recognition System for Human Identification |
565 | PPELECTRO565 | project based on Omega-Shaped Inchworm-Inspired Crawling Robot With Large-Index-and-Pitch (LIP) SMA Spring Actuators |
566 | PPELECTRO566 | project based on On Reliable Broadcast in Low Duty-Cycle Wireless Sensor Networks |
567 | PPELECTRO567 | project based on On the Effectiveness of Monitoring for Intrusion Detection in Mobile Ad Hoc Networks |
568 | PPELECTRO568 | project based on On the Price of Security in Large-Scale Wireless Ad Hoc Networks |
569 | PPELECTRO569 | project based on Optimal Pulsewidth Modulation of Nine-Switch Converter |
570 | PPELECTRO570 | project based on Optimal Selective Forwarding for Energy Saving in Wireless Sensor Networks |
571 | PPELECTRO571 | project based on Optimization of Perturb and Observe Maximum Power Point Tracking Method |
572 | PPELECTRO572 | project based on Origin of Cross-Coupling Effects in Distributed DC–DC Converters in Photovoltaic Applications |
573 | PPELECTRO573 | project based on Origin of Cross-Coupling Effects in Distributed DC–DC Converters in Photovoltaic Applications |
574 | PPELECTRO574 | project based on Palm-Print Classification by Global Features |
575 | PPELECTRO575 | project based on Patient Monitoring System using GSM Technology |
576 | PPELECTRO576 | project based on Pen Drive to Pen Drive and Mobile Data Transfer Using ARM... |
577 | PPELECTRO577 | project based on PERFORMANCE EVALUATION OF TRADITIONAL AND ADAPTIVE LIFTING BASED W AVELETS WITH SPIHT FOR LOSSY IMAGE COMPRESSION |
578 | PPELECTRO578 | project based on Performance Modeling of Message Dissemination In Vehicular Ad |
579 | PPELECTRO579 | project based on Perturbation On-Time (POT) Technique in Power Factor Correction (PFC) Controller for Low Total Harmonic Distortion and High Power Factor |
580 | PPELECTRO580 | project based on Perturbation On-Time (POT) Technique in Power Factor Correction (PFC) Controller for Low Total Harmonic Distortion and High Power Factor |
581 | PPELECTRO581 | project based on PFC Cuk Converter Based Electronic Ballast for an 18 W Compact Fluorescent Lamp |
582 | PPELECTRO582 | project based on PFC Cuk Converter Based Electronic Ballast for an W Compact Fluorescent Lamp |
583 | PPELECTRO583 | project based on Photovoltaic Arrays |
584 | PPELECTRO584 | project based on Photovoltaic Lighting System Based On Z-Source/Quasi-Z-Source Converter Topology |
585 | PPELECTRO585 | project based on Photovoltaic Nonisolated AC-Module Applications |
586 | PPELECTRO586 | project based on Photovoltaic Parallel Resonant DC-link Soft Switching Inverter using Hysteresis Current Control |
587 | PPELECTRO587 | project based on PIC CONTROLLER BASED INSTANTANEOUS TECHNIQUE HEART BIT MONITOR... |
588 | PPELECTRO588 | project based on POKA-YOKE 2.2 LTR DICOR Engine value height configaration ... |
589 | PPELECTRO589 | project based on Portable Goliath crane |
590 | PPELECTRO590 | project based on Power Electronics for Photovoltaic Energy System of an Oceanographic Buoy |
591 | PPELECTRO591 | project based on Power Quality Improvement Techniques in AC-DC Cuk Converter |
592 | PPELECTRO592 | project based on Precise Accelerated Torque Control for Small Inductance Brushless DC Motor |
593 | PPELECTRO593 | project based on Precise Accelerated Torque Control for Small Inductance Brushless DC Motor |
594 | PPELECTRO594 | project based on Prediction or Not? An Energy-Efficient Framework for Clustering-Based Data Collection in Wireless Sensor Networks |
595 | PPELECTRO595 | project based on Privacy in VoIP Networks: Flow Analysis Attacks and Defense |
596 | PPELECTRO596 | project 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 |
597 | PPELECTRO597 | project 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 |
598 | PPELECTRO598 | project based on Project Tiltes |
599 | PPELECTRO599 | project based on Project Titles |
600 | PPELECTRO600 | project based on PWM Converters |
601 | PPELECTRO601 | project based on Quasi-Z-Source Inverter for Photovoltaic Power Generation Systems |
602 | PPELECTRO602 | project based on Real Time Vehicle Tracking System using GSM and GPS Technology- An Anti-theft Tracking System... |
603 | PPELECTRO603 | project based on Real-Time Intelligent Alarm System of Driver Fatigue Based on Video Sequences |
604 | PPELECTRO604 | project based on Reconfigurable Solar Converter: A Single-Stage Power Conversion PV-Battery System |
605 | PPELECTRO605 | project based on Reconfigurable Solar Converter: A Single-Stage Power Conversion PV-Battery System |
606 | PPELECTRO606 | project based on Reducing Common-Mode Noise in Two-Switch Forward Converter |
607 | PPELECTRO607 | project based on Regression for a Biped Robot. |
608 | PPELECTRO608 | project based on Remote Unmanned Weather Stations |
609 | PPELECTRO609 | project based on RFID Based Students Attendance Management System |
610 | PPELECTRO610 | project based on RFID based train identification and railway crossing system... |
611 | PPELECTRO611 | project based on Robotic arm,fabrication of advanced seed planting implement,FRF correction in modal testing under ac... |
612 | PPELECTRO612 | project based on Robust Adaptive Controller for a Tractor–Trailer Mobile Robot |
613 | PPELECTRO613 | project based on Role of High Power Semiconductor Devices in Hybrid Electric Vehicles |
614 | PPELECTRO614 | project based on RSU-Based Distributed Key Management (RDKM) For Secure Vehicular Multicast Communications |
615 | PPELECTRO615 | project based on Safe Maritime Autonomous Navigation With COLREGS Using Velocity Obstacles |
616 | PPELECTRO616 | project based on Secret Key Establishment Using Temporally and Spatially Correlated Wireless Channel Coefficients |
617 | PPELECTRO617 | project based on Secure High-Throughput Multicast Routing in Wireless Mesh Networks |
618 | PPELECTRO618 | project based on Secure Multihop Network Programming with Multiple One-Way Key Chains |
619 | PPELECTRO619 | project based on Self-recognition of Vehicle Position Using UHF Passive RFID Tags |
620 | PPELECTRO620 | project based on Sequential Testing for Wireless Sensor Networks |
621 | PPELECTRO621 | project based on Series Asymmetrical Half-Bridge Converters With Voltage Autobalance for High Input-Voltage Applications |
622 | PPELECTRO622 | project based on Series Asymmetrical Half-Bridge Converters With Voltage Autobalance for High Input-Voltage Applications |
623 | PPELECTRO623 | project based on Series resonant inverter with selective harmonic operation applied to all-metal domestic induction heating |
624 | PPELECTRO624 | project based on Shared Steering Control Between a Driver and an Automation: Stability in the Presence of Driver Behavior Uncertainty |
625 | PPELECTRO625 | project based on Simple Model for Chunk-Scheduling Strategies in P2P Streaming |
626 | PPELECTRO626 | project based on Simulation and Hardware Implementation of Incremental |
627 | PPELECTRO627 | project based on Single-Inductor Four-Switch Non-Inverting Buck-Boost DC-DC Converter |
628 | PPELECTRO628 | project based on Single-Phase AC–AC Converter Based on Quasi-Z-Source Topology |
629 | PPELECTRO629 | project based on Single-Phase Seven-Level Grid-Connected Inverter for Photovoltaic System |
630 | PPELECTRO630 | project based on Smart Host Microcontroller for Optimal Battery Charging in a Solar-Powered Robotic Vehicle |
631 | PPELECTRO631 | project based on Soft-Switching DC/DC Converter With a Full ZVS Range and Reduced Output Filter for High-Voltage Applications |
632 | PPELECTRO632 | project based on Soft-Switching DC/DC Converter With a Full ZVS Range and Reduced Output Filter for High-Voltage Applications |
633 | PPELECTRO633 | project based on Space-Vector-Modulated Three-Level Inverters With a Single Z-Source Network |
634 | PPELECTRO634 | project based on Space-Vector-Modulated Three-Level Inverters With a Single Z-Source Network |
635 | PPELECTRO635 | project based on Spatial-Temporal Coverage Optimization in Wireless Sensor Networks |
636 | PPELECTRO636 | project based on Stability Analysis of a Non-Inverting Synchronous Buck-Boost Power Converter for a Solar Power Management System |
637 | PPELECTRO637 | project based on Stateless Multicast Protocol for Ad-Hoc Networks |
638 | PPELECTRO638 | project based on Stealthy Attacks in Wireless Ad Hoc Networks: Detection and Countermeasure |
639 | PPELECTRO639 | project based on Superchunk-Based Efficient Search in P2P-VoD System |
640 | PPELECTRO640 | project based on Superpixel Classification Based Optic Disc and Optic Cup Segmentation for Glaucoma Screening |
641 | PPELECTRO641 | project based on Supporting Efficient and Scalable Multicasting over Mobile Ad Hoc Networks |
642 | PPELECTRO642 | project based on Switched Inductor Z-Source Inverter |
643 | PPELECTRO643 | project based on Switched-Capacitor/Switched-Inductor Structures for Getting Transformerless Hybrid DC–DC |
644 | PPELECTRO644 | project based on Switched-Capacitor/Switched-Inductor Structures for Getting Transformerless Hybrid DC–DC PWM Converters |
645 | PPELECTRO645 | project based on Switched-Inductor Quasi-Z-Source Inverter |
646 | PPELECTRO646 | project based on Sybil Attacks Detection in Vehicular Ad Hoc Networks |
647 | PPELECTRO647 | project based on Synchronous Buck Converter based PV Energy System for Portable Applications Chaotic Search |
648 | PPELECTRO648 | project based on Synchronous-Reference-Frame-Based Control of Switched Boost Inverter for Standalone DC Nanogrid Applications |
649 | PPELECTRO649 | project based on Synchronous-Reference-Frame-Based Control of Switched Boost Inverter for Standalone DC Nanogrid Applications |
650 | PPELECTRO650 | project based on Synthesis of Multiple-Input DC/DC Converters |
651 | PPELECTRO651 | project based on Synthesizable Integrated Circuit and System Design for Solar Chargers |
652 | PPELECTRO652 | project based on Synthesizable Integrated Circuit and System Design for Solar Chargers |
653 | PPELECTRO653 | project based on System for hazardous gas, Human detection and temperature monitor control... |
654 | PPELECTRO654 | project based on System in High-Voltage Application |
655 | PPELECTRO655 | project based on Tank-Like Module-Based Climbing Robot Using Passive Compliant Joints |
656 | PPELECTRO656 | project based on The TAIPEI Rectifier—A New Three-Phase Two-Switch ZVS PFC DCM Boost Rectifier |
657 | PPELECTRO657 | project based on The Asymptotic Behavior of Minimum Buffer Size Requirements in |
658 | PPELECTRO658 | project based on The Comparative Analysis of MultiCarrier Control Techniques For SPWM Controlled Cascaded H-Bridge Multilevel Inverter |
659 | PPELECTRO659 | project based on The Limit of Information Propagation Speed in Large-Scale Multihop Wireless Networks |
660 | PPELECTRO660 | project based on The TAIPEI Rectifier—A New Three-Phase Two-Switch ZVS PFC DCM Boost Rectifier |
661 | PPELECTRO661 | project based on Three–leg power converter topology for a battery charger |
662 | PPELECTRO662 | project based on Throughput Optimization in Mobile Backbone Networks |
663 | PPELECTRO663 | project based on Time-Domain Signal Detection Based on Second-Order Statistics for MIMO-OFDM Systems |
664 | PPELECTRO664 | project based on Touch Screen Based Temperature Monitoring and Control System with Graphical LCD.... |
665 | PPELECTRO665 | project based on Towards a New Modality-Independent Interface for a Robotic Wheelchair |
666 | PPELECTRO666 | project based on Traffic Sign Recognition for Computer Vision Project-Based Learning |
667 | PPELECTRO667 | project based on Traffic Violation Detection Using Multiple Trajectories Evaluation of Vehicles |
668 | PPELECTRO668 | project based on Transformerless Single-Phase Multilevel-Based Photovoltaic Inverter |
669 | PPELECTRO669 | project based on Transient Analysis of IEEE 802.15.4 Sensor Networks |
670 | PPELECTRO670 | project based on Trans-Z-Source Inverters |
671 | PPELECTRO671 | project based on Triple Loop Modulation (TLM) for High Reliability and Efficiency in a Power Factor Correction (PFC) System |
672 | PPELECTRO672 | project based on Triple Loop Modulation (TLM) for High Reliability and Efficiency in a Power Factor Correction (PFC) System |
673 | PPELECTRO673 | project based on Unterminated Small-Signal Behavioral Model of DC–DC Converters |
674 | PPELECTRO674 | project based on Unterminated Small-Signal Behavioral Model of DC–DC Converters |
675 | PPELECTRO675 | project based on Using Link Gradients to Predict the Impact of Network Latency on Multitier Applications |
676 | PPELECTRO676 | project based on Vertical-Edge-Based Car-License-Plate Detection Method |
677 | PPELECTRO677 | project based on Wireless Black Box Using GPS Tracking for Accidental Monitoring of Vehicles... |
678 | PPELECTRO678 | project based on Wireless Fountain Coding with IEEE 802.11e Block ACK for Media Streaming in Wireline-cum-WiFi Network: A Performance Study |
679 | PPELECTRO679 | project based on Wireless Pick n Place Robot |
680 | PPELECTRO680 | project based on Wireless Sensor Node to Detect Hazardous Gas Pipeline ... |
681 | PPELECTRO681 | project based on Wireless Under Water Mobile Robot System Based on ZigBee |
682 | PPELECTRO682 | project based on Wireless Vision-based stabilization of Indoor Micro Helicopter |
683 | PPELECTRO683 | project based on With a Common Active Clamp |
684 | PPELECTRO684 | project based on with Constant On-Time (COT) Control |
685 | PPELECTRO685 | project based on Zigbee based wireless electronic notice board with multipoint receiver... |
686 | PPELECTRO686 | project based on Z-SOURCE INVERTER BASED PHOTOVOLTAIC POWER GENERATION |
687 | PPELECTRO687 | project based on Γ-Z-Source Inverters |
Recent Project Requirements
- NS2 Academy Merged into Projects Pune Platform! August 27, 2018
- Project Sponsorship for Engineering Students in Pune August 27, 2018
- Combined Mining for Complex Data August 22, 2018
- IoT Architecture for an Operating Room Environment August 21, 2018
- Device-to-Device Networking August 20, 2018
- Fault Cascade in the Network Virtualization Environment August 20, 2018
- Energy Harvesting RSUs in VANETs August 20, 2018
- Design of plant disease detection system August 20, 2018
- Single Image Super-Resolution via Multiple Mixture Models August 19, 2018
- Social-Aware Image Tag Refinement August 19, 2018