Three Phase Sequence Indicator Using Arduino Programming

2y ago
146 Views
2 Downloads
385.66 KB
7 Pages
Last View : 1m ago
Last Download : 3m ago
Upload by : Xander Jaffe
Transcription

ISSN: 2455-2631 October 2017 IJSDR Volume 2, Issue 10Three Phase Sequence Indicator Using ArduinoProgramming1Mr.Ashutosh Ranjan, 2Mr.Nitish Kumar, 3Mr.Pankaj Tatla, 4Mr.Keerthivantha MUG StudentsSiddaganga Institute of Technology, Karnataka, IndiaAbstract: During present age i.e. the age of industrialization and growing manufacturing sector/facilities, the machinesused in the industries depend on the input three phase supply. Since we are aware that in three phase supply, correctconnections of phase sequence is very much necessary otherwise it could lead to serious damages in the machines. Theoperator who is the in charge of monitoring the machines must know about the phase sequence connection and its adverseeffects also. This paper provides the simple arduino programming model based ‘three phase sequence indicator' which ishelpful in many industrial applications.Keywords: phase sequence, voltage divider circuit, step down transformer, arduino.I. IntroductionThe order in which the individual phase voltages attain their respective maximum values in a three phase system is called phasesequence. A three phase supply system needs three single phase EMFS provided they must have same voltage magnitude andfrequency but with different phase displacement, usually by 120 degrees.Types of phase sequence1. Positive phase sequence (RYB)2. Negative phase sequence (RBY)Now a days, various types of phase sequence indicator are used in the industry for the detection of correct phase sequence. Suchas static, non static, rotating, non rotating, micro controller based etc. but finally the logic remains the same.II. Scope of Work It is used to detect the phase sequence. It is widely used in industries to check the phase sequence, so that the correct phase sequence supply is given tomachines and the chance of damage of induction machines gets reduced. The direction of rotation of three phase electric motors can be changed by changing the phase sequence of supply. It is used for tracking the electrical connection during both, the installation and the maintenance of the electricalconnection. It is also used for wiring switchboards when three phase supply is a matter of concern.IJSDR1710024International Journal of Scientific Development and Research (IJSDR) www.ijsdr.org103

ISSN: 2455-2631 October 2017 IJSDR Volume 2, Issue 10III.BLOCK DIAGRAMCOMPU SCREENTERIV.SYSTEM IMPLEMENTATION AND METHODOLOGYFrom three phase supply, each phase is stepped down to 12V-0-12V using step-down.transformerR and then it is given to half waverectifier and the output of the half wave rectifier is fed to the voltage divider circuit which is 12V.Here,we are eliminating thenegative half of the supply. From the voltage divider circuit approximately 1.17 volts is tapped. As in arduino the maximumvoltage we can feed is 5Volts. This is the logic behind giving the output of rectifier to voltage divider circuit,so that we can trapvoltage less than /equal to 5V. The output of the voltage divider circuit is given to the analog pins of arduino i.e. A0,A1 and A2and by programming in arduino (using basic C and arduino IDE) we are able to detect the phase sequence by the concept ofzero crossing and the output is displayed on computer screen.In arduino there is 10 bit-ADC (210 1024). The ADC on the Arduino is a 10-bit ADC, meaning it has the ability to detect 1,024(210) discrete analog levels. The way an ADC works is fairly complex. The microcontroller monitors the number of clock cyclesthat pass before the capacitor is discharged. This number of cycles is the number that is returned once the ADC is complete.Relating ADC Value to VoltageThe ADC reports a ratio metric value. This means that the ADC assumes 5V is 1023 and anything less than 5V will be a ratiobetween 5V and 1023.Analog to digital conversions are dependant on the system voltage. Because we are predominantly use the 10 bit ADC of theArduino on a 5V system, we can simplify this equation slightly::1023/5 x/1.7V1023/5 204.6 205So,x 205* 1.7 348.5The voltage divider formula is Vout Vs*(R2/(R1 R2)So, Vout 12*(1/10 1) 1.7 VIJSDR1710024International Journal of Scientific Development and Research (IJSDR) www.ijsdr.org104

ISSN: 2455-2631 October 2017 IJSDR Volume 2, Issue 10V. System Requirements and its OperationDeveloping an arduino based programming model of three phase sequence indicator has enabled us to analyze and survey aboutthe necessity of the requirement to make unique and based on the latest techniques and features to make it cheap and easilyavailable for the consumers.The required components are listed below Step down transformersDiodesResistorsArduinoVI. System Description1. Step Down transformer: The rating of the transformer is 230V/12-0-12V, 500mA, 6VA2. Resistor:10K and 1K resistors are used to build the voltage divider circuit.The formula of the Voltage divider circuit is Vout Vs*[R2/(R1 R2)]IN4007R110kR21k3. Diode: IN4007 is used to build half wave rectifier.I N 4007R21kVII.Arduino:It is the board to get started with electronics and coding.The description of the components of the arduino are as follows:a) Power Usb:- Arduino board can be powered by using the USB cable from the computer. All we need to do is connect the USBcable to the USB.b) Power barrel jack:- Arduino boards can be powered directly from the AC mains power supply by connecting it to the BarrelJack.IJSDR1710024International Journal of Scientific Development and Research (IJSDR) www.ijsdr.org105

ISSN: 2455-2631 October 2017 IJSDR Volume 2, Issue 10c) Voltage Regulator:- The function of the voltage regulator is to control the voltage giventhe DC voltages used by the processor and other element.to the Arduino board and stabilized) Crystal Oscillator:- The crystal oscillator helps Arduino in dealing with time issues. How does Arduino calculate time? It isby using the crystal oscillator. The number printed on top of the Arduino crystal is 16.000H9H. It tells us that the frequency is16,000,000 Hertz or 16 MHze) Arduino Reset:- We can reset our Arduino board, i.e., start your program from the beginning. You can reset the UNO board intwo ways. First, by using the reset button (17) on the board. Second, we can connect an external reset button to the Arduino pinlabelled RESET (5).f) Pins:-3.3V (6) Supply 3.3 output volt5V (7) Supply 5 output voltMost of the components used with Arduino board works fine with 3.3 volt and 5 volt.GND (8)(Ground) There are several GND pins on the Arduino, any of which can be used to ground your circuit.g) Analog pins:- The Arduino UNO board has five analog input pins A0 through A5. These pins can read the signal from ananalog sensor like the humidity sensor or temperature sensor and convert it into a digital value that can be read by themicroprocessor.h) Main microcontroller:- Each Arduino board has its own microcontroller (11). We can assume it as the brain of your board.The main IC (integrated circuit) on the Arduino is slightly different from board to board. The microcontrollers are usually of theATMEL Company. You must know what IC your board has before loading up a new program from the Arduino IDE. Thisinformation is available on the top of the IC. For more details about the IC construction and functions, you can refer to the datasheet.IX. Arduino Programmingint a A0;int b A1;int c A2;int i 0void e(b,INPUT);pinMode(c,INPUT);}void loop(){double r analogRead(A0);double y analogRead(A1);double b analogRead(A2);if(r 300 && r 750){delay (6.66666666);if((y 300 && y 750) && (i 0)){Serial.println("RYB");i 1;}if((b 300 && b 750) && (i l Journal of Scientific Development and Research (IJSDR) www.ijsdr.org106

ISSN: 2455-2631 October 2017 IJSDR Volume 2, Issue 10i 1;}}}X. FlowchartIJSDR1710024International Journal of Scientific Development and Research (IJSDR) www.ijsdr.org107

ISSN: 2455-2631 October 2017 IJSDR Volume 2, Issue 10XI. Algorithm of Programming1.Start2.Read r,y,b.3.If r is in the range of 300 to 7504.Delay 6.665.If y is in the range of 300 to 7506.Print the output 'phase sequence' RYB7.If b is in the range of 300 to 7508.Print the output 'phase sequence' RBY9.StopXII. Output of the program on the computer screenXIII. ConclusionBy programming through arduino we are able to display the sequence RYB or RBY. Hence the project is successfullyimplemented.The project can also be implemented for future purpose for detecting the phase sequence through latest computerized technique.Similar concept can be also used for detecting the fault in transformer through the implementation of programming .We can alsosend the message to the operator/technician through the GSM module or can programme a relay to trip the circuit breaker in caseof any fault. This device can be connected to number of rotating machine for the protection of machine. The project proposed byus is cost effective and reliable.References:[1].Rashid, M.H., “Power Electronics – Circuits, Devices and applications”, Pearson Education Inc. 2004[2]. Rajamani, H.S. and McMahon, R.A., “Induction motor drives for domestic appliances”, IEEE Industry ApplicationsMagazine, 1997[3] .W.D. Stevenson ,"Elements of Power System Analysis,Mc Graw"- Hill Co.Ltd.,1982IJSDR1710024International Journal of Scientific Development and Research (IJSDR) www.ijsdr.org108

ISSN: 2455-2631 October 2017 IJSDR Volume 2, Issue 10[4]. Sunil S Rao,"Switch Gear and Protection ,Khanna Publication,1999[5]. www.arduino.cc[6]. www.wikipedia.com[7]. www.ni.comIJSDR1710024International Journal of Scientific Development and Research (IJSDR) www.ijsdr.org109

and by programming in arduino (using basic C and arduino IDE) we are able to detect the phase sequence by the concept of zero crossing and the output is displayed on computer screen. In arduino there is 10 bit-ADC (210 1024). The ADC on the Arduino is a 10-bit ADC, meaning it has the ability

Related Documents:

wound 3 phase motors. Rotary Phase Converter A rotary phase converter, abbreviated RPC, is an electrical machine that produces three-phase electric power from single-phase electric power. This allows three phase loads to run using generator or utility-supplied single-phase electric power. A rotary phase converter may be built as a motor .

Upshur County West Virginia Board of Pharmacy April 2020 8 . County Rankings By Indicator Patient County Indicator 1 Indicator 2 Indicator 3 Indicator 4 Indicator 5 Indicator 6 BARBOUR 34 26 38.5 42 24 32 BERKELEY 37 2 19 40.5 2 48 BOONE 2 48 2 36.5 51 3 BRAXTON 43 24 38.5 40.5 18 26

A static phase converter is one that externally changes a three phase motor to a capacitor-start, capacitor-run single phase motor; running at approximately the same amperage as a single phase motor of the same horse-power. The single phase amp draw of a three phase motor on our Phase Splitter is 1 1/2 times the three phase name-plate amps.

6.2.1.Conventional Single Phase to Three-Phase Power Converter Circuits In the classical method of single-phase to three-phase conversion the single-phase power supply is given to the converter, which can either be full, or half bridge type, in cascade with a three-phase inverter with a dc link capacitor in between. The

Grade 8 MFL MYP Phase 1/2 MSL MYP Phase 2/3 (G9 - G10 Elective) Grade 9 MFL 3 MYP Phase 2/3 MSL MYP Phase 3/4 G10 Elective MA MYP4 Grade 10 MSL MYP Phase 4 MA MYP5 Grade 11 MSL DP1 IB Language B Mandarin Standard Level MA DP1 Grade 12 Grade 7 MFL MYP Phase 1 MHL MYP Phase 4 MA MYP1/2 MHL MYP Phase 4 MA MYP3 MHL MYP Phase 5 MHL MYP Phase 5 MHL DP1

The profile matrixfor a given motif contains frequency counts for each letter at each position of the isolated conserved region. 8 Sequence logo and consensus sequence We can extract the so-called consensus sequence, i.e. the string of most frequent letters: A graphical representation of the consensus sequence is called a sequence logo:

Advanced Three-Phase PFC Power Converters Î 359 It is an arrangement proposed as a previously developed three-phase PFC rectifier circuit topology a for three-phase active PFC power converter operating under a principle of discontinuous mode AC current control R1 2 T S Fig. 4 Conventional three phase PFC converter configuration with two-switches

This paper is a single phase to three phase drive system composed of two parallel single phase rectifiers using MAT LAB Simulink model. Keywords:-Power converter, Parallel Rectifier, Induction Motor, Boost Regulator. 1. INTRODUCTION Several solution have been proposed when the objective is to supply a three phase motors from a single phase