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.

Reflection Coefficient when conjugate matching

Status
Not open for further replies.

SDRookie

Junior Member level 2
Joined
Aug 23, 2017
Messages
22
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
273
I have a question about the conjugate matching.

When we calculate the reflection coefficient of the circuit, we use Γ=(ZL-Zg)/(ZL+Zg).

What if Zg is conjugate matching we ZL which means Zg=ZL*, and Zg=R+jX, ZL=R-jX?

The Γ is not 0.

I think the conjugate matching make sure that there is no power reflect back to source generator so the Γ should be 0. I know why we need the conjuagate matching. All I need is to solve this math problem.

Thanks
 

Your calculations are right, Γ is not 0. Here is most interesting links I've found to help with your question:
1. http://www.analog-rf.com/match.shtml
2. **broken link removed**
3. http://www.ece.rutgers.edu/~orfanidi/ewa/ch13.pdf

From [1]:
Complex conjugate matching produces the maximum small signal transfer of power from a source that is not a transmission line to a load at the sacrifice of:...

From [2]:
Maximizing power transfer versus power efficiency
The theorem was originally misunderstood (notably by Joule) to imply that a system consisting of an electric motor driven by a battery could not be more than 50% efficient since, when the impedances were matched, the power lost as heat in the battery would always be equal to the power delivered to the motor. In 1880 this assumption was shown to be false by either Edison or his colleague Francis Robbins Upton, who realized that maximum efficiency was not the same as maximum power transfer. To achieve maximum efficiency, the resistance of the source (whether a battery or a dynamo) could be made close to zero. Using this new understanding, they obtained an efficiency of about 90%, and proved that the electric motor was a practical alternative to the heat engine.

From[3]:
Conjugate matching is not the same as reflectionless matching, which refers to matching the load to the line impedance,ZL=Z0, in order to prevent reflections from the load.

to be honest, I do not have good understanding on this topic. I think that reading on basic theory like in [3] may help. Maybe someone with better understanding will clarify your question.
 

Your calculations are right, Γ is not 0. Here is most interesting links I've found to help with your question:
1. http://www.analog-rf.com/match.shtml
2. **broken link removed**
3. http://www.ece.rutgers.edu/~orfanidi/ewa/ch13.pdf

From [1]:


From [2]:


From[3]:


to be honest, I do not have good understanding on this topic. I think that reading on basic theory like in [3] may help. Maybe someone with better understanding will clarify your question.

Thanks Georgy.

I am thinking another way to explain this is situation. If we think about the wave theory, PL=P+-P-. P+= V+^2/R and P-= V-^2/R. The V+could have higher level than voltage at the output of generator, where v+ is at insert voltage the load and v- is reflect voltage at the load. therefore, even Γ is not zero, there are still half of the power transmitted to the load.
 

A simple example of conjugate matching is a RL series load. Conjugate matching can be achieved by placing a series C to the generator with same amount R of real impedance. Means you put the capacitor in resonance with the load L. At the load terminals you have a large reflection coefficient, most energy in the system is circulating between L and C although the generator R is perfectly matched to the load R.

Reflection coefficient is no useful parameter to describe conjugate matching.
 
When we calculate the reflection coefficient of the circuit,
we use Γ=(ZL-Zg)/(ZL+Zg).
This is a reflection coefficient for Voltage Wave.

What if Zg is conjugate matching we ZL which means Zg=ZL*, and Zg=R+jX, ZL=R-jX?
The Γ is not 0.
Reflection coefficient for Voltage Wave is not zero.

I think the conjugate matching make sure that there is no power reflect back to source generator so the Γ should be 0.
Reflection coefficient for Power Wave is zero.

Port Impedance=R+j*X
(1) Load=R+j*X
(2) Load=R-j*X

Then calculate S11 using RF simulator.
Which case do you think you can get S11=0 ?

Gamma_V = {Zin - Zref} / {Zin + Zref}
Gamma_P = {Zin - conjugate(Zref)} / {Zin + Zref}

Power Wave formulation is most used in RF world.
For example, S-parameters of Keysight ADS are based on Power Wave formulation.

RF simulator give Gamma_P as S11.

See followings.
https://www.edaboard.com/showthread.php?347861#4
https://www.edaboard.com/showthread.php?347861#7

Reflection coefficient is no useful parameter to describe conjugate matching.
Wrong.
This is a reflection coefficient for Voltage Wave.

Reflection coefficient in Power Wave formulation is useful parameter to describe conjugate matching.
 
More information see "Microwave Network Design Using the Scattering Matrix-Janusz A. Dobrowolski-ARTECH HOUSE pp-75-77
 

Like others mentioned in the linked previous thread https://www.edaboard.com/showthread.php?347861-Network-theory-travelling-waves-vs-power-waves, the terms "power wave" and "power wave reflection coefficient" aren't commonly used in the majority of RF text books.

I see that they have been apparently introduced in the 1965 IEEE paper Power Waves and the Scattering Matrix by Kurokawa. They are surely useful when calculating power transfer with complex termination. Thanks for sketching the concept.
 

S11 is {Zin - conjugate(Zref)} / {Zin + Zref}
in RF simulator or internal post processing in VNA(Vector Network Analyzer).
It is never {Zin - Zref} / {Zin + Zref}

Many people don't know this.

Code:
//****************************************************************************
/*BEGIN_DOC
FUN_NAME:zin()
FUN_DESCRIPTION: Given a reflection coefficient and the reference impedance, this measurement returns the input impedance looking into the measurement ports. 
RETURNED_VALUE: Integer, real or complex
CATEGORY: S-Parameter
SYNTAX:  z = zin(Sii, Z) 
EXAMPLE: zIN = zin(S11, 50.0)
ARGUMENT
  ARG_NAME: Sii
  ARG_DESCRIPTION: complex reflection coefficient.
  ARG_DEFAULT: None
  ARG_RANGE: (-inf:inf)
  ARG_TYPE: Complex
  ARG_REQUIRED: YES
ARGUMENT
  ARG_NAME: zRef
  ARG_DESCRIPTION: reference impedance
  ARG_DEFAULT: 50.0
  ARG_RANGE: (-inf:inf)
  ARG_TYPE: Integer, real or complex
  ARG_REQUIRED: NO
DEFINED IN: $HPEESOF_DIR/expressions/ael/network_fun.ael
SEE ALSO: vswr(), yin() 
EXTERNAL: yes
AUTHOR: Agilent Technologies
DATE: Unknown
VERSION_CREATED: ADS 1.0
END_DOC*/
//**************************************************************************** 
defun zin(sii,zRef)
{  
  decl zi = if (zRef == NULL) then 50.0 else zRef;
      return (conj(zi)+zi*sii)/(1-sii); 
}
 
Last edited:
Keysight ADS 2016:

conjmatch.PNG
 

Keysight ADS 2016:
ADS2016 give S11 as Voltage-Reflection Coefficient ?

Until ADS2009U1 since MDS, S11 was Power-Reflection Coefficient.
When did it change ?

This might be due to trend of current ADS target application, SI(Signal Interity) or High Speed Data Transmission.
Conjugate matching is not important in such applications.

I'm very curious about other simulators such as Microwave Office, Eagle, dead GoldenGate etc.
 
Last edited:

I haven't seen your conjugate S11 definition before.
Power Wave Formulation in ADS is well known in FAQ.
See attached document(https://www.edaboard.com/attachment.php?attachmentid=147829&d=1531391256).

S-Parameters in both Agilent ADS2009U1 and Cadence Spectre(Version 17.1.0.270) are defined by Power Wave Formulation.

S11 is {Zin - conjugate(Zref)} / {Zin + Zref}


Yes, obviously.
That is also consistent with the S11 definition that our RF/microwave textbooks are teaching.
Show me result of "zin(0.0, 50+j*50)" in Data Display Window.

If function zin() of measurement expression is also defined by Voltage Wave formulation, it has to give 50+j*50.

I don't have valid support contract now, so I can not access Keysight EEsof Knowledge Center.

If you can access Keysight EEsof Knowledge Center, search any change or update about S-parameter definition for complex Zref.
 

Attachments

  • Power_Wave_Formulation.pdf
    230.8 KB · Views: 475
  • 2018-0712-0915-32.png
    2018-0712-0915-32.png
    70.3 KB · Views: 310
  • 2018-0712-1119-11.png
    2018-0712-1119-11.png
    78.6 KB · Views: 225
  • 2018-0712-1022-30.png
    2018-0712-1022-30.png
    38.2 KB · Views: 202
  • 2018-0712-1043-25.png
    2018-0712-1043-25.png
    108.9 KB · Views: 295
  • Like
Reactions: Hash

    Hash

    Points: 2
    Helpful Answer Positive Rating
Show me result of "zin(0.0, 50+j*50)" in Data Display Window.

Here it is ...
zin.PNG

"Given a reflection coefficient and the reference impedance, this measurement returns the input impedance looking into the measurement ports."
I wonder what the highlighted section really means. It doesn't say this is the impedance of the DUT, the wording is a bit strange.

But anyway, I've been a happy RF/µW engineer for decades now without power wave reflection coefficient definition, using real impedance reference values with the non-conjugate equation from textbooks :)
 
Last edited:

But anyway, I've been a happy RF/μW engineer for decades now
without power wave reflection coefficient definition,
using real impedance reference values with the non-conjugate equation from textbooks :)
I noticed that your usage of "S1P_Eqn" is wrong in https://www.edaboard.com/attachment.php?attachmentid=147815&d=1531330031

Z[1] is a "Port reference impedance" not input impedance.

S[1,1]=Blank and Z[1]=50-j*50 for "S1P1".
So input impedance is 50+j*50 not 50-j*50.
Power Wave formulation is used here.

S-parameters are defined by Power Wave Formulation even in ADS2016.

Confirm it by using "Z1P_Eqn" instead of "S1P_Eqn".
See https://www.edaboard.com/attachment.php?attachmentid=147831&d=1531400101

"Given a reflection coefficient and the reference impedance,
this measurement returns the input impedance looking into the measurement ports."

I wonder what the highlighted section really means.
It doesn't say this is the impedance of the DUT,
the wording is a bit strange.
zin() is surely for Power Wave formulation even in ADS2016.
See code in https://www.edaboard.com/showthread.php?378353#8

Power Wave Formulation are used for both simulation and post-processing even in ADS2016.
 
Last edited:
  • Like
Reactions: Hash

    Hash

    Points: 2
    Helpful Answer Positive Rating
You are correct, my testcase was wrong!
I've been a happy RF/μW engineer for decades invariably
with power wave reflection coefficient definition,
using complex impedance reference values with the conjugate equation from RF expert textbooks
 
Last edited:

using complex impedance reference values with the conjugate equation from RF expert textbooks

Maybe that topics is teached differently in Japan, due to Kurokawa's efforts? FvM and I have been doing our PhD at the same university in Germany where voltage/current waves were teached.

I haven't used the power waves concept, so I can't estimate the practical value. Here's a publication from IEEE micrwave magazine where the author is a bit sceptal:
"Much like a lava lamp, the power waves are comforting to look at, but do not offer the engineer the tools required for analytic design."

**broken link removed**

But I agree that i seems to solve the discrepancy from post #1, so thanks for poiting to this topic!
 

**broken link removed**

I've also seen this. They suggest that Pseudowaves "have long been a cornerstone of microwave circuit theory" but I've only found a couple publications that mention pseudowaves or pseudo s parameters (aside from the author's other works), and the first use of the term came 27 years after Kurokawa's paper. Meanwhile they refer to power waves as a "new addition" to network theory. It looks to me like Williams is pushing a pet theory. If he weren't affiliated with NIST, I'd assume he's a hack.
 

Maybe that topics is teached differently in Japan, due to Kurokawa's efforts?
No.

Generalized S-parameters where port impedances are complex value are not taught at all even in Japan.

For example, see the following standard text book on microwave engineering.
**broken link removed**

Many people don't know difference between Power Wave Formulation and Pseudo Wave Formulation even in Japan.

From practical point of view, S-parameters with complex value reference impedance are not needed at all.

As far as my opinion, generalized S-parameters where port impedances are complex value are no more than mathematical extension.

See https://www.edaboard.com/showthread.php?347861#17

However important fact is that Generalized S-parameters are defined by "Power Wave Formulation" in almost all commercial RF Circuit Simulators.
They give S11=0 at conjugate matched condition.


Internal post processing in actual VNA(Vector Network Analyzer) also use "Power Wave Formulation".

We can see descriptions of "Power Wave Formulation" in any vendor's documents.
-Keysight
-Anritsu
-Wiltron(Now Anritsu)
-Advantest(Now Rohde & Schwarz)

Many people don't know this fact.

Attached are results of Agilent GoldenGate-4.3.8
S-Parameters of Agilent GoldenGate-4.3.8 are also defined by Power Wave Formulation.

They suggest that Pseudowaves "have long been a cornerstone of microwave circuit theory"
but I've only found a couple publications that mention pseudowaves or pseudo s parameters (aside from the author's other works),
and the first use of the term came 27 years after Kurokawa's paper.
No.
You can see many references about "Pseudo Wave Formulation" in EM simulation therory books.

Keysight Momentum use "Power Wave Formulation" as sama as ADSsim.
But Keysight EMPro use "Pseudo Wave Formulation".

Almost all circuit simulators use "Power Wave Formulation".
But this is not true for EM simulator.
 

Attachments

  • 2018-0713-1122-42.png
    2018-0713-1122-42.png
    29.3 KB · Views: 187
  • 2018-0713-1156-25.png
    2018-0713-1156-25.png
    30.9 KB · Views: 211
Last edited:

Generalized S-parameters where port impedances are complex value are not taught at all even in Japan.

For example, see the following standard text book on microwave engineering.
**broken link removed**
"Microwave Engineering" Written by David M. Pozar
1st Edition : Published in 1990
2nd Edition : Published in 1998
3rd Edition : Published in 2005
4th Edition : Published in 2012

I have 1st and 3rd Editions.
I saw 4th Edition recently.

There was no description about "Power Wave Formulation" until 3rd Edition.
However descriptions about "Power Wave Formulation" are added in 4th Edition.

See "Power Waves and Generalized Scattering Parameters" at pp.185-188 in 4th Edition.

Adding descriptions about "Power Wave Formulation" seems to be a request from many teacher or instructors in world wide who use previous three editions.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top