虫虫首页|资源下载|资源专辑|精品软件
登录|注册

ARBITRARY

  • 基于FPGA的任意波形发生器的设计与实现.rar

    随着国民经济的发展和社会的进步,人们越来越需要便捷的交通工具,从而促进了汽车工业的发展,同时汽车发动机检测维修等相关行业也发展起来。在汽车发动机检测维修中,发动机电脑(Electronic Control.Unit-ECU)检测维修是其中最关键的部分。发动机电脑根据发动机的曲轴或凸轮轴传感器信号控制发动机的喷油、点火和排气。所以,维修发动机电脑时,必须对其施加正确的信号。目前,许多发动机的曲轴和凸轮轴传感器信号已不再是正弦波和方波等传统信号,而是多种复杂波形信号。为了能够提供这种信号,本文研究并设计了一种能够产生复杂波形的低成本任意波形发生器(ARBITRARY Waveform Generator-AWG)。 本文提出的任意波形发生器依据直接数字频率合成(Direct Digial FrequencySynthesis-DDFS)原理,采用自行设计现场可编程门阵列(FPGA)的方案实现频率合成,扩展数据存储器存储波形的量化幅值(波形数据),在微控制单元(MCU)的控制与协调下输出频率和相位均可调的信号。 任意波形发生器主要由用户控制界面、DDFS模块、放大及滤波、微控制器系统和电源模块五部分组成。在设计中采用FPGA芯片EPF10K10QC208-4实现DDFS的硬件算法。波形调整及滤波由两级放大电路来完成:第一级对D/A输出信号进行调整;第二级完成信号滤波及信号幅值和偏移量的调节。电源模块利用三端集成稳压器进行电压值变换,利用极性转换芯片ICL7660实现正负极性转换。 该任意波形发生器与通用模拟信号源相比具有:输出频率误差小,分辨率高,可产生任意波形,成本低,体积小,使用方便,工作稳定等优点,十分适合汽车维修行业使用,具有较好的市场前景。

    标签: FPGA 任意波形发生器

    上传时间: 2013-05-27

    上传用户:cylnpy

  • 基于FPGA的任意波形发生器

    随着国民经济的发展和社会的进步,人们越来越需要便捷的交通工具,从而促进了汽车工业的发展,同时汽车发动机检测维修等相关行业也发展起来。在汽车发动机检测维修中,发动机电脑(Electronic Control.Unit-ECU)检测维修是其中最关键的部分。发动机电脑根据发动机的曲轴或凸轮轴传感器信号控制发动机的喷油、点火和排气。所以,维修发动机电脑时,必须对其施加正确的信号。目前,许多发动机的曲轴和凸轮轴传感器信号已不再是正弦波和方波等传统信号,而是多种复杂波形信号。为了能够提供这种信号,本文研究并设计了一种能够产生复杂波形的低成本任意波形发生器(ARBITRARY Waveform Generator-AWG)。 本文提出的任意波形发生器依据直接数字频率合成(Direct Digial FrequencySynthesis-DDFS)原理,采用自行设计现场可编程门阵列(FPGA)的方案实现频率合成,扩展数据存储器存储波形的量化幅值(波形数据),在微控制单元(MCU)的控制与协调下输出频率和相位均可调的信号。 任意波形发生器主要由用户控制界面、DDFS模块、放大及滤波、微控制器系统和电源模块五部分组成。在设计中采用FPGA芯片EPF10K10QC208-4实现DDFS的硬件算法。波形调整及滤波由两级放大电路来完成:第一级对D/A输出信号进行调整;第二级完成信号滤波及信号幅值和偏移量的调节。电源模块利用三端集成稳压器进行电压值变换,利用极性转换芯片ICL7660实现正负极性转换。 该任意波形发生器与通用模拟信号源相比具有:输出频率误差小,分辨率高,可产生任意波形,成本低,体积小,使用方便,工作稳定等优点,十分适合汽车维修行业使用,具有较好的市场前景。

    标签: FPGA 任意波形发生器

    上传时间: 2013-04-24

    上传用户:KIM66

  • NTL is a high-performance, portable C++ library providing data structures and algorithms for manipul

    NTL is a high-performance, portable C++ library providing data structures and algorithms for manipulating signed, ARBITRARY length integers, and for vectors, matrices, and polynomials over the integers and over finite fields.

    标签: high-performance algorithms structures providing

    上传时间: 2014-01-05

    上传用户:水中浮云

  • This program demonstrates some function approximation capabilities of a Radial Basis Function Networ

    This program demonstrates some function approximation capabilities of a Radial Basis Function Network. The user supplies a set of training points which represent some "sample" points for some ARBITRARY curve. Next, the user specifies the number of equally spaced gaussian centers and the variance for the network. Using the training samples, the weights multiplying each of the gaussian basis functions arecalculated using the pseudo-inverse (yielding the minimum least-squares solution). The resulting network is then used to approximate the function between the given "sample" points.

    标签: approximation demonstrates capabilities Function

    上传时间: 2014-01-01

    上传用户:zjf3110

  • Many applications use connection/object pool. A program may require a IMAP connection pool and LDAP

    Many applications use connection/object pool. A program may require a IMAP connection pool and LDAP connection pool. One could easily implement a IMAP connection pool, then take the existing code and implement a LDAP connection pool. The program grows, and now there is a need for a pool of threads. So just take the IMAP connection pool and convert that to a pool of threads (Copy, paste, find, replace????). Need to make some changes to the pool implementation? Not a very easy task, since the code has been duplicated in many places. Re-inventing source code is not an intelligent approach in an object oriented environment which encourages re-usability. It seems to make more sense to implement a pool that can contain any ARBITRARY type rather than duplicating code. How does one do that? The answer is to use type parameterization, more commonly referred to as templates.

    标签: connection pool applications program

    上传时间: 2013-12-25

    上传用户:playboys0

  • It support IPv4 and IPv6 unicast and multicast and contains a trivial sender and a trivial receiver

    It support IPv4 and IPv6 unicast and multicast and contains a trivial sender and a trivial receiver that can be used to send or receive ARBITRARY data over RTP. An implementation of generic forward error correction is planned, t

    标签: and trivial multicast contains

    上传时间: 2013-12-13

    上传用户:金宜

  • 华东师范大学(面向对象程序设计基于C++)课程全部作业(12次)代码

    华东师范大学(面向对象程序设计基于C++)课程全部作业(12次)代码,包含一个大整数类。(包含作业内容) 1 How to use VC++ & IBM Visual Age (XL) C++ 2 Pointers, Arrays and Structures 3 Operators & Statements 4 Functions 5 Use of classes in STL 6 Define concrete classes 7 Data abstraction 8 Operator Overloading 9 Define integer type with ARBITRARY precision 10 Virtual functions 11 Templates 12 Exception handling

    标签: 大学 代码 对象 程序设计

    上传时间: 2016-02-23

    上传用户:baiom

  • DBSCAN是一个基于密度的聚类算法。改算法将具有足够高度的区域划分为簇

    DBSCAN是一个基于密度的聚类算法。改算法将具有足够高度的区域划分为簇,并可以在带有“噪声”的空间数据库中发现任意形状的聚类。-DBSCAN is a density-based clustering algorithm. Algorithm change will have enough height to the regional cluster. and to be with the "noise" of the spatial database found clusters of ARBITRARY shape.

    标签: DBSCAN 密度 聚类算法

    上传时间: 2013-12-28

    上传用户:q123321

  • Fast settling-time added to the already conflicting requirements of narrow channel spacing and low

    Fast settling-time added to the already conflicting requirements of narrow channel spacing and low phase noise lead to Fractional4 divider techniques for PLL synthesizers. We analyze discrete "beat-note spurious levels from ARBITRARY modulus divide sequences including those from classic accumulator methods.

    标签: settling-time requirements conflicting already

    上传时间: 2016-04-13

    上传用户:liansi

  • FIR滤波器的C++实现 Below are program source listings for FIR.h and FIR.cpp, the header file and class fil

    FIR滤波器的C++实现 Below are program source listings for FIR.h and FIR.cpp, the header file and class file for implementing ARBITRARY causal FIR filters in the Synthesis Tool Kit (STK) framework

    标签: FIR and listings program

    上传时间: 2013-12-10

    上传用户:heart520beat