}
// Get the s-domain output for the stored input and s-value.
public Complex getOutputS(){
Complex num = Complex.plusOne();
num = num.times(this.dConst);
Complex den = new Complex();
den = this.sValue.times(this.sValue.times(this.aConst));
den = den.plus(this.sValue.times(this.aConst));
den = den.plus(this.cConst);
Complex term = new Complex();