EEWORLDEEWORLDEEWORLD

Part Number

Search

293D6851016B2

Description
Solid Tantalum Surface Mount Capacitors TANTAMOUNT垄莽 Molded Case, Standard Industrial Grade
File Size108KB,9 Pages
ManufacturerVishay
Websitehttp://www.vishay.com
Download Datasheet View All

293D6851016B2 Overview

Solid Tantalum Surface Mount Capacitors TANTAMOUNT垄莽 Molded Case, Standard Industrial Grade

293D
Vishay Sprague
Solid Tantalum Surface Mount Capacitors
T
ANTAMOUNT®
Molded Case, Standard Industrial Grade
FEATURES
Terminations: 100 % matte tin, standard,
Pb-free
tin/lead available
Available
Compliant terminations
RoHS*
Molded case available in six case codes
COMPLIANT
Compatible with “High Volume” automatic pick
and place equipment
Optical character recognition qualified
Meets IEC Specification QC300801/US0001 and
EIA535BAAC mechanical and performance requirements
PERFORMANCE/ELECTRICAL CHARACTERISTICS
Operating Temperature:
- 55 °C to + 125 °C
Note:
Refer to Doc. 40088
Capacitance Tolerance:
± 5 %, ± 10 % , ± 20 %
100 % Surge Current Tested (D and E Case Codes)
Voltage Rating:
4 VDC to 50 VDC
Capacitance Range:
0.10 µF to 1000 µF
ORDERING INFORMATION
293D
TYPE
107
CAPACITANCE
This is expressed in
picofarads. The first
two digits are the
significant figures.
The third is the
number of zeros to
follow.
X9
CAPACITANCE
TOLERANCE
X0 = ± 20 %
X9 = ± 10 %
X5 = ± 5 %
010
DC VOLTAGE RATING
AT + 85 °C
This is expressed in V. To
complete the three-digit block,
zeros precede the voltage rating.
A decimal point is indicated by an
“R” (6R3 = 6.3 V).
D
CASE CODE
See Ratings
and Case
Codes table
2WE3
TERMINATION AND
PACKAGING
2TE3: Matte tin, 7" (178 mm) reel
2WE3: Matte tin, 13" (330 mm) reel
8T: Tin/lead, 7" (178 mm) reel
8W: Tin/lead, 13" (330 mm) reel
Notes:
We reserve the right to supply higher voltage ratings and tighter capacitance tolerance capacitors in the same case size.
Voltage substitutions will be marked with the higher voltage rating.
Effective July 15, 2008, part numbers with solderable termination codes “2T” and “2W” may have either matte tin or tin/lead terminations. Codes
2TE3 and 2WE3 specify only matte tin terminations. Codes 8T and 8W specify only tin/lead terminations.
DIMENSIONS
in inches [millimeters]
L
W
H
T
H
MIN.
P
T
W
CASE CODE
A
B
C
D
E
V
EIA SIZE
3216-18
3528-21
6032-28
7343-31
7343-43
7343-20
L
0.126 ± 0.008
[3.2 ± 0.20]
0.138 ± 0.008
[3.5 ± 0.20]
0.236 ± 0.012
[6.0 ± 0.30]
0.287 ± 0.012
[7.3 ± 0.30]
0.287 ± 0.012
[7.3 ± 0.30]
0.287 ± 0.012
[7.3 ± 0.30]
W
0.063 ± 0.008
[1.6 ± 0.20]
0.110 ± 0.008
[2.8 ± 0.20]
0.126 ± 0.012
[3.2 ± 0.30]
0.170 ± 0.012
[4.3 ± 0.30]
0.170 ± 0.012
[4.3 ± 0.30]
0.170 ± 0.012
[4.3 ± 0.30]
H
0.063 ± 0.008
[1.6 ± 0.20]
0.075 ± 0.008
[1.9 ± 0.20]
0.098 ± 0.012
[2.5 ± 0.30]
0.110 ± 0.012
[2.8 ± 0.30]
0.158 ± 0.012
[4.0 ± 0.30]
0.079 max.
[2.0 max.]
P
0.031 ± 0.012
[0.80 ± 0.30]
0.031 ± 0.012
[0.80 ± 0.30]
0.051 ± 0.012
[1.3 ± 0.30]
0.051 ± 0.012
[1.3 ± 0.30]
0.051 ± 0.012
[1.3 ± 0.30]
0.051 ± 0.012
[1.3 ± 0.30]
T
W
0.047 ± 0.004
[1.2 ± 0.10]
0.087 ± 0.004
[2.2 ± 0.10]
0.087 ± 0.004
[2.2 ± 0.10]
0.095 ± 0.004
[2.4 ± 0.10]
0.095 ± 0.004
[2.4 ± 0.10]
0.095 ± 0.004
[2.4 ± 0.10]
T
H
MIN.
0.028
[0.70]
0.028
[0.70]
0.039
[1.0]
0.039
[1.0]
0.039
[1.0]
0.039
[1.0]
* Pb containing terminations are not RoHS compliant, exemptions may apply
Document Number: 40002
Revision: 05-May-08
For technical questions, contact: tantalum@vishay.com
www.vishay.com
41
Please help me interpret a program in SIMPLICITI
ifdef I_WANT_TO_CHANGE_DEFAULT_ROM_DEVICE_ADDRESS_PSEUDO_CODE { addr_t lAddr;createRandomAddress(lAddr); SMPL_Ioctl(IOCTL_OBJ_ADDR, IOCTL_ACT_SET, lAddr); }What does this procedure mean? Also, what do...
duanjuan Microcontroller MCU
Assembly language to achieve table drawing
Use assembly language to write a line drawing subroutine to draw a student score table on the screen. The main program function is to enter student scores, select the table format and call the subrout...
fly0598 Embedded System
Design of solar power supply system
Requirements: (1) Solar power supply and mains power supply can be switched automatically, with solar power supply as the main power supply; (2) Solar power uses a step-by-step charging method for mul...
枫桥 Power technology
Programming shifts in C51 is different from programming shifts in assembly
Program written in C51: header file omitted.uchar a;a=0xfe;a=1;The result after running here is 0xfc.a=1;The result after running is 0xf8.Program written in assembly:MOV A,#0FE;RL A; The result is #0F...
keli55 51mcu
Ask an expert about connecting a sensor to a PDA
I want to connect a medical sensor to a PDA, but how do I read the data from the medical sensor interface and send it to the PDA? Anyone with experience in this area, please help!...
kevinzhong700 Embedded System

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

Robot
development
community

Index Files: 2093  1583  501  2863  576  43  32  11  58  12 
Datasheet   0 1 2 3 4 5 6 7 8 9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Room 1530, 15th Floor, Building B, No. 18 Zhongguancun Street, Haidian District, Beijing Telephone: (010) 82350740 Postal Code: 100190
Copyright © 2005-2026 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号