module lowpass1(in,out); input in; output out; voltage in,out; parameter real freq_p1 = 1M from (0:inf); analog V(out) <+ laplace_nd(V(in), [1] , [1,1/(`M_TWO_PI*freq_p1)] ); endmodule