等精度頻率計-數(shù)字系統(tǒng)設(shè)計實踐報告_第1頁
等精度頻率計-數(shù)字系統(tǒng)設(shè)計實踐報告_第2頁
等精度頻率計-數(shù)字系統(tǒng)設(shè)計實踐報告_第3頁
等精度頻率計-數(shù)字系統(tǒng)設(shè)計實踐報告_第4頁
等精度頻率計-數(shù)字系統(tǒng)設(shè)計實踐報告_第5頁
已閱讀5頁,還剩9頁未讀 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認(rèn)領(lǐng)

文檔簡介

1、.2013-2014學(xué)年第2學(xué)期數(shù)字系統(tǒng)設(shè)計實踐(課號:103D47A)實 驗 報 告實驗名稱: 等精度頻率計 學(xué) 院 信息科學(xué)與工程學(xué)院 班 級 電氣自動化2班 組 別 A20 成 員 羅靜娜 、 陳壯豪 姓 名 陳壯豪 學(xué) 號 136450031 指導(dǎo)教師 李宏 完成時間 2015年6月8日星期四 目 錄一、實驗任務(wù)與要求41.1 測量信號:方波;41.2 幅值:TTL電平;41.3 頻率:100HZ10MHZ;41.4 測量誤差小于0.1%;41.5 閘門信號:0.1s;響應(yīng)時間:1s4二、實驗設(shè)計42.1 電路模型:42.2 等精度頻率計設(shè)計原理52.2 等精度頻率計設(shè)計思路及其參數(shù)選

2、擇:63.1 閘門信號產(chǎn)生模塊:73.2 寄存器模塊:83.3 頻率顯示切換模塊:93.4 頻率的計算:103.5 頻率顯示前的數(shù)據(jù)處理模塊:113.6 頂層電路圖:123.7 管腳分配圖:13四、實驗結(jié)果144.1 數(shù)據(jù)記錄:144.2 實驗結(jié)果分析:14一、實驗任務(wù)與要求1.1 測量信號:方波; 1.2 幅值:TTL電平;1.3 頻率:100HZ10MHZ;1.4 測量誤差小于0.1%;1.5 閘門信號:0.1s;響應(yīng)時間:1s二、實驗設(shè)計2.1 電路模型:2.2 等精度頻率計設(shè)計原理1 頻率計算:2 測量誤差計算: 考慮No最大誤差為:1,則 與被測頻率無關(guān),故也稱:等精度頻率測量方法2

3、.2 等精度頻率計設(shè)計思路及其參數(shù)選擇:系統(tǒng)時鐘頻率選擇50khz;測量頻率范圍為100HZ至10MHZ;閘門信號約為0.1s,最長響應(yīng)時間約為1s,測量誤差為1/(500000)<0.1%。滿足設(shè)計要求。輸出頻率的整數(shù)部分和小數(shù)顯示通過按鈕來切換。其中最大時為8位整數(shù),3位小數(shù)。 3.1 閘門信號產(chǎn)生模塊:library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_arith.all;use ieee.std_logic_unsigned.all;entity Key isport(cp:in std_logic;output

4、:out std_logic );end Key;architecture data of Key issignal iq:unsigned (12 downto 0);signal iq1:std_logic;beginprocess(cp,iq,iq1)beginif(cp'event and cp='1') thenif(iq=4999)theniq1<=not iq1;iq<=('0','0','0','0','0','0','0',

5、9;0','0','0','0','0','0');elseiq<=iq+1;end if;end if;output<=iq1;end process;end data;3.2 寄存器模塊:library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity save isport(clk: in std_logic;intt:in std_logic_vector (19 downto 0);outt:

6、out std_logic_vector (19 downto 0);end save;architecture a of save issignal temp: std_logic_vector (19 downto 0);beginprocess(clk,intt)beginif(clk'event and clk='1')thentemp<=intt;end if;outt<=temp;end process;end a;3.3 頻率顯示切換模塊:library ieee;use ieee.std_logic_1164.all;use ieee.std

7、_logic_arith.all;use ieee.std_logic_unsigned.all;entity Selete isport( input1:in std_logic_vector (3 downto 0);input2:in std_logic_vector (3 downto 0);input3:in std_logic_vector (3 downto 0);input4:in std_logic_vector (3 downto 0);input5:in std_logic_vector (3 downto 0);input6:in std_logic_vector (3

8、 downto 0);input7:in std_logic_vector (3 downto 0);input8:in std_logic_vector (3 downto 0);input9:in std_logic_vector (3 downto 0);input10:in std_logic_vector (3 downto 0);input11:in std_logic_vector (3 downto 0);selete:in std_logic;date:out std_logic_vector (31 downto 0);end Selete;architecture dat

9、a of Selete issignal iq1:std_logic_vector(31 downto 0);signal iq2:std_logic_vector(31 downto 0);beginprocess (input1,input2,input3,input4,input5,input6,input7,input8,input9,input10,input11)beginiq1<=input11(3 downto 0)&input10(3 downto 0)&input9(3 downto 0)&input8(3 downto 0)&inpu

10、t7(3 downto 0)&input6(3 downto 0)&input5(3 downto 0)&input4(3 downto 0);iq2<="00000000000000000000"&input3(3 downto 0)&input2(3 downto 0)&input1(3 downto 0);case selete iswhen '0'=>date<=iq1;when '1'=>date<=iq2;end case;end process;end

11、 data;3.4 頻率的計算:利用公式: 把求出的fx擴大1000倍,即把小數(shù)點后三位放入整數(shù)部分。3.5 頻率顯示前的數(shù)據(jù)處理模塊:將頻率的各個位上的數(shù)字分出來,用過選擇模塊選擇輸出位3.6 等精度頻率計核心原理模塊通過D觸發(fā)器,對輸出的閘門信號進行同步,在同步后的閘門信號下給兩個頻率分別計數(shù),得到對應(yīng)的計數(shù)值用于計算頻率并顯示。3.6 頂層電路圖:3.7管腳分配圖:四、實驗結(jié)果4.1 數(shù)據(jù)記錄:函數(shù)信號發(fā)生器:數(shù)碼管顯示數(shù)據(jù):誤差(%):100.000 100.000 0.00%335.000 334.975 0.01%654.500 654.500 0.00%1000.000 1000.000 0.00%3250.660 3250.401 0.01%6555.500 6555.066 0.01%10000.000 10000.000 0.00%45550.000 45550.109 0.00%76666.000 76664.035 0.00%100000.000 100000.000 0.00%366500.000 366500.000 0.00%777778.000 777780.000 0.00%1000000.000 999680.000 0.03%5000000.000 4999680.000

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

最新文檔

評論

0/150

提交評論