From 93a4fad7a150207dd19ecbf2934ac49a0c7b6eba Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Sun, 18 Sep 2022 01:18:49 +0200 Subject: [PATCH] Planetary2: Move to Unstable as it is not yet working properly The middle gear set can't fulfill the planetary gear set condition (ring = sun + 2 * planets) May have more issues. Resolves: #417 --- boxes/generators/planetary2.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/boxes/generators/planetary2.py b/boxes/generators/planetary2.py index c6dd5a1..230744a 100644 --- a/boxes/generators/planetary2.py +++ b/boxes/generators/planetary2.py @@ -19,9 +19,11 @@ import math class Planetary2(Boxes): - """Balanced force Difference Planetary Gear""" + """Balanced force Difference Planetary Gear (not yet working properly)""" - ui_group = "Part" + ui_group = "Unstable" + + description = """Still has issues. The middle planetary gears set must not have a mashing sun gear as it can't be a proper gear set.""" def __init__(self): Boxes.__init__(self) @@ -43,7 +45,7 @@ class Planetary2(Boxes): "--deltateeth", action="store", type=int, default=1, help="enable secondary ring with given delta to the ring gear") self.argparser.add_argument( - "--modulus", action="store", type=float, default=3, + "--modulus", action="store", type=float, default=1.0, help="modulus of the theeth in mm") self.argparser.add_argument( "--shaft", action="store", type=float, default=6.,