Power conversion by virtue of its basic role produces harmonics due to theslicing of either voltages or currents. To a large extent the pollution in theutility supply and the deterioration of the power quality has been generatedor created by non-linear converters. It is therefore ironic that power convertersshould now be used to clean up the pollution that they helped to create inthe first place.In a utility system, it is desirable to prevent harmonic currents (which resultin EMI and resonance problems) and limit reactive power flows (whichresult in transmission losses).Traditionally, shunt passive filters, comprised of tuned LC elements andcapacitor banks, were used to filter the harmonics and to compensate forreactive current due to non-linear loads. However, in practical applicationsthese methods have many disadvantages.
上传时间: 2013-11-05
上传用户:AISINI005
交流瓦特/瓦特小时,乏尔/乏尔小时转换器 特点: 精确度0.25%满刻度 多种输入,输出选择 输入与输出绝缘耐压2仟伏特/1分钟 冲击电压测试5仟伏特(1.2x50us) 突波电压测试2.5仟伏特(0.25ms/1MHz) (IEC255-4) 尺寸小,稳定性高 主要规格: 精确度: 0.25% F.S. (23 ±5℃) 输入负载: <0.2VA (Voltage) <0.2VA (Current) 最大过载能力: Current related input:3 x rated continuous 10 x rated 30 sec. ,25 x rated 3sec. 50 x rated 1sec. Voltage related input:maximum 2 x rated continuous 输出反应速度: < 250ms(0~90%) 输出负载能力: < 10mA for voltage mode < 10V for current mode 输出之涟波 : < 0.1% F.S. 脉波输出型态: Photocouple of open collector (max.30V/40mA) 归零调整范围: 0~±5% F.S. 最大值调整范围: 0~±10% F.S. 温度系数: 100ppm/℃ (0~50℃) 隔离特性: Input/Output/Power/Case 绝缘阻抗: >100Mohm with 500V DC 绝缘耐压能力: 2KVac/1 min. (input/output/power/case) 突波测试: ANSI C37.90a/1974,DIN-IEC 255-4 impulse voltage 5KV(1.2x50us) 使用环境条件: -20~60℃(20 to 90% RH non-condensed) 存放环境条件: -30~70℃(20 to 90% RH non-condensed) CE认证: EN 55022:1998/A1:2000 Class A EN 61000-3-2:2000 EN 61000-3-3:1995/A1:2001 EN 55024:1998/A1:2001
上传时间: 2013-11-11
上传用户:wettetw
Specification: 输入信号:DC9-32V&AC100-240V 适用负载:电热负载,电感负载 控制方式:零点触发(Zero cross turn-on) 输入额定电压:AC 110-440±10% 输入额定电流:200-400A 使用频率:50/60Hz 使用环境:-10℃-50℃ 90%RH 冷却方式:风冷式
上传时间: 2013-11-14
上传用户:拔丝土豆
Power over Ethernet (PoE) is a new development thatallows for the delivery of power to Ethernet-based devicesvia standard Ethernet CAT5 cable, precluding the need forwall adapters or other external power sources. The PoEspecification defines a hardware detection protocol wherePower Sourcing Equipment (PSE) is able to identify PoEPowered Devices (PDs), thus allowing full backwardscompatibility with non-PoE-aware (legacy) Ethernetdevices.
上传时间: 2013-11-11
上传用户:daoyue
DC/DC 升压IC:The FP6291 is a current mode boost DC-DC converter. Its PWM circuitry with built-in 0.25 Ω power MOSFET make this regulator highly power efficient. The internal compensation network also minimizes as much as 6 external component counts. The non-inverting input of error amplifier connects to a 0.6V precision reference voltage and internal soft-start function can reduce the inrush current. The FP6291 is available in the SOT23-6L package and provides space-saving PCB for the application fields.
上传时间: 2013-11-07
上传用户:3294322651
A frequent requirement in systems involves drivinganalog signals into non-linear or reactive loads. Cables,transformers, actuators, motors and sample-hold circuitsare examples where the ability to drive diffi cult loads isrequired. Although several power buffer amplifi ers areavailable, none have been optimized for driving diffi cultloads.
上传时间: 2014-12-24
上传用户:1109003457
This application report discusses the design of non-invasive optical plethysmographyalso called as pulsoximeter using the MSP430FG437 Microcontroller (MCU). Thepulsoximeter consists of a peripheral probe combined with the MCU displaying theoxygen saturation and pulse rate on a LCD glass. The same sensor is used for bothheart-rate detection and pulsoximetering in this application. The probe is placed on aperipheral point of the body such as a finger tip, ear lobe or the nose. The probeincludes two light emitting diodes (LEDs), one in the visible red spectrum (660nm) andthe other in the infrared spectrum (940nm). The percentage of oxygen in the body isworked by measuring the intensity from each frequency of light after it transmitsthrough the body and then calculating the ratio between these two intensities.
标签: Pulsoximeter Single-Chip Des
上传时间: 2013-10-27
上传用户:黑漆漆
AT89C2051驱动步进电机的电路和源码:AT89C2051驱动步进电机的电路和源码 程序:stepper.c stepper.hex/* * STEPPER.C * sweeping stepper's rotor cw and cww 400 steps * Copyright (c) 1999 by W.Sirichote */#i nclude c:\mc5151io.h /* include i/o header file */ #i nclude c:\mc5151reg.hregister unsigned char j,flag1,temp; register unsigned int cw_n,ccw_n;unsigned char step[8]={0x80,0xc0,0x40,0x60,0x20,0x30,0x10,0x90} #define n 400/* flag1 mask byte 0x01 run cw() 0x02 run ccw() */main(){ flag1=0; serinit(9600); disable(); /* no need timer interrupt */ cw_n = n; /* initial step number for cw */ flag1 |=0x01; /* initial enable cw() */while(1){ { tick_wait(); /* wait for 10ms elapsed */energize(); /* round-robin execution the following tasks every 10ms */ cw(); ccw(); } }}cw(){ if((flag1&0x01)!=0) { cw_n--; /* decrement cw step number */ if (cw_n !=0) j++; /* if not zero increment index j */ else {flag1&=~0x01; /* disable cw() execution */ ccw_n = n; /* reload step number to ccw counter */ flag1 |=0x02; /* enable cww() execution */ } }
上传时间: 2013-11-21
上传用户:boyaboy
The STWD100 watchdog timer circuits are self-contained devices which prevent systemfailures that are caused by certain types of hardware errors (non-responding peripherals,bus contention, etc.) or software errors (bad code jump, code stuck in loop, etc.).The STWD100 watchdog timer has an input, WDI, and an output, WDO (see Figure 2). Theinput is used to clear the internal watchdog timer periodically within the specified timeoutperiod, twd (see Section 3: Watchdog timing). While the system is operating correctly, itperiodically toggles the watchdog input, WDI. If the system fails, the watchdog timer is notreset, a system alert is generated and the watchdog output, WDO, is asserted (seeSection 3: Watchdog timing).The STWD100 circuit also has an enable pin, EN (see Figure 2), which can enable ordisable the watchdog functionality. The EN pin is connected to the internal pull-downresistor. The device is enabled if the EN pin is left floating.
上传时间: 2013-10-22
上传用户:taiyang250072
SRAM-based FPGAs are non-volatile devices. Upon powerup, They are required to be programmed from an external source. This procedure allows anyone to easily monitor the bit-stream, and clone the device. The problem then becomes how can you effectively protect your intellectual property from others in an architecture where the part is externally programmed?
上传时间: 2013-11-06
上传用户:wl9454