Advertisement
makispaiktis

Phased Arrays - Patch microstrips (microstrip.m)

Jan 6th, 2023 (edited)
1,278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.34 KB | None | 0 0
  1. clear all
  2. close all
  3. clc
  4.  
  5. % Patch Microstrip
  6. p = patchMicrostrip;
  7. p.Height = 0.01;
  8. figure();
  9. show(p);
  10. % impedance(p, 1e9 : 20e6 : 2e9);
  11. figure();
  12. current(p, 1.66e9);
  13. figure();
  14. pattern(p, 1.66e9);
  15.  
  16. % Array
  17. a = linearArray;
  18. a.Element = p;
  19. a.NumElements = 4;
  20. a.ElementSpacing = 0.1
  21. figure();
  22. layout(a)
  23. figure();
  24. pattern(a, 1.66e9);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement