Update telemetry antenna entity names (#7155)

* Update telemetry antenna entity names

Changed the generic sketch and profile entity names to more specific names

* Update kcl-samples simulation test output

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Karan Bharaj
2025-05-21 11:46:05 -04:00
committed by GitHub
parent d90d445d84
commit 825d34718a
8 changed files with 216 additions and 216 deletions

View File

@ -17,8 +17,8 @@ boltDiameter = .196
boltPitchCircleDiameter = 2.5
// 2D cross-sectional profile of the part that will later be revolved
sketch001 = startSketchOn(YZ)
profile001 = startProfile(sketch001, at = [plateDia / 2, 0])
antennaCrossSectionSketch = startSketchOn(YZ)
antennaCrossSectionProfile = startProfile(antennaCrossSectionSketch, at = [plateDia / 2, 0])
|> yLine(length = plateThickness)
|> xLine(length = -(plateDia - antennaBaseDia) / 2, tag = $seg03)
|> angledLine(angle = antennaAngle, length = 1.1, tag = $seg01)
@ -40,11 +40,11 @@ profile001 = startProfile(sketch001, at = [plateDia / 2, 0])
|> close()
// Revolution about y-axis of earlier profile
revolve001 = revolve(profile001, angle = 360, axis = Y)
antennaCrossSectionRevolve = revolve(antennaCrossSectionProfile, angle = 360, axis = Y)
// Function to create a countersunk hole
fn countersink(@holePosition) {
startSketchOn(revolve001, face = seg03)
startSketchOn(antennaCrossSectionRevolve, face = seg03)
|> circle(center = holePosition, radius = boltDiameter / 2, tag = $hole01)
|> extrude(length = -plateThickness)
|> chamfer(length = 0.04, tags = [hole01])