Skip to content
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
9 changes: 6 additions & 3 deletions process/sctfcoil.py
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,10 @@ def supercon(
jsc: {jsc}
iooic: {iooic}
jcritsc: {jcritsc}
Check conductor dimensions. fcond likely gone negative. fcond: {fcond}
Check conductor dimensions. Cable space area acs likely gone negative. acs: {acs}
Comment thread
timothy-nunn marked this conversation as resolved.
This is likely because t_cable_radial or t_cable_toroidal has gone negative:
t_cable_radial: {sctfcoil_module.t_cable_radial}
t_cable_toroidal: {sctfcoil_module.t_cable_toroidal}
"""
)

Expand Down Expand Up @@ -6702,8 +6705,8 @@ def extended_plane_strain(

M_ext[1, 0, kk] = rad[kk] ** 2 * (1 - M_ext[0, 0, kk])
M_ext[1, 1, kk] = 1 - rad[kk] ** 2 * M_ext[0, 1, kk]
M_ext[1, 2, kk] = -rad[kk] ** 2 * M_ext[0, 2, kk]
M_ext[1, 4, kk] = -rad[kk] ** 2 * M_ext[0, 4, kk]
M_ext[1, 2, kk] = -(rad[kk] ** 2) * M_ext[0, 2, kk]
M_ext[1, 4, kk] = -(rad[kk] ** 2) * M_ext[0, 4, kk]
M_ext[2, 2, kk] = 1.0e0
M_ext[3, 3, kk] = 1.0e0
M_ext[4, 4, kk] = 1.0e0
Expand Down