Hi,
I have been trying to create s-bend coplanar waveguides of various radii, and gap, and signal widths. I have managed to create the signal line using this code:
nd.strt(length=1500, width=30).put(0, 0)
nd.bend(angle=90, radius=50, width=30).put()
nd.bend(angle=-90, radius=50, width=30).put()
nd.strt(length=1500, width=30).put()
But I’m not sure how to create the ground, as it would essentially be a rectangle which would have on one side a bend the same radius as the signal line. Is there some way to create this? Maybe using Euler bends or free form curves?
Thank you in advance