Advertisement
flatcap89

IndukL.java

Jan 4th, 2013
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. package prakt.v6;
  2.  
  3. import blank.v5.Complex;
  4.  
  5. public class IndukL implements Zweipol {
  6.    
  7.     private final double L;
  8.    
  9.     public IndukL(double wert) {
  10.         L = wert;
  11.     }
  12.     public Complex widerstand(double freq) {
  13.        
  14.         double Im = 2*Math.PI*freq*L;
  15.         return new Complex(0.0, Im);
  16.     }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement