1
\$\begingroup\$

I've converted an IBIS model to a SPICE model using microCap, and am trying to simulate that subckt with LTSpice.

Using LTspice, I get an error with the subckt in the library.

"u1:g1: Unknown circuit node: "u1:xvkdr.vkdr" requested in behavioural source"

enter image description here

It cannot understand the V() function used in this way "V(XVKDR.VKDR)" Which is referencing a specific voltage net (VKDR) within the subckt (XVKDR).

Here is the LTspice project with .lib

LTSpice project

Thank you

asked May 13, 2019 at 20:21
\$\endgroup\$
2
  • \$\begingroup\$ also cannot find ... SYMBOL AutoGenerated\\RXD_33_2_TYP 480 48 R0 \$\endgroup\$ Commented May 13, 2019 at 20:55
  • \$\begingroup\$ Sorry, I've moved the symbol into the project directory and re-uploaded. drive.google.com/open?id=1dkhyFRDQwCQwXa8mo_qXOzKEH4PwANG3 \$\endgroup\$ Commented May 13, 2019 at 22:03

1 Answer 1

1
\$\begingroup\$

In LT spice V() means the voltage of the node, I() means the current of the node.

For example, if I wanted to use a net named Vout.1 in an equation I would write this:

Value = V(Vout.1)*5

extracting the current only works on ports to parts, or two terminal parts

Value = I(R1) Value = I(U1:OUT)

As far as I know, spice or LT spice do not support IBIS files, you need to convert the files to spice. This could be done with the tool described here and/orhere

SPICE considers xvkdr.vkdr to be a single net name, I don't know how IBIS files work but it looks like IBIS considers xvkdr to be a component and vkdr to be a net. A workaround would be to go through the file and make sure there are only net names and rename all of the IBIS conventions to spice compatible conventions as spice only uses net names, there are no "sub-net" names.

answered May 14, 2019 at 17:57
\$\endgroup\$

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.