SpectreMDL - Referencing instance parameter values

Guest
I would like to use SpectreMDL to make a measurement that includes the
value of an instance parameter. For example:

export real area=ival(M2:w)*ival(M2:l)*ival(M2:m) + ...

Is something like this possible with Spectre? I would like to be able
to setup an expression to calculate a value without having to manually
calculate it everytime an instance parameter changes.

Thanks
 
Something like this would work:

export real area=(M2:w)*(M2:l)*M2:m)+....

I just tried this in an example, and got the expected value.


malleablecandy@yahoo.com wrote:
I would like to use SpectreMDL to make a measurement that includes the
value of an instance parameter. For example:

export real area=ival(M2:w)*ival(M2:l)*ival(M2:m) + ...

Is something like this possible with Spectre? I would like to be able
to setup an expression to calculate a value without having to manually
calculate it everytime an instance parameter changes.

Thanks
 
I feel pretty silly now...I don't know why I didn't just try that in
the first place! Thanks Kristin

Robert
 
Pardon the typo. Should be:

export real area=(M2:w)*(M2:l)*(M2:m)+....

But I am sure that you figured that out.

Kristin Beggs wrote:

Something like this would work:

export real area=(M2:w)*(M2:l)*M2:m)+....

I just tried this in an example, and got the expected value.


malleablecandy@yahoo.com wrote:

I would like to use SpectreMDL to make a measurement that includes the
value of an instance parameter. For example:

export real area=ival(M2:w)*ival(M2:l)*ival(M2:m) + ...

Is something like this possible with Spectre? I would like to be able
to setup an expression to calculate a value without having to manually
calculate it everytime an instance parameter changes.

Thanks
 

Welcome to EDABoard.com

Sponsor

Back
Top