一般PCB基本設計流程如下:前期準備->PCB結構設計->PCB布局->布線->布線優化和絲印->網絡和DRC檢查和結構檢查->制版。 第一:前期準備。這包括準備元件庫和原理圖。“工欲善其事,必先利其器”,要做出一塊好的板子,除了要設計好原理之外,還要畫得好。在進行PCB設計之前,首先要準備好原理圖SCH的元件庫和PCB的元件庫。元件庫可以用peotel 自帶的庫,但一般情況下很難找到合適的,最好是自己根據所選器件的標準尺寸資料自己做元件庫。原則上先做PCB的元件庫,再做SCH的元件庫。PCB的元件庫要求較高,它直接影響板子的安裝;SCH的元件庫要求相對比較松,只要注意定義好管腳屬性和與PCB元件的對應關系就行。PS:注意標準庫中的隱藏管腳。之后就是原理圖的設計,做好后就準備開始做PCB設計了。
上傳時間: 2013-11-03
上傳用戶:youmo81
本應用文檔從元件選擇,電路設計和印刷電路板的布線等幾個方面講座了電路板級的電磁兼容性EMC設計。本文從以下幾個部分進行論述:電磁兼容的概述元件選擇和電路設計技術印制電路板的布線技術
上傳時間: 2013-11-14
上傳用戶:shen007yue
特點(FEATURES) 精確度0.1%滿刻度 (Accuracy 0.1%F.S.) 可作各式數學演算式功能如:A+B/A-B/AxB/A/B/A&B(Hi or Lo)/|A| (Math functioA+B/A-B/AxB/A/B/A&B(Hi&Lo)/|A|/etc.....) 16 BIT 類比輸出功能(16 bit DAC isolating analog output function) 輸入/輸出1/輸出2絕緣耐壓2仟伏特/1分鐘(Dielectric strength 2KVac/1min. (input/output1/output2/power)) 寬范圍交直流兩用電源設計(Wide input range for auxiliary power) 尺寸小,穩定性高(Dimension small and High stability)
上傳時間: 2013-11-24
上傳用戶:541657925
#include<iom16v.h> #include<macros.h> #define uint unsigned int #define uchar unsigned char uint a,b,c,d=0; void delay(c) { for for(a=0;a<c;a++) for(b=0;b<12;b++); }; uchar tab[]={ 0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,
上傳時間: 2013-10-21
上傳用戶:13788529953
一般PCB基本設計流程如下:前期準備->PCB結構設計->PCB布局->布線->布線優化和絲印->網絡和DRC檢查和結構檢查->制版。 第一:前期準備。這包括準備元件庫和原理圖。“工欲善其事,必先利其器”,要做出一塊好的板子,除了要設計好原理之外,還要畫得好。在進行PCB設計之前,首先要準備好原理圖SCH的元件庫和PCB的元件庫。元件庫可以用peotel 自帶的庫,但一般情況下很難找到合適的,最好是自己根據所選器件的標準尺寸資料自己做元件庫。原則上先做PCB的元件庫,再做SCH的元件庫。PCB的元件庫要求較高,它直接影響板子的安裝;SCH的元件庫要求相對比較松,只要注意定義好管腳屬性和與PCB元件的對應關系就行。PS:注意標準庫中的隱藏管腳。之后就是原理圖的設計,做好后就準備開始做PCB設計了。
上傳時間: 2013-11-20
上傳用戶:XLHrest
本應用文檔從元件選擇,電路設計和印刷電路板的布線等幾個方面講座了電路板級的電磁兼容性EMC設計。本文從以下幾個部分進行論述:電磁兼容的概述元件選擇和電路設計技術印制電路板的布線技術
上傳時間: 2013-11-05
上傳用戶:ls530720646
題目:利用條件運算符的嵌套來完成此題:學習成績>=90分的同學用A表示,60-89分之間的用B表示,60分以下的用C表示。 1.程序分析:(a>b)?a:b這是條件運算符的基本例子。
上傳時間: 2015-01-08
上傳用戶:lifangyuan12
RSA算法 :首先, 找出三個數, p, q, r, 其中 p, q 是兩個相異的質數, r 是與 (p-1)(q-1) 互質的數...... p, q, r 這三個數便是 person_key,接著, 找出 m, 使得 r^m == 1 mod (p-1)(q-1)..... 這個 m 一定存在, 因為 r 與 (p-1)(q-1) 互質, 用輾轉相除法就可以得到了..... 再來, 計算 n = pq....... m, n 這兩個數便是 public_key ,編碼過程是, 若資料為 a, 將其看成是一個大整數, 假設 a < n.... 如果 a >= n 的話, 就將 a 表成 s 進位 (s
標簽: person_key RSA 算法
上傳時間: 2013-12-14
上傳用戶:zhuyibin
數字運算,判斷一個數是否接近素數 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no
上傳時間: 2015-05-21
上傳用戶:daguda
The government of a small but important country has decided that the alphabet needs to be streamlined and reordered. Uppercase letters will be eliminated. They will issue a royal decree in the form of a String of B and A characters. The first character in the decree specifies whether a must come ( B )Before b in the new alphabet or ( A )After b . The second character determines the relative placement of b and c , etc. So, for example, "BAA" means that a must come Before b , b must come After c , and c must come After d . Any letters beyond these requirements are to be excluded, so if the decree specifies k comparisons then the new alphabet will contain the first k+1 lowercase letters of the current alphabet. Create a class Alphabet that contains the method choices that takes the decree as input and returns the number of possible new alphabets that conform to the decree. If more than 1,000,000,000 are possible, return -1. Definition
標簽: government streamline important alphabet
上傳時間: 2015-06-09
上傳用戶:weixiao99