You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using 2D scan on large_tokamak.IN.DAT with addition of:
scan_dim = 2
* DESCRIPTION: Number of dimensions for variable scan
* JUSTIFICATION: 1-D or 2-D scan switch (1=1D, 2=2D)
nsweep = 1
* DESCRIPTION: aspect ratio
nsweep_2 = 3
* DESCRIPTION: pnetelin
isweep = 1
isweep_2 = 1
sweep = 3.0
sweep_2 = 400
it will fail on scan point 2 with following error: ValueError: x is initially in an infeasible region because at least one x is greater than an upper bound. When checking the OUT.DAT for the value pushing it out of bounds you find the following: rmajor = 8.0 is at or below its lower bound: 9.0 where in the IN.DAT the lower bound is 8.0 and the upper bound is 9.0. Likely that when printing it has switched them round and the message should be 8.0 is at or below its lower bound: 8.0
The text was updated successfully, but these errors were encountered:
Describe the bug
When using 2D scan on large_tokamak.IN.DAT with addition of:
it will fail on scan point 2 with following error:
ValueError: x is initially in an infeasible region because at least one x is greater than an upper bound
. When checking the OUT.DAT for the value pushing it out of bounds you find the following:rmajor = 8.0 is at or below its lower bound: 9.0
where in the IN.DAT the lower bound is 8.0 and the upper bound is 9.0. Likely that when printing it has switched them round and the message should be8.0 is at or below its lower bound: 8.0
The text was updated successfully, but these errors were encountered: