home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / BUS / yLaplace.sit / yLaplace / Example / 共振回路 < prev    next >
Text File  |  1996-08-18  |  306b  |  18 lines

  1. /*******  共振回路   *********/
  2.  
  3.     L = 10e-3;       /* 10mH      */
  4.  C = 0.47e-6;     /* 0.47uF */
  5.  R = 50;          /* 50 ohm */
  6.  
  7. /****************************/
  8.  
  9. Z1(s)= R // ( (s*L) + (1/(s*C)) );
  10.  
  11. Z2(s)= R + ( (s*L) // (1/(s*C)) );
  12.  
  13. freq 200, 4000, 50, arith;
  14.  
  15.      probe  Z1(s);   
  16. /*   probe  Z2(s);   */
  17.  
  18.