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
Code snippet starting on line 159 showing the incorrect loop:
# Set initial guesses for balances
prob['design.balance.W'] = 200.
for i, pt in enumerate(mp_propulsor.od_pts):
# initial guesses
prob['off_design.fan.PR'] = 1.2
prob['off_design.balance.W'] = 406.790
prob['off_design.balance.Nmech'] = 1. # normalized value
The example runs only because there is only one off-design point, and it happens to be named "off_design"
It should be done this way (from multi_spool_turboshaft.py):
Code snippet starting on line 159 showing the incorrect loop:
The example runs only because there is only one off-design point, and it happens to be named "off_design"
It should be done this way (from multi_spool_turboshaft.py):
The text was updated successfully, but these errors were encountered: