GDSHelpers is an open-source package for automatized pattern generation for nano-structuring.
GNU Lesser General Public License v3.0
110
stars
33
forks
source link
RingResonator Circumference missing vertical racetrack contributions #66
Open
rkberlin opened 1 year ago
The current implementation of the RingResonator circumference
@property def circumference(self): return 2 np.pi self.radius + 2 * self.race_length
lacks the contribution of the optional vertical racetrack section and should be
@property def circumference(self): return 2 np.pi self.radius + 2 self.race_length + 2 self.vertical_race_length