Advertisement
flatcap89

KapC.java

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