AN2182 Application note

Size: px
Start display at page:

Download "AN2182 Application note"

Transcription

1 Application note Filters using the ST10 DSP library Introduction The ST10F2xx family provides a 16-bit multiply and accumulate unit (MAC) allowing control-oriented signal processing and filtering widely used in digital applications. An ST10 DSP software library, developed by STMicroelectronics, contains a set of basic arithmetic operations such as multiplication as well as two main filter functions, FIR (finite impulse response) and IIR (infinite impulse response), mainly used in digital signal processing. The first chapter of this application note describes a theoretical digital implementation of four different filters: Low-pass filter High-pass filter Passband filter Cut-band filter The method adopted for each filter is the approximation of the ideal filter model by a FIR filter. This theory aims to compute the FIR s coefficients by truncating the real signal with a known window. The second chapter illustrates a practical implementation of a low-pass filter using the ST10 DSP library, its results and its limitations. July 2007 Rev 1 1/

2 Contents AN2182 Contents 1 ST10 DSP library Digital filtering principles Fourier transform of a sampled signal Linear filtering Finite impulse response filters Low-pass filter High-pass filter Passband filter Cutoff band filter Implementation example using the ST10 DSP library Overview Sampling frequency and FIR coefficients Results Frequency response Phase response References Revision history /18

3 ST10 DSP library 1 ST10 DSP library The ST10 DSP free library is a set of arithmetic and signal processing functions based on the ST10 MAC unit. These functions are callable from C and fully compatible with the Tasking compiler. This library manipulates signed integers coded on 16 or 32 bits. These integers represent numbers belonging to the interval [ 1, 1[. We name these formats: Q1.31 and Q1.15. Table 1. Examples of integer representations / /2 31 Q1.15 0xFFFF 0xC000 0xA000 0x0000 0x2000 0x4000 0x7FFF 0x7FFF Q1.31 0xFFFF FFFF 0xC xA x x x x7FFF x7FFFFFFF For a detailed description of the ST10 DSP library, please refer to the application note AN1442 Signal processing with ST10-DSP. 3/18

4 Digital filtering principles AN Digital filtering principles Assume a continuous signal x(t) (the complex form corresponds to the signal s phase and magnitude at the instant t) with a pass band B. Assume that this signal will be filtered using a filter with a continuous impulse response h(t). When digital processing has to be used, it is necessary to sample the input signal with a frequency of F s = 1/T s (T s being the sampling period). The output signal is then reconstituted from the samples obtained at the filter s output. Figure 1. Example of input and output signals Filter h Input signal Output signal The Shannon theorem states that when sampling a signal at discrete intervals, the sampling frequency F s should be greater than twice the highest frequency of the input signal. 2.1 Fourier transform of a sampled signal Signals are converted from the time domain to the frequency domain usually through the Fourier transform. With the Fourier transform, the signal is converted to a magnitude and phase at each frequency. The Fourier transform of the sampled signal x(k) has the following expression: Xf () = xk ( )e i2kπf The time representation can be computed from the X(f) as follows: xk ( ) = Xf ()e i2kπf 2.2 Linear filtering Using the notations defined in the previous section, the output signal y(n) is the convolution of the input signal x(k) and the filter impulse response h(k). yn ( ) = hn ( k)xk ( ) = ( hk ( ) xk ( )) n where x(n) = x(nt s ), h(n k) = h((n k)t s ) and y(n) = y(nt s ). 4/18

5 Digital filtering principles The output signal frequency response is given by the following expression: Yf () = Hf () Xf () where H(f), X(f) and Y(f) are the respective Fourier transforms of h(k), x(k) and y(k). 2.3 Finite impulse response filters The FIR (Finite Impulse Response) are non-recursive filters, meaning that the output signal y(i) is a linear combination of N input samples x(k) in the case of a N 1 order filter. Its equation is N 1 yn ( ) = a k xn ( k) k = 0 where a k are the FIR s coefficients. A FIR filter is characterized by its order and its coefficients and can be used to implement any kinds of filters (low-pass, high-pass, pass-band or cutoff band). 5/18

6 Low-pass filter AN Low-pass filter The aim of this section is to create a low-pass filter with a cutoff frequency F c and a gain G = 1, by determining a FIR filter using the digital approach. The FIR coefficients correspond to h(n) where h is its continuous time response and h(n) = h(nt s ). In the frequency domain, the ideal filter corresponding to these criteria has the following response: Figure 2. Ideal low-pass filter frequency response Magnitude 1 -F c 0 F c Frequency This filter s impulse response in the time domain is (1) ht () = Hf ()e 2πift d f = 2F c sinc2tf ( c ) This response is sampled with a rate F s = 1/T s (sampling frequency), so the discrete response has the following expression ( 2) h s () t = hnt ( s )δ( t nt s ) The impact of sampling h(t) with a rate F s is a periodization of the analog signal spectrum around F s and a gain of F s. In fact, the frequency response corresponding to the sampled impulse response is H s () f = F s Hf ( nf s ) Therefore, to obtain a gain of 1, the h s response filter should be divided by F s. Using equations (1) and (2), the low-pass filter time response becomes: F c (3) h s () t = sinc( 2 n F F c T s )δ( t ns) s The impulse response is a sinus cardinal (sinc) function centered at the origin. 6/18

7 Low-pass filter Figure 3. Ideal low-pass filter impulse response h(kt s ) h(k/2f c ) = 0 h(0)= 2F c k>=1 Two issues can be observed at this stage: First, the filter length is infinite. This means that in order to have the ideal low-pass filter, an infinite number of filter coefficients is required. In practice, this cannot be done because of the calculation complexity. To solve this feasibility problem, the filter s impulse response should be truncated by a known window. In this application note, we will truncate this response using a rectangular window. Truncating the filter s impulse response, however, changes the ideal rectangular response; more fluctuations are observed in the pass band. In order to reduce this effect, the FIR s coefficients numbers can be increased. Figure 4. Effect of truncating the ideal impulse with a rectangular window W(n) Magnitude 1 Time domain Time -F c 0 F c Frequency domain Frequency In the following sections, we will note: W is the window s time response N the number of coefficients included in the window W. This means that the window s length is (N 1)T s. The window should be large enough to include at least the first lobe of the sinus cardinal. Second, the truncated response is finite but not causal because there are non-null coefficients on the negative time axis. This means that the filter reacts before being excited by the input signal. Practically, this filter is not feasible. To solve this issue, we will shift the filter s impulse response by (N 1)T s /2. By doing so, all coefficients on the negative time axis are 0 and the filter becomes feasible. The impact of shifting the filter s time response is a phase shift of ( N 1) π frequency domain. f F s in the 7/18

8 Low-pass filter AN2182 By fixing a number of points N and a sampling period T s, the FIR coefficients h(n) corresponding to a low-pass filter with a cutoff frequency F c are F c (4) hn ( ) = sinc 2 F F c n N s 2 Ts W n N if n = 0.. N 1 and 0 if n > N 1. 8/18

9 High-pass filter 4 High-pass filter The aim of this section is to create a high-pass filter with a cutoff frequency F c and a gain G = 1, by determining a FIR h filter using the digital approach. The FIR coefficients correspond to h(n) where h is its continuous time response and h(n) = h(nt s ). In the frequency domain, the ideal high-pass filter corresponding to these criteria has the following response: Figure 5. Ideal high-pass filter frequency response 1 1 -F s -F c 0 F c F s -F s -F c 0 F c F s High-pass filter F c Low-pass filter F c If we consider H H (f) the frequency response of the high-pass filter with a cutoff frequency F c and H L (f) the frequency response of the low-pass filter with a cutoff frequency F c, we can easily notice that (5) H H () f = 1 H L () f In the time domain, this gives h H ( n) δ n N c 2F c 2 F 2 F c n N Ts (6) = sin s 2 W n N where N is the number of the filter s coefficients, N 1 is the filter s order and W is the window s time function. In the case of a high-pass filter, N should be odd because of the dirac. 9/18

10 Passband filter AN Passband filter The aim of this section is to create a passband filter with a pass frequency F1, a cutoff frequency F2> F1, and a gain G=1, by determining a FIR h filter using the digital approach. In the frequency domain, the ideal passband filter corresponding to these criteria has the following response: Figure 6. Ideal passband filter frequency response Magnitude 1 -F2 -F1 0 F1 F2 Frequency This filter s impulse response in the time domain is F1 F2 ht () = Hf ()e 2πift df = e 2πift df + e 2πift df = 2F 2 sinc2f ( 2 t) 2F 1 sinc2f ( 1 t) F2 F1 Here, the same method described in the section entitled Low-pass filter is handled. Please refer to this section for more details. If we fix N the number of the filter s coefficients and T s the sampling period then we obtain F 2 hn ( ) c 2F F 2 n N 1 F Ts 1 sin c 2F s 2 F 1 n N Ts (7) = sin s 2 W n N with n = 0.. N 1 and where N is the number of the FIR coefficients N 1 is the FIR s order W is the window time response 10/18

11 Cutoff band filter 6 Cutoff band filter The aim of this section is to create a cutoff band filter with a cutoff frequency F1, a pass frequency F2> F1, and a gain of G=1, by determining a FIR filter using the digital approach. The FIR coefficients correspond to h(n) where h is the continuous time response of the filter and h(n) = h(nt s ). In the frequency domain, the ideal cutoff band filter corresponding to these criteria has the following response: Figure 7. Ideal cut-band filter frequency response Magnitude 1 Magnitude 1 -F2 -F1 0 F1 F2 Frequency -F2 -F1 0 F1 F2 Frequency Cut-band filter Passband filter If we consider H P (f) the frequency response of the passband filter with a pass frequency F1 and cutoff frequency F2 H C (f) the frequency response of the cutoff band filter with a cutoff frequency F1 and pass frequency F2 T s is the sampling period then, we can easily notice that (8) H C () f = 1 H P () f In the time domain, this gives h C ( n) δ n N F c 2F F 2 n N 1 F sin s 2 Ts sinc 2F F 1 n N s 2 Ts = with n = 0.. N 1 and where N is the number of FIR coefficients N 1 is the FIR s order W is the window time response In the case of a cutoff band filter, N should be odd because of the dirac, that is the FIR s order should be even. 11/18

12 Implementation example using the ST10 DSP library AN Implementation example using the ST10 DSP library 7.1 Overview In this example, an input signal is fed to an analog input of the ST10F27x, processed by a digital low-pass filter and then output on a PWM output setup as a digital to analog converter. The digital filter is a low-pass filter with a cutoff frequency equal to 2 khz and an order of 14 implemented on the ST10F27x using the DSP library provided by STMicroelectronics. Figure 8. Low-pass filter modules Input signal P5.0 P5.0 Low- P7.0 ADC Signal Signal PWM module sampled pass module filter filtered DSP ST10F kω 220pc Output signal The whole implementation includes the following elements: ADC (analog-to-digital converter): the 10-bit ADC of the ST10F27x is used. The input signal is entered on channel 0 (P5.0) of the ST10F27x. The ADC conversion time is 4.85 µs (ADCST = ADCTC and ST10 frequency = 40 MHz). When the conversion is complete, the result stored in the ADDAT register is provided to the FIR filter module. Digital filter module: it provides a digital filtered sample. The function used in this application is the fir_q15_q15_q15() provided in the LibST10.h. This means that the inputs, outputs and the FIR coefficients are fractional between 1 and 1 and are coded in the format Q1.15. DAC (digital-to-analog converter): this module converts the digital filtered signal into an analog one. An 8-bit DAC is implemented using the ST10F27x PWM and an analog lowpass filter RC. The PWM frequency is khz. The RC filter is used to retain the continuous components and to remove the frequency of the PWM module. In our case, the RC cutoff frequency is 26.8 khz. The digital filtered sample sets the pulse width of the PWM signal. 12/18

13 Implementation example using the ST10 DSP library The following flowchart summarizes the software implementation of the low-pass filter: Figure 9. Low-pass filter flowchart PWM initialization (PP0 = 0xFF) FIR structure initialization (1) ADC initialization Circular buffer initialization (2) A PWMIR = 1 No Yes Clear PWMIR Trigger ADC conversion ADCIR = 1 No Yes ADCIR = 0 Update the circular buffer with (ADDAT << 5) (3) Apply the filter->output PW0 = PP (Output >> 7) (4) 1. Please refer to the technical note ST10 DSP library for a detailed description of the FIR structure used and its fields. 2. If the filter s order is 14, 15 input samples are needed to compute an output. A circular buffer is used to store the 15 input samples of the input signal. The size of the circular buffer is 2 x (filter s order +1), which is 30 in this example. An input sample is stored twice in the circular buffer: at buffer[i] and buffer[i + filter s order +1] where 0<= i<= filter s order. 3. The ST10F27x ADC converts analog voltages between 0 and 5V into 10-bit digital values. The inputs for the fir_q15_q15_q15 should be fractional. To normalize these samples, they are shifted to the left. 4. The FIR function delivers a fractional output coded on 16 bits(q1.15). The DAC realized with the ST10F27x is an 8-bit one. B 13/18

14 Implementation example using the ST10 DSP library AN Sampling frequency and FIR coefficients Using the flowchart in the previous section, the sampling period is the time needed between point A and point B. To calculate the FIR s coefficients, the sampling period should be known. We measure the time between points A and B and the result is 17.5 khz. Note that to reconstitute the filtered signal, the input signal should not contain frequencies greater than 8.75 khz. The FIR s coefficients are then computed according to this sampling frequency h0 ( ) h1 ( ) h2 ( ) h3 ( ) h4 ( ) h5 ( ) h6 ( ) h7 ( ) h8 ( ) h9 ( ) h10 ( ) h11 ( ) h12 ( ) h13 ( ) h14 ( ) = 0.23 sinc( 1.61) 0.23 sinc( 1.37) 0.23 sinc( 1.14) 0.23 sinc( 0.914) 0.23 sinc( 0.68) 0.23 sinc( 0.46) 0.23 sinc( 0.23) 0.23 sinc( 0) 0.23 sinc( 0.23) 0.23 sinc( 0.46) 0.23 sinc( 0.68) 0.23 sinc( 0.914) 0.23 sinc( 1.14) 0.23 sinc( 1.37) 0.23 sinc( 1.61) = = Results To analyze the filter s frequency and phase responses, a sinusoidal signal of a 2V amplitude is used. The input voltage varies between 0 and 2 V Frequency response To draw the filter s frequency response, the amplitude of the output signal is measured. The following figure gives the filter s response. Figure 10. Filter s frequency response Gain in db Frequency 14/18

15 Implementation example using the ST10 DSP library Phase response The following figure gives the phase response. Figure 11. Phase response 120 Phase in Frequency The code implemented to generate this digital low-pass filter can be used to implement a highpass, a passband or a cutoff band filter. One simply needs to change the filter s coefficients and the number of coefficients. However, with this implementation, care should be taken with the sampling frequency, which changes with the filter s coefficients number and the ST10F27x frequency. 15/18

16 References AN References 1. ST10F276 user manual 2. ST10F276 datasheet 3. AN1442 Signal processing with ST10-DSP, application note 16/18

17 Revision history 9 Revision history Table 2. Document revision history Date Revision Changes 19-Jul Initial release. 17/18

18 Please Read Carefully: Information in this document is provided solely in connection with ST products. STMicroelectronics NV and its subsidiaries ( ST ) reserve the right to make changes, corrections, modifications or improvements, to this document, and the products and services described herein at any time, without notice. All ST products are sold pursuant to ST s terms and conditions of sale. Purchasers are solely responsible for the choice, selection and use of the ST products and services described herein, and ST assumes no liability whatsoever relating to the choice, selection or use of the ST products and services described herein. No license, express or implied, by estoppel or otherwise, to any intellectual property rights is granted under this document. If any part of this document refers to any third party products or services it shall not be deemed a license grant by ST for the use of such third party products or services, or any intellectual property contained therein or considered as a warranty covering the use in any manner whatsoever of such third party products or services or any intellectual property contained therein. UNLESS OTHERWISE SET FORTH IN ST S TERMS AND CONDITIONS OF SALE ST DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY WITH RESPECT TO THE USE AND/OR SALE OF ST PRODUCTS INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE (AND THEIR EQUIVALENTS UNDER THE LAWS OF ANY JURISDICTION), OR INFRINGEMENT OF ANY PATENT, COPYRIGHT OR OTHER INTELLECTUAL PROPERTY RIGHT. UNLESS EXPRESSLY APPROVED IN WRITING BY AN AUTHORIZED ST REPRESENTATIVE, ST PRODUCTS ARE NOT RECOMMENDED, AUTHORIZED OR WARRANTED FOR USE IN MILITARY, AIR CRAFT, SPACE, LIFE SAVING, OR LIFE SUSTAINING APPLICATIONS, NOR IN PRODUCTS OR SYSTEMS WHERE FAILURE OR MALFUNCTION MAY RESULT IN PERSONAL INJURY, DEATH, OR SEVERE PROPERTY OR ENVIRONMENTAL DAMAGE. ST PRODUCTS WHICH ARE NOT SPECIFIED AS "AUTOMOTIVE GRADE" MAY ONLY BE USED IN AUTOMOTIVE APPLICATIONS AT USER S OWN RISK. Resale of ST products with provisions different from the statements and/or technical features set forth in this document shall immediately void any warranty granted by ST for the ST product or service described herein and shall not create or extend in any manner whatsoever, any liability of ST. ST and the ST logo are trademarks or registered trademarks of ST in various countries. Information in this document supersedes and replaces all information previously supplied. The ST logo is a registered trademark of STMicroelectronics. All other names are the property of their respective owners STMicroelectronics - All rights reserved STMicroelectronics group of companies Australia - Belgium - Brazil - Canada - China - Czech Republic - Finland - France - Germany - Hong Kong - India - Israel - Italy - Japan - Malaysia - Malta - Morocco - Singapore - Spain - Sweden - Switzerland - United Kingdom - United States of America 18/18

STEVAL-ISQ010V1. High-side current-sense amplifier demonstration board based on the TSC102. Features. Description

STEVAL-ISQ010V1. High-side current-sense amplifier demonstration board based on the TSC102. Features. Description High-side current-sense amplifier demonstration board based on the TSC102 Data brief Features Independent supply and input common-mode voltages Wide common-mode operating range: 2.8 V to 30 V Wide common-mode

More information

EVAL-RHF310V1. EVAL-RHF310V1 evaluation board. Features. Description

EVAL-RHF310V1. EVAL-RHF310V1 evaluation board. Features. Description evaluation board Data brief Features Mounted Engineering Model RHF310K1: Rad-hard, 120 MHz, operational amplifier (see RHF310 datasheet for further information) Mounted components (ready-to-use) Material:

More information

AN3332 Application note

AN3332 Application note Application note Generating PWM signals using STM8S-DISCOVERY Application overview This application user manual provides a short description of how to use the Timer 2 peripheral (TIM2) to generate three

More information

BD235 BD237. Low voltage NPN power transistors. Features. Applications. Description. Low saturation voltage NPN transistors

BD235 BD237. Low voltage NPN power transistors. Features. Applications. Description. Low saturation voltage NPN transistors BD235 BD237 Low voltage NPN power transistors Features Low saturation voltage NPN transistors Applications Audio, power linear and switching applications Description The devices are manufactured in Planar

More information

AN4014 Application Note Adjustable LED blinking frequency using a potentiometer and STM8SVLDISCOVERY Application overview

AN4014 Application Note Adjustable LED blinking frequency using a potentiometer and STM8SVLDISCOVERY Application overview Application Note Adjustable LED blinking frequency using a potentiometer and STM8SVLDISCOVERY Application overview Note: This document introduces a very simple application example which is ideal for beginners

More information

STEVAL-ISA005V1. 1.8W buck topology power supply evaluation board with VIPer12AS. Features. Description. ST Components

STEVAL-ISA005V1. 1.8W buck topology power supply evaluation board with VIPer12AS. Features. Description. ST Components Features Switch mode general purpose power supply Input: 85 to 264Vac @ 50/60Hz Output: 15V, 100mA @ 50/60Hz Output power (pick): 1.6W Second output through linear regulator: 5V / 60 or 20mA Description

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) High power PNP epitaxial planar bipolar transistor Features High breakdown voltage V CEO = -120 V Complementary to 2STC4467 Fast-switching speed Typical f t = 20 MHz Fully characterized at 125 o C Applications

More information

STEVAL-CCA040V1. 4X10 Watt dual/quad power amplifier demonstration board based on the STA540SAN. Features. Description

STEVAL-CCA040V1. 4X10 Watt dual/quad power amplifier demonstration board based on the STA540SAN. Features. Description 4X10 Watt dual/quad power amplifier demonstration board based on the STA540SAN Features High output-power capability: 4x10 W / 4 Ω at 17 V, 1 KHz, THD = 10% 2x26 W / 4 Ω at 14.4 V, 1 KHz, THD = 10% 2x15

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) 2N6284 2N6287 Complementary power Darlington transistors Features Complementary transistors in monolithic Darlington configuration Integrated collector-emitter antiparallel diode Applications Audio power

More information

R 1 typ. = 15 kω. Order codes Marking Polarity Package Packaging. 2N6036 2N6036 NPN SOT-32 Tube 2N6039 2N6039 PNP SOT-32 Tube

R 1 typ. = 15 kω. Order codes Marking Polarity Package Packaging. 2N6036 2N6036 NPN SOT-32 Tube 2N6039 2N6039 PNP SOT-32 Tube 2N6036 2N6039 Complementary power Darlington transistors Features. Good h FE linearity High f T frequency Monolithic Darlington configuration with integrated antiparallel collector-emitter diode Applications

More information

AN3218 Application note

AN3218 Application note Application note Adjacent channel rejection measurements for the STM32W108 platform 1 Introduction This application note describes a method which could be used to characterize adjacent channel rejection

More information

D44H8 - D44H11 D45H8 - D45H11

D44H8 - D44H11 D45H8 - D45H11 D44H8 - D44H11 D45H8 - D45H11 Complementary power transistors Features. Low collector-emitter saturation voltage Fast switching speed TAB Applications Power amplifier Switching circuits 1 2 3 Description

More information

BD241A BD241C. NPN power transistors. Features. Applications. Description. NPN transistors. Audio, general purpose switching and amplifier transistors

BD241A BD241C. NPN power transistors. Features. Applications. Description. NPN transistors. Audio, general purpose switching and amplifier transistors BD241A BD241C NPN power transistors Features. NPN transistors Applications Audio, general purpose switching and amplifier transistors Description The devices are manufactured in Planar technology with

More information

BD243C BD244C. Complementary power transistors. Features. Applications. Description. Complementary NPN-PNP devices. Power linear and switching TO-220

BD243C BD244C. Complementary power transistors. Features. Applications. Description. Complementary NPN-PNP devices. Power linear and switching TO-220 BD243C BD244C Complementary power transistors Features. Complementary NPN-PNP devices Applications Power linear and switching Description The device is manufactured in Planar technology with Base Island

More information

AN279 Application note

AN279 Application note Application note Short-circuit protection on the L6201, L6202 and the L6203 By Giuseppe Scrocchi and Thomas Hopkins With devices like the L6201, L6202 or L6203 driving external loads you can often have

More information

ST26025A. PNP power Darlington transistor. Features. Applications. Description

ST26025A. PNP power Darlington transistor. Features. Applications. Description ST26025A PNP power Darlington transistor Features High current monolithic Darlington configuration Integrated antiparallel collector-emitter diode Applications Automotive fan control Linear and switching

More information

BD533 BD535 BD537 BD534 BD536

BD533 BD535 BD537 BD534 BD536 BD533 BD535 BD537 BD534 BD536 Complementary power transistors Features. BD533, BD535, and BD537 are NPN transistors Description The devices are manufactured in Planar technology with Base Island layout.

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) High power PNP epitaxial planar bipolar transistor Features High breakdown voltage V CEO = -250 V Complementary to 2STC5949 Typical f t = 25 MHz Fully characterized at 125 o C Application Audio power amplifier

More information

AN2581 Application note

AN2581 Application note AN2581 Application note STM32F10xxx TIM application examples Introduction This application note is intended to provide practical application examples of the STM32F10xxx TIMx peripheral use. This document,

More information

BUX87. High voltage NPN power transistor. Features. Applications. Description

BUX87. High voltage NPN power transistor. Features. Applications. Description High voltage NPN power transistor Features High voltage capability (450 V V CEO ) Minimum lot-to-lot spread for reliable operation High DC current gain Applications Flyback and forward single transistor

More information

Order codes Marking Polarity Package Packaging. MJD44H11T4 MJD44H11 NPN DPAK Tape and reel MJD45H11T4 MJD45H11 PNP DPAK Tape and reel

Order codes Marking Polarity Package Packaging. MJD44H11T4 MJD44H11 NPN DPAK Tape and reel MJD45H11T4 MJD45H11 PNP DPAK Tape and reel MJD44H11 MJD45H11 Complementary power transistors Features. Low collector-emitter saturation voltage Fast switching speed Surface-mounting TO-252 (DPAK) power package in tape and reel (suffix "T4") Applications

More information

MJE182 Low voltage high speed switching NPN transistor Features Applications Description High speed switching NPN device

MJE182 Low voltage high speed switching NPN transistor Features Applications Description High speed switching NPN device Low voltage high speed switching NPN transistor Features High speed switching NPN device Applications Audio amplifier High speed switching applications Description This device is an NPN low voltage transistor

More information

2STC4468. High power NPN epitaxial planar bipolar transistor. Features. Application. Description

2STC4468. High power NPN epitaxial planar bipolar transistor. Features. Application. Description High power NPN epitaxial planar bipolar transistor Features High breakdown voltage V CEO = 140 V Complementary to 2STA1695 Typical f t = 20 MHz Fully characterized at 125 o C Application Audio power amplifier

More information

2ST2121. High power PNP epitaxial planar bipolar transistor. Features. Applications. Description 1 2 TO-3

2ST2121. High power PNP epitaxial planar bipolar transistor. Features. Applications. Description 1 2 TO-3 High power PNP epitaxial planar bipolar transistor Features High breakdown voltage V CEO = -250 V Complementary to 2ST5949 Typical f t = 25 MHz Fully characterized at 125 o C Applications Audio power amplifier

More information

AN3134 Application note

AN3134 Application note Application note EVAL6229QR demonstration board using the L6229Q DMOS driver for a three-phase BLDC motor control application Introduction This application note describes the EVAL6229QR demonstration board

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) High voltage fast-switching NPN Power transistor General features High voltage and high current capability Low spread of dynamic parameters Low base-drive requirements Very high switching speed High ruggedness

More information

Order codes Marking Package Packaging 2STF SOT-89 2STN2550 N2550 SOT-223. November 2008 Rev 1 1/8

Order codes Marking Package Packaging 2STF SOT-89 2STN2550 N2550 SOT-223. November 2008 Rev 1 1/8 2STF2550 2STN2550 Low voltage high performance PNP power transistors Preliminary Data Features Very low collector-emitter saturation voltage High current gain characteristic Fast switching speed Surface

More information

R 1 typ. = 15 kω. Order codes Marking Polarity Package Packaging. STX112-AP X112 NPN TO92-AP Ammopack STX117-AP X117 PNP TO92-AP Ammopack

R 1 typ. = 15 kω. Order codes Marking Polarity Package Packaging. STX112-AP X112 NPN TO92-AP Ammopack STX117-AP X117 PNP TO92-AP Ammopack STX112 STX117 Complementary power Darlington transistors Features. Good h FE linearity High f T frequency Monolithic Darlington configuration with integrated antiparallel collector-emitter diode Application

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) Low voltage fast-switching PNP power transistor Features Very low collector-emitter saturation voltage High current gain characteristic Fast switching speed 3 Miniature SOT-23 plastic package for surface

More information

2STR2215. Low voltage fast-switching PNP power transistor. Features. Applications. Description

2STR2215. Low voltage fast-switching PNP power transistor. Features. Applications. Description Low voltage fast-switching PNP power transistor Features Very low collector-emitter saturation voltage High current gain characteristic Fast switching speed Miniature SOT-23 plastic package for surface

More information

TIP2955 TIP3055. Complementary power transistors. Features. Applications. Description

TIP2955 TIP3055. Complementary power transistors. Features. Applications. Description TIP2955 TIP3055 Complementary power transistors Features Low collector-emitter saturation voltage Complementary NPN - PNP transistors Applications General purpose Audio Amplifier Description The devices

More information

2STA1695. High power PNP epitaxial planar bipolar transistor. Features. Applications. Description

2STA1695. High power PNP epitaxial planar bipolar transistor. Features. Applications. Description High power PNP epitaxial planar bipolar transistor Features High breakdown voltage V CEO = -140 V Complementary to 2STC4468 Typical f t = 20 MHz Fully characterized at 125 C Applications 1 2 3 Audio power

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) High gain Low Voltage PNP power transistor Features Very low Collector to Emitter saturation voltage D.C. Current gain, h FE >100 1.5 A continuous collector current Applications Power management in portable

More information

2N2219AHR. Hi-Rel NPN bipolar transistor 40 V A. Features. Description

2N2219AHR. Hi-Rel NPN bipolar transistor 40 V A. Features. Description Hi-Rel NPN bipolar transistor 40 V - 0.8 A Features BV CEO 40 V I C (max) 0.8 A H FE at 10 V - 150 ma > 100 Operating temperature range - 65 C to + 200 C Hi-Rel NPN bipolar transistor Linear gain characteristics

More information

Obsolete Product(s) - Obsolete Product(s) Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) Obsolete Product(s) - Obsolete Product(s) 5 A low dropout fast response positive voltage regulator adjustable Features Typical dropout 1.2 V Fast transient response Three terminal adjustable Guaranteed output current up to 5 A Output tolerance

More information

SD1728 (TH430) RF & Microwave transistors HF SSB application. Features. Description. Pin connection

SD1728 (TH430) RF & Microwave transistors HF SSB application. Features. Description. Pin connection SD1728 (TH430) RF & Microwave transistors HF SSB application Features 13.56MHz 44V Gold metallization Common emitter P OUT = 200W with 15dB gain Description The SD1728 is a 50V epitaxial silicon NPN planar

More information

STB High voltage fast-switching NPN power transistor. Features. Applications. Description

STB High voltage fast-switching NPN power transistor. Features. Applications. Description High voltage fast-switching NPN power transistor Features Low spread of dynamic parameters Minimum lot-to-lot spread for reliable operation Very high switching speed Through hole TO-262 (I 2 PAK) power

More information

AN2837 Application note

AN2837 Application note Application note Positive to negative buck-boost converter using ST1S03 asynchronous switching regulator Abstract The ST1S03 is a 1.5 A, 1.5 MHz adjustable step-down switching regulator housed in a DFN6

More information

2STA1943. High power PNP epitaxial planar bipolar transistor. Features. Application. Description

2STA1943. High power PNP epitaxial planar bipolar transistor. Features. Application. Description High power PNP epitaxial planar bipolar transistor Features High breakdown voltage V CEO > -230V Complementary to 2STC5200 Fast-switching speed Typical f T = 30 MHz Application Audio power amplifier Description

More information

BDX53B - BDX53C BDX54B - BDX54C

BDX53B - BDX53C BDX54B - BDX54C BDX53B - BDX53C BDX54B - BDX54C Complementary power Darlington transistors Features Good h FE linearity High f T frequency Monolithic Darlington configuration with integrated antiparallel collector-emitter

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) PNP power Darlington transistor Features Monolithic Darlington configuration Integrated antiparallel collector-emitter diode Application Linear and switching industrial equipment Description The TIP145

More information

ST1510FX. High voltage fast-switching NPN Power transistor. General features. Applications. Internal schematic diagram. Description.

ST1510FX. High voltage fast-switching NPN Power transistor. General features. Applications. Internal schematic diagram. Description. High voltage fast-switching NPN Power transistor General features State-of-the-art technology: Diffused collector Enhanced generation EHVS1 More stable performances versus operating temperature variation

More information

2STC5242. High power NPN epitaxial planar bipolar transistor. Features. Application. Description

2STC5242. High power NPN epitaxial planar bipolar transistor. Features. Application. Description 2STC5242 High power NPN epitaxial planar bipolar transistor Features High breakdown voltage V CEO = 230 V Complementary to 2STA1962 Fast-switching speed Typical f T = 30 MHz Application Audio power amplifier

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) 6 V power Schottky silicon carbide diode Features No or negligible reverse recovery Switching behavior independent of temperature Particularly suitable in PFC boost diode function Description The SiC diode

More information

3STL2540. Low voltage high performance PNP power transistor. Features. Applications. Description

3STL2540. Low voltage high performance PNP power transistor. Features. Applications. Description Low voltage high performance PNP power transistor Datasheet production data Features Very low collector-emitter saturation voltage High current gain characteristic Small, thin, leadless SMD plastic package

More information

STD1802T4-A. Low voltage fast-switching NPN power transistor. Features. Description. Applications

STD1802T4-A. Low voltage fast-switching NPN power transistor. Features. Description. Applications Low voltage fast-switching NPN power transistor Features This device is qualified for automotive application Very low collector to emitter saturation voltage High current gain characteristic Fast-switching

More information

AN1756 Application note

AN1756 Application note Application note Choosing a DALI implementation strategy with ST7DALIF2 Introduction This application note describes how to choose a DALI (Digital Addressable Lighting Interface) implementation strategy

More information

AN2385 Application note

AN2385 Application note Application note Power dissipation and its linear derating factor, silicon Limited Drain Current and pulsed drain current in MOSFETs Introduction Datasheets of the modern power MOSFET devices, either of

More information

STPS140Z-Y. Automotive power Schottky rectifier. Features. Description

STPS140Z-Y. Automotive power Schottky rectifier. Features. Description Automotive power Schottky rectifier Datasheet production data Features Very small conduction losses Negligible switching losses Extremely fast switching ECOPACK 2 compliant component AEC-Q101 qualified

More information

AN2333 Application note

AN2333 Application note Application note White LED power supply for large display backlight Introduction This application note is dedicated to the STLD40D, it's a boost converter that operates from 3.0 V to 5.5 V dc and can provide

More information

2STR SOT-23 Tape and reel 2STR1230G 130G SOT-23 Tape and reel

2STR SOT-23 Tape and reel 2STR1230G 130G SOT-23 Tape and reel Low voltage fast-switching NPN power transistor Features Very low collector-emitter saturation voltage High current gain characteristic Fast switching speed Miniature SOT-23 plastic package for surface

More information

2STC4468. High power NPN epitaxial planar bipolar transistor. Features. Application. Description

2STC4468. High power NPN epitaxial planar bipolar transistor. Features. Application. Description High power NPN epitaxial planar bipolar transistor Features High breakdown voltage V CEO = 140 V Complementary to 2STA1695 Typical f t = 20 MHz Fully characterized at 125 C Application 1 2 3 Audio power

More information

2STD1360 2STF1360-2STN1360

2STD1360 2STF1360-2STN1360 2STD1360 2STF1360-2STN1360 Low voltage fast-switching NPN power transistors Features Very low collector-emitter saturation voltage High current gain characteristic Fast-switching speed 4 1 2 3 4 1 3 2

More information

2STN2540. Low voltage fast-switching PNP power bipolar transistor. Features. Applications. Description

2STN2540. Low voltage fast-switching PNP power bipolar transistor. Features. Applications. Description 2STN2540 Low voltage fast-switching PNP power bipolar transistor Features Very low collector-emitter saturation voltage High current gain characteristic Fast switching speed Surface mounting device in

More information

2STD1665. Low voltage fast-switching NPN power transistor. Features. Applications. Description

2STD1665. Low voltage fast-switching NPN power transistor. Features. Applications. Description Low voltage fast-switching NPN power transistor Features Very low collector to emitter saturation voltage High current gain characteristic TAB Fast-switching speed Applications Voltage regulators High

More information

Low noise low drop voltage regulator with shutdown function. Part numbers

Low noise low drop voltage regulator with shutdown function. Part numbers Low noise low drop voltage regulator with shutdown function Features Output current up to 150 ma Low dropout voltage (350 mv at I OUT = 50 ma) Very low quiescent current: 0.1 µa in OFF mode and max. 250

More information

STN High voltage fast-switching PNP power transistor. Features. Application. Description. High voltage capability Very high switching speed

STN High voltage fast-switching PNP power transistor. Features. Application. Description. High voltage capability Very high switching speed High voltage fast-switching PNP power transistor Features High voltage capability Very high switching speed 4 Application Electronics ballasts for fluorescent lighting Description 1 2 SOT-223 3 The device

More information

STN9260. High voltage fast-switching PNP power transistor. Features. Applications. Description. High voltage capability Fast switching speed

STN9260. High voltage fast-switching PNP power transistor. Features. Applications. Description. High voltage capability Fast switching speed High voltage fast-switching PNP power transistor Features High voltage capability Fast switching speed Applications Lighting Switch mode power supply Description This device is a high voltage fast-switching

More information

STEVAL-CCA011V1. Filter-free stereo 2x2.5 W Class-D audio power amplifier demonstration board based on the TS2012FC. Features.

STEVAL-CCA011V1. Filter-free stereo 2x2.5 W Class-D audio power amplifier demonstration board based on the TS2012FC. Features. Filter-free stereo x.5 W Class-D audio power amplifier demonstration board based on the TS0FC Data brief Features Operating range from V CC =.5 V to 5.5 V Dedicated standby mode active low for each channel

More information

Order codes Marking Package Packaging. STX0560 X0560 TO-92 Bag STX0560-AP X0560 TO-92AP Ammopack. December 2010 Doc ID Rev 1 1/9

Order codes Marking Package Packaging. STX0560 X0560 TO-92 Bag STX0560-AP X0560 TO-92AP Ammopack. December 2010 Doc ID Rev 1 1/9 High voltage fast-switching NPN power transistor Preliminary data Features High voltage capability Very high switching speed Applications Compact fluorescent lamps (CFLs) SMPS for battery charger Description

More information

BUL39D. High voltage fast-switching NPN power transistor. Features. Application. Description

BUL39D. High voltage fast-switching NPN power transistor. Features. Application. Description High voltage fast-switching NPN power transistor Features Integrated antiparallel collector-emitter diode High voltage capability Low spread of dynamic parameters Minimum lot-to-lot spread for reliable

More information

SPV1001T40. Cool bypass switch for photovoltaic application. Features. Application. Description TO-220

SPV1001T40. Cool bypass switch for photovoltaic application. Features. Application. Description TO-220 Cool bypass switch for photovoltaic application Features I F =16 A, V R = 40 V Very low forward voltage drop Very low reverse leakage current 150 C operating junction temperature +4 Application Photovoltaic

More information

MD2310FX. High voltage NPN power transistor for standard definition CRT display. Features. Application. Description

MD2310FX. High voltage NPN power transistor for standard definition CRT display. Features. Application. Description High voltage NPN power transistor for standard definition CRT display Features State-of-the-art technology: diffused collector enhanced generation Stable performance versus operating temperature variation

More information

BUL743. High voltage fast-switching NPN power transistor. Features. Applications. Description

BUL743. High voltage fast-switching NPN power transistor. Features. Applications. Description High voltage fast-switching NPN power transistor Features Low spread of dynamic parameters High voltage capability Minimum lot-to-lot spread for reliable operation Very high switching speed Applications

More information

TR136. High voltage fast-switching NPN power transistor. Features. Applications. Description

TR136. High voltage fast-switching NPN power transistor. Features. Applications. Description TR136 High voltage fast-switching NPN power transistor Features High voltage capability Low spread of dynamic parameters Minimum lot-to-lot spread for reliable operation Very high switching speed Applications

More information

STTH1210-Y. Automotive ultrafast recovery - high voltage diode. Features. Description

STTH1210-Y. Automotive ultrafast recovery - high voltage diode. Features. Description Automotive ultrafast recovery - high voltage diode Datasheet production data Features AEC-Q1 qualified Ultrafast, soft recovery Very low conduction and switching losses High frequency and high pulsed current

More information

Part Number Marking Package Packing. MD1802FX MD1802FX ISOWATT218FX Tube. August 2006 Rev 1 1/8

Part Number Marking Package Packing. MD1802FX MD1802FX ISOWATT218FX Tube. August 2006 Rev 1 1/8 High voltage NPN Power transistor for standard Definition CRT display Preliminary Data General features State-of-the-art technology: Diffused collector Enhanced generation More stable performances versus

More information

LM323. Three-terminal 3 A adjustable voltage regulators. Features. Description

LM323. Three-terminal 3 A adjustable voltage regulators. Features. Description Three-terminal 3 A adjustable voltage regulators Features Output current: 3 A Internal current and thermal limiting Typical output impedance: 0.01 W Minimum input voltage: 7.5 V Power dissipation: 30 W

More information

Low noise low drop voltage regulator with shutdown function. Part numbers

Low noise low drop voltage regulator with shutdown function. Part numbers Low noise low drop voltage regulator with shutdown function Features Output current up to 150 ma Low dropout voltage (350 mv at I OUT = 50 ma) Very low quiescent current: 0.1 µa in OFF mode and max. 250

More information

STPSC V power Schottky silicon carbide diode. Features. Description

STPSC V power Schottky silicon carbide diode. Features. Description 600 V power Schottky silicon carbide diode Features No or negligible reverse recovery Switching behavior independent of temperature Particularly suitable in PFC boost diode function Description The SiC

More information

MD1802FX. High voltage NPN power transistor for standard definition CRT display. Features. Applications. Description

MD1802FX. High voltage NPN power transistor for standard definition CRT display. Features. Applications. Description High voltage NPN power transistor for standard definition CRT display Features State-of-the-art technology: Diffused collector Enhanced generation Stable performances versus operating temperature variation

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) High Gain Low Voltage PNP Power Transistor General features Very low Collector to Emitter saturation voltage D.C. Current gain, h FE >100 1.5 A continuous collector current In compliance with the 2002/93/EC

More information

2STX2220. High Gain Low Voltage PNP Power Transistor. General features. Description. Internal schematic diagram. Applications.

2STX2220. High Gain Low Voltage PNP Power Transistor. General features. Description. Internal schematic diagram. Applications. High Gain Low Voltage PNP Power Transistor General features Very low Collector to Emitter saturation voltage D.C. Current gain, h FE >100 1.5 A continuous collector current In compliance with the 2002/93/EC

More information

STTH60W03C. Turbo 2 ultrafast high voltage rectifier. Features. Description

STTH60W03C. Turbo 2 ultrafast high voltage rectifier. Features. Description STTH6W3C Turbo 2 ultrafast high voltage rectifier Datasheet production data Features Ultrafast switching Low reverse recovery current Low thermal resistance Reduces switching losses ECOPACK 2 compliant

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) 2 W mono amplifier Features 2 W output power into 8 Ω at 12 V, THD = 10% Internally fixed gain of 32 db No feedback capacitor No boucherot cell Thermal protection AC short-circuit protection SVR capacitor

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) TIP33C Complementary power transistors Features. Low collector-emitter saturation voltage Complementary NPN - PNP transistors Applications General purpose Description The devices are manufactured in epitaxial-base

More information

STPS3045FP. Power Schottky rectifier. Features. Description

STPS3045FP. Power Schottky rectifier. Features. Description STPS345FP Power Schottky rectifier Features Very small conduction losses Negligible switching losses Extremely fast switching Low thermal resistance Avalanche capability specified A K A Description Schottky

More information

Order codes Marking Package Packaging. STD2805T4 D2805 DPAK Tape & reel STD D2805 IPAK Tube. June 2007 Rev 1 1/9

Order codes Marking Package Packaging. STD2805T4 D2805 DPAK Tape & reel STD D2805 IPAK Tube. June 2007 Rev 1 1/9 Low voltage fast-switching PNP power transistor Preliminary Data Features Very low collector to emitter saturation voltage High current gain characteristic Fast-switching speed Surface-mounting DPAK (TO-252)

More information

STD840DN40. Dual NPN high voltage transistors in a single package. Features. Applications. Description

STD840DN40. Dual NPN high voltage transistors in a single package. Features. Applications. Description Dual NPN high voltage transistors in a single package Datasheet production data Features Low V CE(sat) Simplified circuit design Reduced component count Fast switching speed Applications Compact fluorescent

More information

ESDALCL6-4P6A. Multi-line low capacitance and low leakage current ESD protection. Features. Applications. Description

ESDALCL6-4P6A. Multi-line low capacitance and low leakage current ESD protection. Features. Applications. Description Multi-line low capacitance and low leakage current ESD protection Features Datasheet production data Diode array topology: 4 lines protection Low leakage current: 10 na at 3 V 1 na at 1 V Very low diode

More information

BUL38D. High voltage fast-switching NPN power transistor. Features. Applications. Description

BUL38D. High voltage fast-switching NPN power transistor. Features. Applications. Description High voltage fast-switching NPN power transistor Features High voltage capability Low spread of dynamic parameters Minimum lot-to-lot spread for reliable operation Very high switching speed High ruggedness

More information

AN440 Application note

AN440 Application note Application note QII and QIII TRIAC triggering with positive power supply Introduction New TRIACs with high commutation and dv/dt performances are now available on the market. Generally these TRIACs can

More information

KF25B, KF33B KF50B, KF80B

KF25B, KF33B KF50B, KF80B KF25B, KF33B KF50B, KF80B Very low drop voltage regulators with inhibit Datasheet production data Features Very low dropout voltage (0.4 V) Very low quiescent current (typ. 50 µa in OFF mode, 500 µa in

More information

Part numbers Order codes Packages Temperature range. LM137 LM137K TO-3-55 C to 150 C LM337 LM337K TO-3 0 C to 125 C LM337 LM337SP TO C to 125 C

Part numbers Order codes Packages Temperature range. LM137 LM137K TO-3-55 C to 150 C LM337 LM337K TO-3 0 C to 125 C LM337 LM337SP TO C to 125 C LM137 LM337 Three-terminal adjustable negative voltage regulators Features Output voltage adjustable down to V REF 1.5 A guaranteed output current 0.3%/V typical load regulation 0.01%/V typical line regulation

More information

STTH200W06TV1. Turbo 2 ultrafast high voltage rectifier. Features. Description

STTH200W06TV1. Turbo 2 ultrafast high voltage rectifier. Features. Description Turbo 2 ultrafast high voltage rectifier Datasheet production data Features Ultrafast switching Low reverse recovery current Low thermal resistance Reduces switching and conduction losses Insulated package

More information

LD1085CXX. 3 A low-drop, adjustable positive voltage regulator. Features. Description

LD1085CXX. 3 A low-drop, adjustable positive voltage regulator. Features. Description 3 A low-drop, adjustable positive voltage regulator Features Typical dropout 1.3 V (at 3 A) Three terminal adjustable output voltage Guaranteed output current up to 3 A Output tolerance ± 2 % at 25 C and

More information

LM723CN. High precision voltage regulator. Features. Description

LM723CN. High precision voltage regulator. Features. Description High precision voltage regulator Features Input voltage up to 40 V Output voltage adjustable from 2 to 37 V Positive or negative supply operation Series, shunt, switching or floating operation Output current

More information

Very high voltage NPN power transistor for high definition and slim CRT display. Part number Marking Package Packaging HD1750JL HD1750JL TO-264 Tube

Very high voltage NPN power transistor for high definition and slim CRT display. Part number Marking Package Packaging HD1750JL HD1750JL TO-264 Tube HD1750JL Very high voltage NPN power transistor for high definition and slim CRT display Features PRELIMINARY DATA State-of-the-art technology: diffused collector enhanced generation EHVS1 Wider range

More information

BAT48 Series. Small signal Schottky diodes. Main product characteristics. Features and benefits. Order codes. Description. BAT48ZFILM (Single) SOD-123

BAT48 Series. Small signal Schottky diodes. Main product characteristics. Features and benefits. Order codes. Description. BAT48ZFILM (Single) SOD-123 Small signal Schottky diodes Main product characteristics I F V RRM C (typ) T j (max) 350 ma 40 V 18 pf 150 C SOD-123 BAT48ZFILM (Single) Features and benefits Low leakage current losses Negligible switching

More information

STPS30H60-Y. Automotive power Schottky rectifier. Features. Description

STPS30H60-Y. Automotive power Schottky rectifier. Features. Description Automotive power Schottky rectifier Datasheet production data Features High junction temperature capability Avalanche rated Low leakage current Good trade-off between leakage current and forward voltage

More information

STTH30W03C. Turbo 2 ultrafast high voltage rectifier. Features. Description

STTH30W03C. Turbo 2 ultrafast high voltage rectifier. Features. Description Turbo 2 ultrafast high voltage rectifier Datasheet production data Features Ultrafast switching Low reverse recovery current Low thermal resistance Reduces switching losses ECOPACK 2 compliant component

More information

High voltage NPN Power transistor for standard definition CRT display. R BE =60Ω typ. Order code Marking Package Packing

High voltage NPN Power transistor for standard definition CRT display. R BE =60Ω typ. Order code Marking Package Packing High voltage NPN Power transistor for standard definition CRT display Features State-of-the-art technology: Diffused collector enhanced generation Stable performance versus operating temperature variation

More information

STN9360. High voltage fast-switching PNP power transistor. Features. Applications. Description. High voltage capability Fast switching speed

STN9360. High voltage fast-switching PNP power transistor. Features. Applications. Description. High voltage capability Fast switching speed High voltage fast-switching PNP power transistor Datasheet production data Features High voltage capability Fast switching speed 4 Applications Lighting Switch mode power supply Description 2 SOT-223 3

More information

STN2580. High voltage fast switching NPN power transistor. Features. Applications. Description. High voltage capability Fast switching speed

STN2580. High voltage fast switching NPN power transistor. Features. Applications. Description. High voltage capability Fast switching speed High voltage fast switching NPN power transistor Datasheet production data Features High voltage capability Fast switching speed Applications Lighting Switch mode power supply Description This device is

More information

LET9060C. RF power transistor from the LdmoST family of n-channel enhancement-mode lateral MOSFETs. Features. Description

LET9060C. RF power transistor from the LdmoST family of n-channel enhancement-mode lateral MOSFETs. Features. Description RF power transistor from the LdmoST family of n-channel enhancement-mode lateral MOSFETs Features Excellent thermal stability Common source configuration P OUT (@ 28 V)= 60 W with 18 db gain @ 945 MHz

More information

LS1240. Electronic two-tone ringer. Features. Description. Pin connection (top view)

LS1240. Electronic two-tone ringer. Features. Description. Pin connection (top view) Electronic two-tone ringer Features Low current consumption, in order to allow the parallel operation of 4 devices Integrated rectifier bridge with zener diodes to protect against over voltages little

More information

AN1441 Application note

AN1441 Application note Application note ST890: a high side switch for PCMCIA and USB applications Introduction The ST890 is a low voltage, P-channel MOSFET power switch, intended for high side load switching applications. Its

More information

ST13003D-K High voltage fast-switching NPN power transistor Features Applications Description

ST13003D-K High voltage fast-switching NPN power transistor Features Applications Description High voltage fast-switching NPN power transistor Features High voltage capability Low spread of dynamic parameters Minimum lot-to-lot spread for reliable operation ery high switching speed Integrated antiparallel

More information

MD2103DFH. High voltage NPN power transistor for standard definition CRT display. Features. Description. Applications

MD2103DFH. High voltage NPN power transistor for standard definition CRT display. Features. Description. Applications High voltage NPN power transistor for standard definition CRT display Features State-of-the-art technology: Diffused collector enhanced generation Stable performance versus operating temperature variation

More information

MD2009DFX. High voltage NPN power transistor for CRT TV. Features. Application. Description

MD2009DFX. High voltage NPN power transistor for CRT TV. Features. Application. Description High voltage NPN power transistor for CRT TV Features State-of-the-art technology: diffused collector enhanced generation Stable performance versus operating temperature variation Low base drive requirement

More information