Posts Tagged ‘x-ray film machine’

Transistors – Digital Control Interface, Part IV

Monday, July 9th, 2012
     The Olympic Torch relay, soon to culminate in London, is the grand daddy of all relays, starting in one country, traversing many others, then ending its journey at the site of the Olympic Games.  It passes through many athletes’ hands while on its journey, its final purpose being to light the Olympic Flame.  Less glamorous, though still useful, is the relay race that often takes place within digital controls.

      Last time we looked at my design solution for the control of a microprocessor controlled medical x-ray film developing machine, where a field effect transistor (FET) acted as a digital control interface between a 5 volt direct current (VDC) microprocessor and a 12 VDC buzzer.  Well, controlling the buzzer wasn’t the only function of the microprocessor.  It also had to control a 120 volt alternating current (VAC) drive motor, the purpose of which was to move x-ray film through a series of processes within the machine.  Yet another requirement was that the machine’s drive motor run 40 minutes upon activation by a start button, then shut off.

     One of the challenges presented by this specification was that an FET standing alone is only suited to control direct current devices like the buzzer, but not alternating current devices like electric motors.  Direct current flows in one direction only when traveling through wire, and since an FET can only pass current in one direction it is the perfect match for those applications.  

     Now, as the name would imply, alternating current flow alternates, that is, it reverses direction and varies in intensity many times each second.  This is a scenario that FETs are not equipped to handle because they can’t deal with reverse flow.  This meant that, for the purpose of my developing machine, I could not use an FET to directly control the 120 VAC motor.  Now let’s take a look at Figure 1 to get a basic look at how I solved the problem.

microprocessor electric relay control

Figure 1 

 

     Figure 1 shows not one, but two green FET’s, each branching off from the microprocessor chip.  We’ll call them FET 1 and FET 2.  If you recall from last time, the buzzer works on 12 VDC, so FET 1 works well as a direct interface between it and the microprocessor chip.  But in the case of FET 2 we need an intermediary device to handle the alternating current motor.  That device is a 12 VDC electric relay.

     In an earlier blog series on industrial controls I discussed how electric relays use electromagnets to power light bulbs and motors on and off in response to someone pressing a button on a control panel.  We have very much the same mechanics at play in our developing machine.  The relay will power the motor on and off in response to the computer program running within the 5 VDC microprocessor, a programming sequence that is initiated by someone pressing a button. 

     To get the motor control to work in the machine, the gate (G) of FET 2 is connected to another output lead on the microprocessor.  We’ll call that Output Lead 2.  Then, the source (S) of FET 2 is connected to the wire coil in the relay.  To tap into the power source for the relay, the drain (D) of FET 2 is connected to the 12 VDC supply.   Finally, the other end of the relay coil is connected to electrical ground.

     Next time we’ll activate the pushbutton and see how the control initiative passes along a path in a manner reminiscent of the flame in an Olympic Torch relay, but here it passes between the microprocessor, the FET and electrical relay, culminating in power to the drive motor.

 ____________________________________________

Transistors – Digital Control Interface, Part II

Sunday, June 24th, 2012
     Not too long ago I was retained as an engineering expert to testify on behalf of a plaintiff who owned a sports bar.  The place was filled with flat screen televisions that were plugged into 120 volt alternating current (VAC) wall outlets.  To make a long story short, the electric utility wires that fed power to the bar were hit by a passing vehicle, causing the voltage in the outlets to increase well beyond what the electronics in the televisions could handle.  The delicate electronics were not suited to be connected with the high voltage that suddenly surged through them as a result of the hit, and they overloaded and failed.

     Similarly, lower voltage microprocessor and digital logic chips are also not suited to directly connect with higher voltage devices like motors, electrical relays, and light bulbs.  An interface between the two is needed to keep the delicate electronic circuits in the chips from overloading and failing like the ill fated televisions in my client’s sports bar.  Let’s look now at how a field effect transistor (FET) acts as the interface between low and high voltages when put into operation within an industrial product.

     I was once asked to design an industrial product, a machine which developed medical x-ray films, utilizing a microprocessor chip to automate its operation.  The design requirements stated that the product be powered by a 120 VAC, such as that available through the nearest wall outlet.  In terms of functionality, upon startup the microprocessor chip was to be programmed to first perform a 40-minute warmup of the machine, then activate a 12 volt direct current (VDC) buzzer for two seconds, signaling that it was ready for use.  This sequence was to be initiated by a human operator depressing an activation button.

     The problem presented by this scenario was that the microprocessor chip manufacturer designed it to operate on a mere 5 VDC.  In additional, it was equipped with a digital output lead that was limited in functionality to either “on” or “off” and capable of only supplying either extreme of 0 VDC or 5 VDC, not the 12 VDC required by the buzzer.

     Figure 1 illustrates my solution to this voltage problem, although the diagram shown presents a highly simplified version of the end solution.

microprocessor control

Figure 1

     The illustration shows the initial power supplied at the upper left to be 120 VAC.  This then is converted down to 5 VDC and 12 VDC respectively by a power supply circuit. The 5 VDC powers the microprocessor chip and the 12 VDC powers the buzzer.  The conversion from high 120 VAC voltage to low 5 and 12 VDC voltage is accomplished through the use of a transformer, a diode bridge, and special transistors that regulate voltage.  Since this article is about FETs, we’ll discuss transistor power supplies in more depth in a future article.

     To make things a little easier to follow, the diagram in Figure 1 shows the microprocessor chip with only one input lead and one output lead.  In actuality a microprocessor chip can have dozens of input and output leads, as was the case in my solution.  The input leads collect information from sensors, switches, and other electrical components for processing and decision making by the computer program contained within the chip.  Output leads then send out commands in the form of digital signals that are either 0 VDC or 5 VDC.  In other words, off or on.  The net result is that these signals are turned off or on by the program’s decision making process.

     Figure 1 shows the input lead is connected to a pushbutton activated by a human.  The output lead is connected to the gate (G) of the FET.  The FET is shown in symbolic form in green. The FET drain (D) lead is connected to the buzzer and its source (S) lead terminates in connection to electrical ground to complete the electrical circuit.  Remember, electric current naturally likes to flow from the supply source to electrical ground within circuits, and our scenario is no exception.

     Next time we’ll see what happens when someone presses the button to put everything into action.

____________________________________________