• <strike id="6sswi"><s id="6sswi"></s></strike><th id="6sswi"></th>
    • <ul id="6sswi"><center id="6sswi"></center></ul>
      <strike id="6sswi"></strike>
        論文格式
        電氣工程 會計論文 金融論文 國際貿易 財務管理 人力資源 輕化工程 德語論文 工程管理 文化產業管理 信息計算科學 電氣自動化 歷史論文
        機械設計 電子通信 英語論文 物流論文 電子商務 法律論文 工商管理 旅游管理 市場營銷 電視制片管理 材料科學工程 漢語言文學 免費獲取
        制藥工程 生物工程 包裝工程 模具設計 測控專業 工業工程 教育管理 行政管理 應用物理 電子信息工程 服裝設計工程 教育技術學 論文降重
        通信工程 電子機電 印刷工程 土木工程 交通工程 食品科學 藝術設計 新聞專業 信息管理 給水排水工程 化學工程工藝 推廣賺積分 付款方式
        • 首頁 |
        • 畢業論文 |
        • 論文格式 |
        • 個人簡歷 |
        • 工作總結 |
        • 入黨申請書 |
        • 求職信 |
        • 入團申請書 |
        • 工作計劃 |
        • 免費論文 |
        • 合作期刊 |
        • 論文同學網 |
        搜索 高級搜索

        當前位置:論文格式網 -> 畢業論文 -> 計算機論文
        畢業論文標題:

        基于網絡的虛擬實驗平臺—電路管理模塊的設計與實現

         本文ID:LWGSW13750 價格:收費積分/100
        掃一掃 掃一掃
        本站會員可自行下載:下載地址 基于網絡的虛擬實驗平臺—電路管理模塊的設計與實現 (收費:1000 積分)  

        論文字數:10739,頁數:26

        摘  要
        虛擬實驗平臺是一個能很好地提升教學效果的平臺。在這個平臺當中,完全通過軟件模擬的方式來仿真實現接口實驗的各個步驟及實驗效果。本平臺主要功能已在單機上基本完成,但在網絡化越來越重要的今天,一個平臺僅僅能夠在單機上使用是遠遠不夠的,進行網絡化的增強改進就顯得十分重要。在網絡化改進時要解決很多新的問題,如電路圖文件的的定義,NAT轉換的處理,傳輸途徑的選擇,傳輸協議的選擇等問題。在本畢業設計當中,主要是設計一個與虛擬實驗臺相配套的電路圖文件格式,在此格式當中需要描述的信息除一般電路包括的器件信息、器件管腳信息、連線信息外,還包括仿真實現器件功能的軟件模塊信息,所有這些信息通過自定義的文本文件格式來描述。在虛擬實現平臺運行時,可以通過選擇不同的電路圖文件做不同的實驗。在實驗進行當中,有可能要修改連線,要求本模塊能實現對這些操作實施記錄、保存。電路圖文件可以通過網絡傳輸、更新,是基于網絡的虛擬實驗平臺的重要的基本功能。
        關鍵詞:虛擬實驗平臺;網絡化改進;電路管理;P2P;NAT轉換

        Virtual Experimental Platform based on Network
        --Design and Implementation of Circuit Management Module
        Abstract
        Virtual Experimental Platform is a good platform to upgrade the quality of teaching. With the platform, we can simulate each steps and experiment effects of interface technology experiments totally by software. The mainly functions of the platform have been implemented in local computer version. But as the network gets increasingly important today, it is not enough to use a platform only in local machine. Obviously, it gets more and more important to improve the networking ability for the platform. As improving the networking ability, it will encounter many problems, such as the definition of circuit diagram files, the conversion of NAT, the selection of transmission channel and protocol, and etc. In the thesis, it is mainly to design a circuit diagram file format which is in accordance with virtual experiment platform.  In the file format, it is necessary to describe the software module information which is used to simulate the device functions, besides the device information, the chip pin information, and the connectivity information of a general circuit. All the information is described in a self defined text file. As the platform is activated, it can implement different experiment by choosing different circuit diagram file. In the experiment, as updating connecting line is possible, recoding and saving the operations are required in the module. Furthermore, as another important basic function of the virtual experiment platform based on networking, circuit diagram file could transmit and update by networking.
        Key words: Virtual Experimental Platform; Network improvements; Circuit Management; P2P; NAT Conversion 

        目錄

        1 引言 2
        1.1 課題研究意義 2
        1.2 課題研究方法 2
        2 涉及到的技術 3
        2.1 電路管理 3
        2.2 電路圖的傳輸--P2P技術 3
        2.3 P2P要解決的重要問題--NAT轉換 3
        3 涉及到的概念 4
        3.1 虛擬實驗平臺 4
        3.2 VC++開發環境簡介 4
        3.3 API簡介 4
        3.4 8253芯片功能簡單介紹 5
        4 軟件設計的功能簡介 6
        4.1 電路圖設計 6
        4.2 電路圖的連線操作 7
        4.3 連線部分電路圖文件的保存 8
        4.4 對于保存信息的讀取 9
        5 電路文件格式的定義 9
        5.1 什么是電路圖文件 9
        5.2 連線部分的保存格式 9
        5.3 8253實驗連線部分格式 10
        5.4 芯片部分的保存格式 11
        5.5 8253實驗芯片部分格式 11
        6 程序代碼設計 14
        6.1 總體思想 14
        6.2 命名規則 14
        6.3 主要涉及到的類 14
        6.4 打開實驗電路圖文件 15
        6.5 添加新線操作 17
        6.6 對添加新線的保存操作 18
        6.7 讀取保存的連線操作 19
        7 改進建議和措施 19
        7.1 平臺后期期望 19
        7.2 平臺改進建議 19
        結    論 20
        參考文獻 20
        致    謝 21
        聲    明 22


        相關論文
        本論文在計算機論文欄目,由論文格式網整理,轉載請注明來源www.donglienglish.cn,更多論文,請點論文格式范文查看
        上一篇:虛擬實驗平臺的網絡化改進方向---.. 下一篇:基于Apriori算法的關聯規則挖掘系..
        Tags:基于 網絡 虛擬 實驗 平臺 電路 管理 模塊 設計 實現 【收藏】 【返回頂部】
        最新文章
        熱門文章
        計算機論文
        推薦文章

        本站部分文章來自網絡,如發現侵犯了您的權益,請聯系指出,本站及時確認刪除 E-mail:349991040@qq.com

        論文格式網(www.donglienglish.cn--論文格式網拼音首字母組合)提供計算機論文畢業論文格式,論文格式范文,畢業論文范文

        Copyright@ 2010-2018 LWGSW.com 論文格式網 版權所有 蜀ICP備09018832號

        感谢您访问我们的网站,您可能还对以下资源感兴趣:

        论文格式网:毕业论文格式范文
        <ul id="magac"></ul>
      • <samp id="magac"></samp>
        <strike id="magac"></strike>