cryostat
Calculate cryostat geometries
cryostat_geometry(r_cryostat_inboard, dr_cryostat, z_cryostat_half_inside)
Calculates rectangular geometries of the cryostat
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
r_cryostat_inboard
|
float
|
cryostat internal radius |
required |
dr_cryostat
|
float
|
external cryostat thickness |
required |
z_cryostat_half_inside
|
float
|
cryostat internal half-height |
required |
Returns:
| Type | Description |
|---|---|
list[RectangleGeometry]
|
list of RectangleGeometry - dataclass returning rectangular geometry parameters |
Source code in process/models/geometry/cryostat.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | |