Advertisement
flatcap89

SerSchaltg.java

Jan 5th, 2013
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1. package prakt.v6;
  2.  
  3. import blank.v5.Complex;
  4.  
  5. public class SerSchaltg extends KombSchaltg {
  6.  
  7.     public SerSchaltg(Zweipol elem1, Zweipol elem2) {
  8.         super(elem1, elem2);
  9.     }
  10.  
  11.    
  12.     public Complex widerstand(double freq) {
  13.        
  14.         Complex Z = elem1().widerstand(freq).add(elem2().widerstand(freq));
  15.         return Z;
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement