Nov 23, 2020 #1 A 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.
Nov 23, 2020 #2 RealAEL Advanced Member level 1 Joined May 16, 2008 Messages 438 Helped 298 Reputation 598 Reaction score 279 Trophy points 1,343 Location Hotel California Activity points 5,978 You have a couple of basic errors Some typos as Sls != SLs and Slg != SLg. ADS is case sensitive for such variable names. 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 Some typos as Sls != SLs and Slg != SLg. ADS is case sensitive for such variable names. 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)
Nov 24, 2020 #3 A amir_syakir Newbie level 6 Joined Oct 15, 2020 Messages 14 Helped 0 Reputation 0 Reaction score 1 Trophy points 11 Activity points 132 RealAEL said: You have a couple of basic errors Some typos as Sls != SLs and Slg != SLg. ADS is case sensitive for such variable names. 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) Click to expand... Thank you, your reply helped me solve it.
RealAEL said: You have a couple of basic errors Some typos as Sls != SLs and Slg != SLg. ADS is case sensitive for such variable names. 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) Click to expand... Thank you, your reply helped me solve it.