Soft start dpt. Soft starting a DC motor using timers

When controlling DC motors, sometimes there is a need for a sudden change in speed (for example, starting from 0% to 100% power or changing speed to the opposite). But this mode of engine operation requires very high currents - several times more than simple movement. If, for example, when rotating at a constant speed, the motor consumes a current of about 500 mA, then at the moment of starting this value can reach 2-3 A. Because of this, it is necessary to use a more powerful power supply subsystem and controller.

The problem of inrush currents can be solved by gradually increasing the speed. Those. Instead of instantaneous acceleration, the motor will accelerate gradually, while smoothing out the peak current consumption at the moment of starting.

Let's connect the motor to the motor-shield on the meringue L298P, as in the previous example:

Do not forget that the motor does not have a feedback connection, so to control the current speed we use the additional variable motorPower

unsigned long StartTimer; // Timer for soft start

pinMode(I1, OUTPUT);

for (motorPower=0;motorPower (

delay(StartTimeStep);

The engine now accelerates more smoothly. Accelerating from 0 to 255 will take almost half a second, and setting the change interval to 1 ms will generally take a quarter of a second. The difference is not very noticeable to the naked eye. But such overclocking is much more gentle on the power unit. In addition, we can adjust the acceleration speed to achieve the desired acceleration.

But the use of delay() does not allow parallel use

no other actions, so we implement a soft start using timers, as with.

byte E1=5; // Motor speed control - connection to output 5

byte I1=4; // Control the direction of rotation - connect to output 4

unsigned long StartTimer; // time counter for soft start

int StartTimeStep=2; // Engine power change interval, in ms

int StartPowerStep=1; // One step change in engine power

int motorPower; // Engine power

pinMode(E1, OUTPUT); // Set the operation of the corresponding pins as outputs

pinMode(I1, OUTPUT);

motorPower=0; // Initial power - 0

digitalWrite(I1, HIGH); // Pin I1 is set to a high logic level, the motor rotates in one direction

if (motorPower if ((millis()-StartTimer)>= StartTimeStep) // Check how much has passed since the last speed change

// if more than the specified interval, increase the speed by one more step

motorPower+= StartPowerStep; // increase speed

analogWrite(E1, motorPower); // At the ENABLE pin a control signal with a new speed

StartTimer=millis(); // Start of a new step

Now the engine accelerates smoothly, and in parallel with acceleration, you can perform any other actions

Starting an induction motor smoothly is always a difficult task because starting an induction motor requires a lot of current and torque, which can burn out the motor winding. Engineers are constantly proposing and implementing interesting technical solutions to overcome this problem, for example, using a switching circuit, autotransformer, etc.

Currently, similar methods are used in various industrial installations for the uninterrupted operation of electric motors.

The principle of operation of an induction electric motor is known from physics, the whole essence of which is to use the difference between the rotation frequencies of the magnetic fields of the stator and rotor. The magnetic field of the rotor, trying to catch up with the magnetic field of the stator, contributes to the excitation of a large starting current. The motor runs at full speed, and the torque value also increases along with the current. As a result, the winding of the unit may be damaged due to overheating.

Thus, it becomes necessary to install a soft starter. Soft starters for three-phase asynchronous motors allow you to protect units from the initial high current and torque that arise due to the sliding effect when operating an induction motor.

Advantages of using a circuit with a soft starter (SPD):

  1. reduction of starting current;
  2. reduction in energy costs;
  3. increasing efficiency;
  4. relatively low cost;
  5. achieving maximum speed without damaging the unit.

How to start the engine smoothly?

There are five main soft starting methods.

  • High torque can be created by adding an external resistance to the rotor circuit as shown in the figure.

  • By including an automatic transformer in the circuit, the starting current and torque can be maintained by reducing the initial voltage. See the picture below.

  • Direct starting is the simplest and cheapest method because the induction motor is connected directly to the power source.
  • Connections using a special winding configuration - the method is applicable for motors intended for operation under normal conditions.

  • Using SCP is the most advanced method of all the methods listed. Here, semiconductor devices such as thyristors or SCRs, which control the speed of an induction motor, successfully replace mechanical components.

Commutator motor speed controller

Most circuits for household appliances and electrical tools are based on a 220 V commutator motor. This demand is explained by its versatility. The units can be powered from direct or alternating voltage. The advantage of the circuit is due to the provision of effective starting torque.

To achieve a smoother start and have the ability to adjust the rotation speed, speed controllers are used.

You can start an electric motor with your own hands, for example, in this way.

MINISTRY OF EDUCATION AND SCIENCE OF UKRAINE

DEPARTMENT OF AUTOMATIC CONTROL SYSTEMS I

ELECTRIC DRIVE

COURSE PROJECT

DISCIPLINE: “ELECTRIC DRIVE THEORY”

ON THE TOPIC: “SOFT START OF A CONTINUOUS STREAM ENGINE

BY SYSTEM “PULSE WIDTH CONVERTER – MOTOR”

POSITIONAL STRUM“

Rozrobiv:

Kerivnyk:

CALENDAR PLAN

Names of the stages of the course project Lines of project stages
1 Analysis of technical specifications and selection of pulse width converter 15 June 2002
2 Analysis of functional diagrams and development of technical documentation 30 June 2002
3 Development of the transistor control system and preparation of the printed circuit board November 20, 2002
4 Design of equivalent circuits 30 leaf fall 2002
5 Pobudova static, mechanical and dynamic characteristics 5th birthday 2002
6 Selecting power elements and setting up circuit parameters 10 breast 2002
7 Rozrahunok energy characteristics 25 Breast 2002
8 Mathematical modeling 10 June 2003
9 Project design 27 June 2003

Student _____________

Kerivnyk _____________

“_______”______________________200 RUR

PERELIK SMALL POZNACEN

SHIP - pulse width converter

DPT - stationary engine

AD - asynchronous motor

IP - impulse converter

EOM – electronic computing machine

IDK - vimi-diagnostic complex

SD - stepper motor

VFD - variable frequency drive

Efficiency - coefficient of corysmic action

GPI - sawtooth generator

ZAVDANNYA

for a student's course project

____________________________________

1. Topic of work: Soft start of a stationary jet motor using the system “Pulse width reversal – stationary jet motor”. The main part is the design of a soft start system for a stationary jet engine based on a PIC 16F 877 microcontroller

2. Line of student’s completed work 01/28/03

3. Output data before operation, technical characteristics of the engine, technical characteristics of other systems of pulse width modulators

4. Substitution of an explanatory note, analysis of the main pulse converters and selection of the most optimal one, development of technical documentation for the stand, development of the principle and functional circuits, selection of power elements iv.

5. Date of publication 200 RUR

CALENDAR PLAN.. 2

THE OVERLINK OF THE MENTAL POSITIONS. 3

ZAVDANNYA.. 4

Introduction. 6

1. Advantages and disadvantages of the SHIP - DPT system. 8

1.1 Switching DC-DC converters (general information) 8

1.2 Analysis of existing pulse converters. 8

2. Functional diagram of the laboratory stand. eleven

3. Development of technical documentation for the laboratory bench of the SHIP - DPT system. 13

3.1 General view of the laboratory stand. 13

3.2 Schematic diagram of the stand after modification. 15

3.3 List of functional capabilities of the laboratory stand. 16

3.4 Control system based on microcontroller PIC 16F 877. 17

4. Calculation of equivalent circuit. 24

5. Static characteristics of the SHIP - DPT system. 26

6. Selection of power elements. 31

6.1 Selecting a power transformer. 31

6.2 Selecting a power transistor. 32

6.3 Selecting a reverse diode. 33

7. Calculation of the converter. 35

8. Calculation of energy characteristics. 42

9. Mathematical model of the SHIP – DPT system. 45

Introduction

Electrical energy conservation is becoming an important part of the overall trend towards environmental protection. Electric motors that drive systems in everyday life and in industry consume a significant portion of the energy produced. Most of these motors operate in unregulated mode and therefore with low efficiency. Recent advances in the semiconductor industry, especially in power electronics and microcontrollers, have made variable speed drives more practical and significantly less expensive. Today, variable speed drives are required not only in high-end and heavy-duty industrial applications such as processing machines or cranes, but increasingly in home appliances such as washing machines, compressors, small pumps, air conditioners, etc. These drives, controlled by advanced algorithms using microcontrollers, have a number of advantages:

increasing the energy efficiency of the system (speed regulation reduces power losses in engines)

improved performance (digital control can add features such as intelligent closed loops, changing frequency properties, controllable fault range, and the ability to interface with other systems)

simplification of electromechanical energy conversion (variable drives eliminate the need for transmissions, gearboxes, gearboxes) ease of software updates; systems based on microcontrollers with flash memory can be quickly changed if necessary. The main condition for their use is to maintain the total cost of the system within reasonable limits. For a number of systems, especially in the home, the total cost should be equivalent to the cost of the unregulated option.

1. Advantages and disadvantages of the SHIP - DPT system

1.1 Switching DC-DC converters (general information)

Changing the consumer voltage value using pulse converters (IP) is called pulse regulation.

Using a pulse converter, the voltage source is periodically connected to the load. As a result, voltage pulses are formed at the output of the converter. Load voltage regulation can be done in three ways:

changing the conductivity interval of the switch at a constant switching frequency (pulse width)

changing the switching frequency at a constant interval of switch conductivity (frequency-pulse)

changing the switching frequency and the conduction interval of the switch (time-pulse)

In this case, the relative conduction time of the switch is regulated, which leads to a smooth change in the average voltage value at the load (in our case, at the DPT armature)

1.2 Analysis of existing pulse converters

The PWB circuit with parallel capacitive switching is shown in Figure 1.1.


Figure 1.1. PWB with parallel capacitive switching

The disadvantage of PSG with parallel capacitive switching is that during the switching process, the voltage at the load reaches double the supply voltage. Another disadvantage is the difficulty of setting up a resonant circuit with capacitor ‘C’ and inductor ‘Dr’.

Figure 1.2 shows a PWB circuit with an additional switching thyristor and a linear choke in the switching unit.


The disadvantage of the circuit is the connection of the switching circuit with the load circuit. This feature complicates switching in light load modes and makes it impossible for the device to operate at idle.

Figure 1.3 shows a diagram of a non-reversible power supply with a sequential key element.



Figure 1.3. Irreversible SPIKE

This circuit is the most suitable for our purpose, since it is characterized by a small number of elements, simplicity of design, fairly high speed and reliability.

Operating principle:

When the VT transistor is turned off from the power supply, energy is consumed. When the transistor VT is turned off, the load current due to E.M.F. self-induction retains its previous direction, closing through the reverse diode VD. Due to the fact that the power source, as a rule, has an inductance, to protect the transistor from overvoltages that occur when the power supply circuit is interrupted, a low-pass filter is installed at the input of the power supply, the output link of which is the capacitor Swx.

2. Functional diagram of the laboratory stand

The functional diagram of an existing laboratory stand is shown in Figure 2.1


Figure 2.1 Functional diagram of the stand

The functional diagram shows the main elements of the stand and the functional interactions between them.

The main element of the stand is the ACS 300 frequency converter. Through it, power is supplied to the asynchronous motor with a squirrel-cage rotor M1 - AOL2-21-4. The stand provides the ability to operate asynchronous dynamic braking mode. It is also possible to control the speed of an asynchronous motor, currents and voltages of both IM and DPT.

In the power circuit of the IM there are a three-phase current sensor and a three-phase voltage sensor, the data from which is supplied through the communication unit to the EOM. The communication unit and the EOM form a measuring and diagnostic complex (IDC). The IDK also receives signals from other sensors and control elements

3. Development of technical documentation for the laboratory bench of the SHIP - DPT system

3.1 General view of the laboratory stand

The appearance of the designed stand is shown in the figure 3.1

1. Load resistor knob

2. Button SB2 “Stop blood pressure”

Semiconductor low-voltage (SSRV) motor devices serve to reduce the damaging effects of surge currents that cause mechanical stress in equipment and system components. At ABB Inc. The main emphasis is on expanding the functions of “soft” starters, which can also be used as motor protective shutdown devices. The operation of such starters is based on monitoring the electric motor, voltage and temperature. A new approach to solving the problem is to smoothly increase the torque rather than the voltage on the motor. The device smooth launch calculates the real stator power, its losses, etc. as a result, the actual power transferred to the rotor. Timer circuits for periodically switching on the load It is important that the torque engine no longer depends directly on the voltage supplied to the motor or on its mechanical characteristics. The increase in torque occurs in accordance with a timed acceleration schedule. Low-voltage "soft" starters from Eaton (S752. SB01 and S811) use a pulse-width modulated (PWM) voltage with an amplitude of 24 V to control the contactor winding. At the same time, in steady state The device consumes only 5 W. Danfoss Ci-tronic motor management devices cover a range of up to 20 kW (depending on input voltage). The smallest module of the device smooth launch The MCI-3 is only 22.5mm wide. The MCI-15 module is designed to operate with a motor with a power of up to 7.5 kW at a voltage of 480 V. An important characteristic of SSRV starters is the smooth stop of the motor. Devices...

For the diagram "Soft starting device for power tools"

Failures of hand-held power tools that sometimes occur - grinders, electric drills and jigsaws - are often associated with their high starting current and significant dynamic loads on gearbox parts that occur during a sudden engine start. Device smooth launch The collector electric motor described in is complex in design, it contains several precision resistors and requires painstaking setup. By using the KR1182PM1 phase regulator microcircuit, it was possible to produce a much simpler device for a similar purpose that does not require setup. You can connect to it without any modification any hand-held power tool powered by a single-phase 220 V, 50 Hz network. Start and stop engine are produced by the switch of the power tool, and in its off state the device does not consume current and can remain connected to the network indefinitely. Scheme The proposed device is shown in the figure. The XP1 plug is plugged into the power socket, and the power tool's power plug is inserted into the XS1 socket. Schemes for doubling DC voltage at 2 kV You can install and connect in parallel several sockets for tools that work alternately. When the power tool circuit is closed by its own switch, voltage is supplied to the phase regulator DA1. Capacitor C2 begins to charge, and the voltage across it gradually increases. As a result, the delay in turning on the internal thyristors of the regulator, and with them the VSI triac, in each subsequent half-cycle of the mains voltage decreases, which leads to a smooth increase in the flow through the motor and, as a result, an increase in its speed. With the capacitance of capacitor C2 indicated in the diagram, acceleration of the electric motor to maximum...

For the circuit "DC-DC converter generating two voltages"

Power Supply Dual Voltage Current Converter Steven Sarns (Donver, CO) RS-232-C data transfer is one of many examples where it is necessary to have a small board that provides both positive and negative power supply. The circuit shown in the figure satisfies these requirements and contains a significantly smaller number of components than similar devices, due to the fact that it simultaneously performs the functions of a boost and inverting inductive converter. Basic scheme Such a converter includes a source of four-phase clock pulses, an inductor and two switches (Fig. 1). Fig. 1 During the first phase of clock pulses, inductor L stores energy through switches S1 and S2. Power regulator on tc122 25 During the second phase, switch S2 opens and energy is transferred to the positive output voltage bus. During the third phase, both switches close, causing the inductor to again accumulate energy. When switch S1 is opened during the final phase of the clock pulses, this energy is transferred to the negative power bus. In a practical circuit (Fig. 2), the D-flip-flop U1 generates four-phase clock pulses, and transistors Q1 and Q2 act as switches. Fig. 2 When clock pulses with a frequency of 8 kHz are received at the input, it provides a voltage of ±12 V to power the linear bus driver...

For the "STABLE CURRENT GENERATOR" circuit

For the amateur radio designer STABLE GENERATOR Stable generators current devices are usually called. the output current of which is practically independent of the load resistance. It can find application, for example, in ohmmeters with a linear scale. In Fig. Figure 1 shows the principle of a stable generator based on two silicon transistors. The size of the collector transistor V2 is determined by the ratio Ik = 0.66/R2.Puc.1 For example, with R2 equal to 2.2 k0m. the collector current of transistor V2 will be equal to 0.3 mA and remains almost constant when the resistance of the resistor Rx changes from 0 to 30 k0m. Diagram of a simple radio transmitter for 6p45s If necessary, the value permanent current can be increased to 3 mA; for this, the resistance of resistor R2 must be reduced to 180 Ohms. A further increase while maintaining high stability of its value both when the load changes and when the temperature increases can only be achieved when using a three-transistor generator shown in Fig. 2. In this case, transistors V2 and V3 should be of average power, and the voltage of the second power source should be 2...3 times greater than the supply voltage of transistors V1, V2. The resistance of resistor R3 is calculated using the above formula, but is additionally adjusted taking into account the spread in the characteristics of the transistors. Puc.2 "Elektrotehnicar" (SFRY), 1976, N 7-8 ...

For the "VHF local oscillator with PLL" circuit

Amateur radio units VHF local oscillator with PLLHeterodynes with phase-locked loop (PLL) allow quite simple means to solve the problem of creating a highly stable source of a variable frequency signal for sports VHF equipment. Such a local oscillator is shown in the figure. It was used in a receiver in the range of 144-146 MHz with one frequency conversion and an intermediate frequency of 10.7 MHz. The local oscillator consists of a controlled oscillator on transistor V1. a reference quartz oscillator (KG) and a high-stable range oscillator (VFO), a mixer on transistor V3, a phase detector on diodes V1, V5 and an amplifier on chip A1. Circuits for TS106-10 Elements of a quartz and highly stable range generator are not shown in the figure. The controlled generator produces a signal that changes when a control voltage is applied to the varicap V2, within the range of 154.7-156.7 MHz. The signal from this generator is supplied to one of the gates of transistor V3 and through a buffer stage to the first mixer of the receiver. A signal with a frequency of 161 MHz is supplied to the second gate of the field-effect transistor of the impedance quartz oscillator. A difference signal, the frequency of which can be in the range of 4.3-6.3 MHz, is isolated on the bandpass filter L5C10C11L6C12. This signal, together with high-frequency voltage from the range generator, is supplied to the phase detector. The error signal passed through the L7C15 low-pass filter and...

For the circuit "Converter DC 12 V to AC 220 V"

Power supply Voltage converter 12 V to AC 220 V Anton Stoilov Offered scheme converter permanent voltage 12 V AC 220 V, which, when connected to a car battery with a capacity of 44 Ah, can power a 100-watt load for 2-3 hours. It consists of a master oscillator on a symmetrical multivibrator VT1, VT2, loaded on powerful paraphase switches VT3-VT8, which switch the current in the primary winding of the step-up transformer TV. VD3 and VD4 protect powerful transistors VT7 and VT8 from overvoltages when operating without load. The transformer is made on a magnetic core Ш36х36, windings W1 and W1" each have 28 turns of PEL 2.1, and W2 - 600 turns of PEL 0.59, and W2 is wound first, and W1 is wound on top of it with a double wire (with the goal of achieving symmetry of the half-windings). When adjusting with the RP1 trimmer, minimal distortion of the output voltage waveform is achieved "Radio Television Electronics" N6/98, pp. 12,13....

For the diagram "Universal voltage regulator and charger-starter for"

Quite often in amateur radio practice there is a need to adjust the alternating voltage within the range of 0...220 V. LATRs (autotransformers) are widely used for this purpose. But their age has already passed and these bulky devices have been replaced by modern thyristor regulators, which have one drawback: the voltage in such devices is regulated by changing the duration of alternating voltage pulses. Because of this, it is impossible to connect a highly inductive load to them (for example, a transformer or inductor, as well as any other radio device containing the elements listed above). The voltage regulator shown in the figure is free from this drawback. It combines: a current overload protection device, a thyristor voltage regulator with a bridge regulator, and high efficiency (92...98%). In addition, the regulator works in conjunction with a powerful transformer and rectifier, which can be used to automatically turn off radio equipment of car batteries and as a starting device when the battery is discharged. Main parameters of the voltage regulator: Rated supply voltage, V 220 ± 10%; AC output voltage, V 0...215; Efficiency, no less, percent(s) 92; Maximum load power, kW 2. Main parameters of the charging and starting device: Output voltage permanent current, V 0...40; Direct current consumed by the load, A 0...20; Starting current (with duration launch 10 c), A 100. Switch SA2 selects either alternating voltage regulation within 0...98% of the network,...

For the circuit "Thyristor turn signal relay"

Automotive electronics Thyristor turn signal relay. Kazan A. STAKHOV A non-contact car turn signal relay can be designed using silicon controlled diodes - thyristors. Scheme such a relay is shown in the figure. The relay is a conventional multivibrator on transistors T1 and T2;, the switching frequency of which determines the blinking frequency of the lamps, since the same multivibrator controls the switch on thyristors D1 and D4. Any low-power low-frequency transistors can operate in the multivibrator. When connected by a switch P1 of the signal lamps of the front and rear sidelights, the multivibrator signal opens the thyristor D1 and the battery voltage is applied to the signal lamps. In this case, the right plate of capacitor C1 is charged positively (relative to the left plate) through resistor R5. Triac thermostat circuit When the triggering pulse of the multivibrator is applied to thyristor D4, the same thyristor opens and the charged capacitor C1 is connected to thyristor D1 so that it instantly receives a reverse voltage between the anode and the cathode. This reverse voltage closes thyristor D1, which interrupts the current in the load. The next triggering pulse of the multivibrator opens thyristor D1 again and the whole process is repeated. D223 diodes are used to limit negative emissions current and improving the startup of thyristors. Any low-power thyristors with any letter indices can be used in the switch. When using this...

For the "Iron with sound heating indication" circuit

I propose a simple way to replace the light indication of the heating of the iron coil with a sound one. I took the DD1 chip, already soldered to the BA speaker, from a musical postcard. It is powered by the STs21 1.5 V element permanent current, and the light bulb in the iron is 1.5 V AC, so you need to include the VD1 KD105B diode and capacitor C1 in the circuit. The melody in the postcard was turned on by connecting two contacts, so they must be soldered together. With this we set the “start of melody” mode. Having removed the power component from the circuit, we free pins 1 and 2 for subsequent connection to the iron contacts. Solder a diode to one of the terminals. Assembled scheme connects to the contacts of the light bulb and is fixed inside the iron body. Checked scheme by turning on the iron in the network (the melody turns on) and heating the coil to a certain temperature, after which the melody turns off, signaling that the coil is turned off. D. Pechenkov, Minsk region...

For the circuit "Microtransmitter with current stabilizer"

Radio spy - Micro transmitter with stabilizer Scheme easy to set up and manufacture, allows you to change the frequency over a wide range. The device retains its robotic capability at a supply voltage greater than 1V. Fig. 1...

20. Methods of starting a DC motor.

There are three possible ways to start the engine:

1) direct start, when the armature circuit is connected directly to the network at its full voltage;

2) starting using a starting rheostat or starting resistances connected in series to the armature circuit;

3) starting at low armature circuit voltage.

Direct starting is used only for engines with a power of up to several hundred watts, for which Ra is relatively large and therefore, when starting, the starting process lasts no more than 1-2 seconds.

The most common is starting using a starting rheostat or starting resistances

Methods for starting a DC motor

1. Direct start- the armature winding is connected directly to the network.

The motor armature current is determined by the formula. (4.1) If we assume that during direct starting the values ​​of the supply voltage U and the resistance of the armature winding R I remain unchanged, then the armature current depends on the back EMF E. At the initial moment of armature launch, the engine is stationary ( =0) and in its winding E=0.Therefore, when connected to the network, a starting current appears in the winding
. (4.2) Usually resistance R I not much, especially for high-power motors, therefore the value of the starting current reaches 20 times the rated current of the motor. Unacceptably large values, 10 This creates a danger of breaking the machine shaft and strong sparking appears under the commutator brushes. For this reason, such a start is used only for low-power engines with R I relatively large.

2)Rheostat start- a starting rheostat is included in the armature circuit to limit the current. At the initial moment of start-up at =0 And R P =max The armature current will be equal


. (4.3) The maximum value of R p is selected so that for machines of high and medium power the armature current at start-up
, and for low-power machines
. Let's consider the process of rheostatic starting using the example of a motor with parallel excitation (Fig. 4.1). At the initial moment, the start-up is carried out according to the rheostatic characteristic 4, corresponding to the maximum resistance value R P, while the engine develops maximum starting torque M nmax.Adjustment rheostat R R is output so that I V And F were maximum. As the engine accelerates, the engine torque decreases, since as the rotor speed increases, the EMF also increases E, and as a result, the armature current, which determines its value, decreases. Upon reaching a certain value M pmin piece of resistance R P is output, as a result of which the torque increases again to M nmax, the engine switches to operation according to rheostatic characteristic 3 and accelerates to the value M pmin. Thus, gradually reducing the resistance of the starting rheostat, the engine is accelerated along individual segments of the rheostatic characteristic until it reaches natural characteristic 1. The average starting torque is determined from the expression
. (4.4) the engine accelerates with some constant acceleration.

A similar start is possible for series-excited motors. The number of starting stages depends on the rigidity of the natural characteristic and the requirements for smooth starting. Starting rheostats are designed for short-term operation under current.

In real devices, start-up is automatic. Microcontroller, according to given the algorithm, controls the switching elements (relay control), turning off sections of the starting rheostat and practically implementing the process described above.

The control algorithm can be constructed using three basic principles:

1) EMF principle

2) Current principle

3) The principle of time.

The idea of ​​implementing these principles can be explained using a starting circuit based on electromagnetic relays (which was practically used before the widespread introduction of microprocessor control systems) Figure 4.3. A series of relays are connected in parallel to the armature of the machine, which, with an increase in the rotation speed, and therefore the EMF, are sequentially activated and, with their contacts, remove the starting rheostat sections from operation, gradually reducing the resistance of the armature circuit.

When using the current principle, series-connected current relays are used, which give a command through their normally closed contacts to sequentially switch on the corresponding contactors K i when the current drops to a given level.

The time principle involves the use of time relays, which, through calculated time settings, give a command to bypass the rheostat sections.

4)Start by smoothly increasing the supply voltage - starting is carried out from a separate regulated power source. It is used for high-power engines, where it is impractical to use bulky rheostats due to significant energy losses.

If you find an error, please select a piece of text and press Ctrl+Enter.