gdshelpers icon indicating copy to clipboard operation
gdshelpers copied to clipboard

RingResonator Circumference missing vertical racetrack contributions

Open rkberlin opened this issue 10 months ago • 0 comments

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

rkberlin avatar Aug 24 '23 08:08 rkberlin