Skip to content

Commit 328aaf3

Browse files
committed
correct errors
1 parent 300ed3c commit 328aaf3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Images/smithplot_color.png

-395 Bytes
Loading

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,15 @@ smithplot!(ax, z, reflection = false, color = 1:101, freq = 3.0e9 * ones(length(
3333
smithscatter!(ax, [z[1]], markersize = 12.0)
3434
smithscatter!(ax, [z[end]], markersize = 12.0, marker = :cross)
3535
# Colorbar representing the length of the line
36-
Colorbar(fig[1,2], limits = (l[1]/λ, l[end]/λ), ticks = ([0.0, 0.5, 1.0], ["0.", "0.5λ", "1.0λ"]))
36+
Colorbar(fig[1,2], limits = (l[1]/λ, l[end]/λ), ticks = ([0.0, 0.5, 1.0], ["0.0", "λ/2", "λ"]))
3737
# Activate Data Inspector
3838
DataInspector(fig)
3939
fig
4040
```
4141

42+
![SmithChartExample](Images/smithplot_color.png)
43+
44+
4245
## Integration with Makie Utilities
4346

4447
This example showcases the seamless integration of the Smith chart with Makie.jl's interactive functionalities. It demonstrates a typical scenario used to teach impedance matching, where we aim to transform a source impedance of 50+100j $\Omega$ to a load impedance of 50 $\Omega$. To achieve this, we utilize a transmission line and a parallel stub, and control their lengths via sliders. By dynamically adjusting these lengths, users can observe how the source impedance seen by the load evolves on the Smith chart, visually illustrating the impedance matching process.
@@ -92,8 +95,6 @@ fig
9295

9396
## Plot Reflection Coefficientes
9497

95-
![SmithChartExample](Images/smithplot_color.png)
96-
9798
You can also draw reflection data with the `reflection = true` keyword. This is useful, for example, when you want to visualize the S-parameters of a simulation or measurement.
9899

99100
```julia

0 commit comments

Comments
 (0)