The Designer's Guide Community
Forum
Welcome, Guest. Please Login or Register. Please follow the Forum guidelines.
Jul 17th, 2024, 4:22am
Pages: 1
Send Topic Print
laplace_nd() (Read 590 times)
flz
New Member
*
Offline



Posts: 4
xi'an China
laplace_nd()
Aug 17th, 2009, 8:12pm
 
Dose function laplace_nd() have only frequency character? What is the output of a transient sumulaion?Can it be used to model ideal filters directly?The manual dosen't give detailed description.

eg.
V(n) <+ laplace(V(p),[1.0],[1.0,0.001]);

Thanks! Embarrassed
Back to top
 
 

to be finished
View Profile flz   IP Logged
Sumit Adhikari
Community Member
***
Offline



Posts: 44

Re: laplace_nd()
Reply #1 - Aug 18th, 2009, 7:55am
 
No it dosent only have frequency. U can definitely use it for
transient simulation.It is called numerator-denominator form.
Following is a usage :

module test(pin, nin, pout, nout);
 electrical pin, nin, pout, nout;
 real nn[0:2];
 real dd[0:2];
 analog begin
 @(initial_step) begin
   nn[0] = 1.0;
   nn[1] = 0.0;
   nn[2] = 0.0;
   dd[0] = 1.0;
   dd[1] = 1.0;
   dd[2] = 1.0;
  end
  V(pout, nout) <+ laplace_nd(V(pin,nin), nn, dd);
 end
endmodule

It is meant to model your filters.

Regards,
Sumit
Back to top
 
 
View Profile   IP Logged
Pages: 1
Send Topic Print
Copyright 2002-2024 Designer’s Guide Consulting, Inc. Designer’s Guide® is a registered trademark of Designer’s Guide Consulting, Inc. All rights reserved. Send comments or questions to editor@designers-guide.org. Consider submitting a paper or model.