スキップしてメイン コンテンツに移動

Transmission Line (Cable) SPICE Model

http://www.mogami.com/e/cad/spice-tline.html

Transmission Line (Cable) SPICE Model

Characteristic Impedance (Ohm)
Velocity ratio (0.66 for PE insulation)
Attenuation constant at below frequency (dB/m)
frequency defining the above attenuation (MHz)
highest frequency of transmission signal spectrum (MHz)
length of the cable (m)
Model accuracy
Model type
The circuit simulator SPICE has built-in Lossless Transmission Lines (T), Lossy Transmission Lines (O) and Uniform Distributed RC Lines (U) Model. However both T and U model does not cosider frequency-dependent conductor resistance. So it is not possible to calculate the transmossion characteristic of the long cable.
This form generates adequate SPICE model for real taransmission line of specfied attenuation and length.
The velocity raio is the ratio of the phase velocity of the electromagnetic wave propergating througu the cable to the speed of light in vacuum. This value is determined by the dielectric constant of cable insulation as following relation.
  Vr = 1 / sqrt(k)
  Where
 Vr = velocity ratio (0 < Vr <= 1)
 k = relative dielectric constant
   = 2.3 (PE - Polyethylene insutation)
   = 1.5 (CPE - Celler/foamed Polyethylene insutation)
   = 2.1 (PTFE, PFA, FEP fluorocarbon polymer insulation)
   = 1.0 (Aire insulation)
   ..
If insulation of the cable is composed of two or more dielectric materials, it uses the equivalent dielectric constant which is determind actual measurement or computed value by the finit element method etc. Frequency that defines the attenuation must be at several tens of MHz or higher.
The highest frequency of transmission signal spectrum is the highest frequency limit of this SPIE model. If this value is not sure, please be calculated by the following equation.
  The highest frequency = 0.35 / the raise time of the pulse / 1e6 (MHz)
For example, if the rise time is 25 nS, this frequency is about 14 MHz. The precision of this model is about 2 % in the high accuracy model, about 6 % in the statndard accuracy model, about 12 % in the low accuracy model.
This model can apply wide range of transmission lines dielectric losses are negligible in comparison with the conductor loss, including coaxial cables, twin leads and strip lines.

コメント

このブログの人気の投稿

CR CR+LF 改行コードの話

キャリッジ・リターン(carrige return,CR) とライン・フィード(Line feed, LF)  Unix では、通常ライン・フィード(ニュー・ライン、New Line, NL と呼ばれ ることもある)  '\r' がキャリッジ・リターン、'\n' がライン・フィードである。 使用されるコード 一般的に、改行コードは次の2種類のコードのどちらか、もしくは組み合わせであらわされます。 記号 呼び名、別名 ASCIIコード マッチング LF ラインフィード(Line Feed)、ニューライン(New Line) 0A \n CR キャリッジリターン(Carriage Return)、リターン(Return) 0D \r ◆CR-LF HTTP, finger, SMTP, NNTP など、インターネットで使われている 通信プロトコルの多くでは、行末を表す記号として、 キャリッジ・リターン(carrige return,CR) とライン・フィード(Line feed, LF)の両方が必要であると定められている。 Unix では、通常ライン・フィード(ニュー・ライン、New Line, NL と呼ばれ ることもある)だけが行末の記号として使われる。よって、画面に文字列を表 示し、改行したい場合は、次のようなプログラムが使われる。 printf("Hello,world\n"); しかしながら、インターネットの上のプログラムを作成する時には、次のよう にしなければならないことが多い。 printf("Hello,world\r\n"); ここで、'\r' がキャリッジ・リターン、'\n' がライン・フィードである。い ずれも、C言語のソース・プログラム上では2文字に見えるが、Cコンパイラ により、1文字に変換される。それぞれ、アスキーでは、13(0x0d), 10(0x0a) である。 規格上は、CR-LF が必要とされているが、実際にプログラムを作る時には、LF だけでも動くことがある。しかし、それはたまたまその特定のサーバのプログ ラムが良くできていて、LF だけでも動くようになっているか...

RN4020資料纏め

Home URL http://www.microchip.com/wwwproducts/en/RN4020  Develop HelperのOverview http://microchipdeveloper.com/ble:rn4020-overview RN4020 を MLDP モードで使う http://sendagi3chome.com/wordpress/?p=372  ■システム構成 BLE、Bluetoothに共通して言えることですが、通信を行う際、データを送る側である”マスター(親機)”とデータを受ける側である”スレーブ(子機)”に各モジュールの役割を決める必要があります。 ・スレーブ(子機) RN4020では子機は[SR,32000000]コマンドで設定することができます。 ・マスター(親機) RN4020では親機の設定は [SR,92000000]コマンドで設定することができます。 親機設定後は[F]コマンドでBLE子機を探索し、接続したい子機が見つかったら、[E,0,子機ID]で接続することができます。 接続すると”Connected”という返答がきて、マスターとスレーブ共に10pin(PIO1)がHIGHにアサインされます。(通常、インジケータのLEDを接続する端子にしておくと良い) 接続後は、親機に送信したシリアル通信の内容がそのまま子機へフォワードされるようになります。 ■回路図 ・マスターは簡単に下記のような回路にしました。 USBシリアル変換とPCをUSBで接続し、シリアルコンソール(TeraTermやCoolTermなど)を使用してコマンドを適宜送信します。 ・スレーブは下記のような回路図にしました。 秋月で発売されている Arduino互換機 を使ってシリアルで受信した内容によって、フルカラーLEDの色を変えたり止めたりする&&スイッチが押されたら押されたとシリアル送信するような仕組みにしました。 Arduino互換機の中に書いたコードは下記です。 1 #define LED 2 2 #define RedLED 3 3 #define GreenLED 5 4 #de...