Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] How to solve 'unable to resolve function expression' in Advanced Design System (ADS)?

Status
Not open for further replies.

amir_syakir

Newbie level 6
Joined
Oct 15, 2020
Messages
14
Helped
0
Reputation
0
Reaction score
1
Trophy points
11
Activity points
132
I try to simulate with these equation, but it is unable to be resolved. Can anyone please help me.

forum1.PNG


forum2.PNG
 

You have a couple of basic errors
  1. Some typos as Sls != SLs and Slg != SLg. ADS is case sensitive for such variable names.
  2. Secondly just doing an s-parameter simulation does not produce Z or Y parameter results. You would need to add two addition expressions as follows:
Z = stoz(S, 50)​
Y = stoy(S, 50)​
 
You have a couple of basic errors
  1. Some typos as Sls != SLs and Slg != SLg. ADS is case sensitive for such variable names.
  2. Secondly just doing an s-parameter simulation does not produce Z or Y parameter results. You would need to add two addition expressions as follows:
Z = stoz(S, 50)​
Y = stoy(S, 50)​
Thank you, your reply helped me solve it.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top