mppt 12位adc芯片 可以吗

当前位置:&&
基于MPPT技术的射频电源阻抗自动匹配器设计
扫扫二维码,随身浏览文档
手机或平板扫扫即可继续访问
基于MPPT技术的射频电源阻抗自动匹配器设计
举报该文档为侵权文档。
举报该文档含有违规或不良信息。
反馈该文档无法正常浏览。
举报该文档为重复文档。
推荐理由:
将文档分享至:
分享完整地址
文档地址:
粘贴到BBS或博客
flash地址:
支持嵌入FLASH地址的网站使用
html代码:
&embed src='http://jz.docin.com/DocinViewer--144.swf' width='100%' height='600' type=application/x-shockwave-flash ALLOWFULLSCREEN='true' ALLOWSCRIPTACCESS='always'&&/embed&
450px*300px480px*400px650px*490px
支持嵌入HTML代码的网站使用
您的内容已经提交成功
您所提交的内容需要审核后才能发布,请您等待!
3秒自动关闭窗口PCM -INDEX-
KING 1500 / 2000 / 3000 / 4000 / 6000
most advanced grid-tie PV inverter in the world.
Converting sun light into electricity energy for
home / industrial applications, and powering up
our world with free solar energy is now no longer
just a dream.
Features :
Anti-Islanding detection methods: Frequency,
voltage and utility impedance.
Build-in MPPT (Maximum Power Point Tracking)
High efficiency with wide range operation.
Design to meet VDE requirements.
Easy assembly in production line.
Easy replacement when servicing. The mean time
of service is less than
20 minutes.
Firmware flash capability: The firmware inside
the micro-controllers can be updated by optional
communication interface.
GFCI: Ground Fault Current Interruption, which
is also known as RCD (Residual Current Device).
To prevent electrical hazard of user, a current
transformer monitoring the difference between
L and N current is applied. When the current difference
is larger than specified value stated in section
¨General Data〃, inverter will cut its output to
Bundled software for user buying optional communication
Input Data
Maximum Input Power
Nominal DC voltage
Max. input voltage
Maximum PV open voltage
MPPT voltage range
150V to 500V +/-5%
150V to 600V +/-5%
System start-up voltage
Working voltage range *
100 +/-5% ~ 500-5%+0%V
100 +/-5% ~ 600-5%+0%V
Initial feeding voltage *
150V +/-5%
Full rating working range
200V to 500V
250V to 500V
250V to 600V
Max. input current
Shutdown voltage
80V typical
DC voltage ripple
DC insulation resistance **
On/Off 20A
On/Off 30A
DC Connector
Tyco or MC contract
(1-pair) - cable type
Tyco or MC contact
Attachd DC Connector
Tyco-contact (1 pair)
Output data
Nominal output power
Maximum output power
(The time is limited to 10 minutes @ 50&C ambient)
Operational Voltage range ***
198V, minimum
256V maximum
Operational Normal voltage
Operational frequency range
50/60Hz, auto
47.5&f50&50.2 for 50Hz
59.3&f60&60.5 for 60Hz
Nominal output current
O/P current distortion
THD&5%, each harmonics
Power Factor
DC current injection
&0.5% of rated
inverter output current
General Data
Internal power consumption
Standby power (at night)
Minimum conversion efficiency (DC/AC)
Under input voltage&210V, load &20%
Maximum Conversion Efficiency (DC/AC)
European Efficiency
GFCI threshold
See ground fault
current detection
Ground current detection range
Ground current detection frequency
DC input impedance requirement
Protection degree
IP 65 or IP43
Operation temperature
-25 to 55&C
0 to 95%, non-condensing
Heat Dissipation
Convection
Acoustic noise level
&40dB, A-weighted,
frequency up to 20kHz
Up to 3000m without
power derating, 5&C derated for each additional
* Load curve :
The relation of input DC voltage and output power is shown
in figure. Once input V is less than 250V, the relation
of I/P V and load % is : Load% =
1. This is voltage range that inverter will start to feed
power to grid.
2. The DC resistance requirement for positive or negative
terminal to chasis ground
3. In VDE, it is ?20%/ +15%. DK5940, RD1663 are
also available.
4. Based on the limit of VDE
5. Based on limit of IEEE929
6. Under the output voltage is 230VAC
7. Under utility voltage THD&3%
8. under input voltage&= 400V, full rated output power,
25oC ambient
9. According to VDE requirement
Mechanical Requirements:
Physical: W*D*H (mm)
352*300*133
352*300*133
352*300*133
550*300*133
550*420*143
Physical: Weight (kg)
Shipping: W*D*H (mm)
460*460*265
460*460*265
460*460*265
660*460*265
660*580*265
Shipping: Weight (kg)
** The dimension and weight here could be changed due
to product modification
Copyright &
Powercom Co., Inc. 2006, All Rights Reserved.当前位置: >>
MPPT-C程序
#include &16F877.h&
#device ADC = 8
// 一个8位寄存器ADC模式
#fuses HS, NOWDT, PUT, NOPROTECT, BROWNOUT, NODEBUG, NOLVP
High-Speed 20MHz, No Watchdog, No Protection, Brownout Protection,
#use delay(clock=)
20MHz Crystal
//int is defined as 8-bit unsigned integer using CCS compiler
void main (void)
direction = 1;
Set initial direction to positive
delta = 1;
Amount by which to adjust the PWM - 7-bit resolution so duty step of 2%
Initial position of the PWM - 50% Duty Cycle with 7-bit resolution.
upperbound = 49;
Upper bound of the PWM %
lowerbound = 1;
Lower bound of the PWM %
power = 0;
Initial Value of Power
setup_adc(ADC_CLOCK_DIV_32);
setup_adc_ports(ALL_ANALOG);
Set all inputs to analog
output_low(PIN_C1);
Set CCP1 output low
setup_ccp1(ccp_pwm);
setup pin CCP1 (RC2) to do PWM
setup_timer_2(T2_DIV_BY_1,12,1);
384.615kHz
//delay_ms(1000)
Wait 1 Second
set_adc_channel(0);
Select RA0
//delay_ms(20);
Wait to Read ADC
measuredvoltage = read_adc();
Read the voltage input from ADC channel 0
set_adc_channel(1);
Select RA1
//delay_ms(20);
Wait to Read ADC
measuredvoltagedrop = read_adc();
Read the Voltage dropped across the R from ADC channel 1
voltage = measuredvoltage/51;
Measured Voltage is 51 steps per Volt at a Reference Voltage of 5V
voltagedrop = measuredvoltagedrop/51;
voltagedifference = voltage -
currentma =
Calculating Current using 1K Resistance
powerold =
Calculate the Power from the inputs
power = voltage *
pwm = pwm + direction*
Adjust Pulse Width Modulation Value by Delta value
if (power & powerold)
If at top of curve, change direction
direction = -
if (pwm & upperbound)
If at maximum PWM, Stop here
if (pwm & lowerbound)
If at minimum PWM, Stop here
set_pwm1_duty(pwm);
Set PWM Mark-Space Radio to approx 50%
All rights reserved Powered by
www.tceic.com
copyright &copyright 。文档资料库内容来自网络,如有侵犯请联系客服。1月18日,ADI公司宣布推出Blackfin系列新成员&& BF50x系列。据介绍,新款BF50x除了秉承Blackfin一贯的DSP+MCU汇聚式架构之外,还内置了12位模数转换器(ADC)和4MB片上可执行闪存。ADI安防与电机控制技术经理张铁虎说:&将ADC和串行闪存内置,可以最大程度的减少片外器件数量,从而帮助工程师减小整体设计系统体积及成本。&
张铁虎说新款BF50x系列处理器主要面向高级电源及工业应用领域。他说,2001年美国能源情报署(EIA)公布出来的数据表示----工业用电一直是电力消耗的主体,占全球总用电量的28%。&而之前一直被大众当做&电老虎& 的通用照明领域,截止2009年,总用电量也只占全球用电量的19%&。
除了百分比上的悬殊,工业节能更是概念上的更新。张铁虎说由于工业应用领域通常都采用外接电源供电模式,与便携式消费电子等领域相比,工业应用的绿色化优先级一直不高。2009年哥本哈根会议之后,节能风暴开始席卷全球,作为用电大户的工业应用节能呼声也日渐高涨,这其中电机控制、可再生能源逆变器以及智能UPS等关键性应用技术也成了众厂商改革的主要领域。
Blackfin BF50x系列处理器构架图,与传统Blackfin相比,BF50x内部整合了一个12位ADC和4MB FLASH。
通常情况下,Blackfin 处理器再设计之初都会采用多种节能技术。首先是基于一种选通时钟内核设计,可按照逐条指令来选择性地切断功能单元的电源。其次,Blackfin 处理器还支持智能断电模式,即在CPU所需动作极少(或根本不需要 CPU 动作)期间的断电模式。最后,或许也是最重要的一点, Blackfin 处理器支持一种自含动态电源管理电路,借助该电路即可对工作频率和电压进行独立控制,以满足正在执行的算法的性能要求(这些转换可以在一个 RTOS 或用户固件的控制之下连续出现)。
ADI技术市场经理张铁虎先生
张铁虎说,上述节能优势在BF50x系列中继续沿用,包括提供片上内核稳压电路,可使处理器在极低的电压条件下工作。
电机控制应用
借助Blackfin BF50x处理器的出色性能,电机控制系统设计人员可以执行更复杂的算法,确保根据系统行为的实时变化进行动态控制,从而获得更平稳的工作性能并降低功耗。运用无传感器矢量控制,则可以实现更高的电机控制效率。设计人员利用高级建模技术可以精确判定转轴位置和/或转速,而无需使用位置/速度传感器,这样系统尺寸更小,成本更低,可靠性则更高。Blackfin BF50x集成的12位ADC可以提供电机状态精确建模所需的精密数据转换,因而能够精确估计相应的位置/转速。
可再生能源逆变器应用
Blackfin BF50x适合执行复杂算法,可支持逆变器将变化不定的直流输出转换为&干净&的电流,以及对住宅和城市光(PV)电池阵列及风轮机产生并流入商用电网和/或本地电网的电流进行调整。Blackfin BF50x处理器的信号处理性能可确保实现超高效能量提取和传输,同时提供高级电源切换控制功能,支持防孤岛和最大功率点跟踪(MPPT)能力,因此该系列是可再生能源和智能电网基础设施的最佳选择。
经过优化设计,Blackin BF50x可实现UPS系统的精确、无波动功率控制,同时本身具有精确分析负载变化的能力,并且能实时预测负载突变和丧失事件。
Blackfin BF50x处理器配有两个三相PWM单元,可提供高级电源切换功能,使UPS系统能够动态响应各种负载条件下的非线性负载;此外还具有本地控制能力,可执行启动/关断控制和电压调整等功能。
400MHz 内置ADC处理器
作为ADI公司除ADC之外的另一旗舰产品,Blackfin一直是工程师在进行嵌入式音频、视频和通信应用计算要求和功耗约束设计条件的首选处理器----它集成了32 位 RISC 型指令集和双 16 位乘法累加(MAC)信号处理功能与通用型微控制器所具有的易用性整合在一身,不仅能够满足实时性应用需求还能在高速处理领域大展拳脚。今天你几乎可以在汽车电子、工业控制、医疗设备甚至无处不在的消费电子产品领域见到Blackfin的踪迹。
传统ADI Blackfin处理器内核构架示意图
张铁虎说:&与集成ADC和闪存的相近价格竞争性处理器相比,新款BF50x将性能提高超过100%--用通常购买时钟为150MHz~200MHz处理器的价格就能获得400MHz的MCU+DSP处理性能。&他说,Blackfin BF50x内置的双SAR ADC利用了ADI领先技术,有效分辨率是业界其它集成12位ADC的DSP的两倍,达到11.5位有效位(ENOB)。此外,BF50x系列还为Blackfin产品组合引入了新的外设&&ADC控制模块(ACM),它提供了ADC采样与外部事件同步的一种低开销的精确方法。
配合Blackfin BF50x系列同步发布了还有一款价值199美元的 EZ-KIT Lite&评估平台,利用该平台用户可以在Visual DSP++开发环境下利用C/C++编译器、汇编器及链接器进行开发操作。此外该平台还可以用来学习ADI硬件与软件开发以及原型应用程序。据介绍,从1月19日起,Blackfin BF50x即可向用户提供样片。
与非门科技(北京)有限公司 All Rights Reserved.
京ICP证:070212号
北京市公安局备案编号: 京ICP备:号}

我要回帖

更多关于 12位adc采集精度 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信