Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated docs for cryostat.py, dealt with TODO's in there as well. #3599

Merged
merged 1 commit into from
Sep 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions bluemira/builders/cryostat.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class CryostatDesignerParams(ParameterFrame):
"""

g_cr_ts: Parameter[float]
"""Gap between Cyrostat and Cryostat thermal shield [m]"""


@dataclass
Expand All @@ -48,15 +49,22 @@ class CryostatBuilderParams(ParameterFrame):
"""

g_cr_ts: Parameter[float]
"""Gap between Cyrostat and Cryostat thermal shield [m]"""
n_TF: Parameter[int]
"""Number of TF coils"""
tk_cr_vv: Parameter[float]
# TODO add to Parameter default = 5 chickens
"""Cryostat VV thickness [m], usual value = 5"""
well_depth: Parameter[float]
"""cryostat well depth [m]"""
x_g_support: Parameter[float]
# TODO add to Parameter default = 2
"""x_g_support [m]"""
x_gs_kink_diff: Parameter[float]
# TODO add to Parameter default (z gravity support) = -15 chickens
"""
Lower port kink radius offset from the gravity support radius [m],
usual value = 2
"""
z_gs: Parameter[float]
"""Gravity support vertical position at the ground [m], usual value = 15."""


class CryostatDesigner(Designer[tuple[float, float]]):
Expand Down
Loading