Total Pageviews

Showing posts with label NOTE TO SELF. Show all posts
Showing posts with label NOTE TO SELF. Show all posts

Wednesday, April 10, 2019

How to Install LMH6702 macro model to LTspice XVII


-----How to set up a new opamp model to Ltspice XVII-----
1. Download the opamp macro model from its manufacturer.
2. Put .lib or .mod file of the opamp to C:\Users\Username\Documents\LTspiceXVII\lib\sub
3. Make .asy file of the opamp by using opamp2.asy and put it to
C:\Users\Username\Documents\LTspiceXVII\lib\sym

You can get the SPICE MODEL of LMH6702 from here. 

This is a comparison of open loop gain characteristic of LMH6702 between Ltspice XVII and Datasheet. The absolute values don't match but the relative value of the gain and phase and the position of poles are almost the same. 


Sunday, September 16, 2018

電子工作便利帳


自分用の備忘録です。結構忘れてしまうので。

パーツショップ

  1. 千石通商
  2. 秋月電子
  3. マルツ
  4. サトー電機
  5. チップワンストップ          ※メガネコア Fair-Rite 2873000202を購入したサイト
  6. CWS ByteMark      ※トロイダルコア F-140A-J を購入したサイト
  7. Amidon
  8. 富士無線(コネクター)  ※BNC、M型、変換コネクタ各種
  9. コスモ電子(コネクター) ※BNC、M型、変換コネクタ各種
  10. 小田原無線(コネクター) ※BNC、M型、変換コネクタ各種
  11. テイシン電機
  12. 大進無線
  13. 共立エレショップ     ※ちょっとマニアックな冶具がここにあったりします。
  14. マイクロパワー研究所   ※フェライトバーならここでしょうか
  15. NPO法人ラジオ少年
  16. タカチ電機工業      ※各種ケース

VNA,SA関係
  1. mRS mini Radio Solutions       ※2ポートタイプVNA
  2. DST             ※2ポートタイプVNA
  3. Signal Hound                          ※USB スペクトラムアナライザー
  4. おじさん工房
  5. ICAS Enterprise                         ※VNA以外にもいろいろある
  6. MFJ
  7. miniVNAとVNAWの比較 ※貴重な比較サイト
  8. VNA各種の比較(信号処理方法含む)  ※貴重な比較サイト  









Sunday, August 12, 2018

Note to Self : How to embed audio files in your blog of Google Blogger

You can embed audio players on your blog and play audio files saved in your google drive by writing HTML5 tags as follows.

<audio  controls="true" preload="auto">
<source src=" ******** "></source>
Your browser doesn't support HTML5 audio.
</audio> 

"********" is the link to your shared audio file in your google drive. But you need some modification to the link.

Let's say you get a shared link of your audio file in your google drive as

”https://drive.google.com/open?id=1WBDHfjE1vyQZlGRAt8hIZFcQsDBRBUHb”.

You need to change "open" to "uc" as

”https://drive.google.com/uc?id=1WBDHfjE1vyQZlGRAt8hIZFcQsDBRBUHb”.

And then you copy it and paste into the HTML5 tags as follows.

<audio  controls="true" preload="auto">
<source src="https://drive.google.com/uc?id=1WBDHfjE1vyQZlGRAt8hIZFcQsDBRBUHb"></source>
Your browser doesn't support HTML5 audio.
</audio> 

You can hear a sound clip of Kookaburra.
(Please note that this shared file is a wav formatted file and Internet Explorer 11 doesn't support wav format. So you can not hear the sound on IE11.)