I'm trying to figure out how to implement a simple Verilog-A model of a capacitor into PSPICE. I'd like to be able to take this Verilog-A module and do a simple transient analysis in OrCAD Capture CIS.
Can anyone walk through the steps of using a Verilog-A file in an OrCAD Capture CIS simulation? For starters here is the simple capacitor model I found in a Verilog-A tutorial:
'include "disciplines.vams"
module va_capacitor(p,n) ;
parameter real capacitance = 1n ;
electrical p, n ;
analog
I(p,n) <+ capacitance * ddt(V(p,n)) ;
endmodule
Thanks in advanced!
Can anyone walk through the steps of using a Verilog-A file in an OrCAD Capture CIS simulation? For starters here is the simple capacitor model I found in a Verilog-A tutorial:
'include "disciplines.vams"
module va_capacitor(p,n) ;
parameter real capacitance = 1n ;
electrical p, n ;
analog
I(p,n) <+ capacitance * ddt(V(p,n)) ;
endmodule
Thanks in advanced!