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
The Optimization -> History plot in the dashboard has formatting and usability issues.
No units on the X axes
Legend is not in an optimum location
The list of variables on the left overlaps the Y axis labels
There is a huge amount of blank space below the plot on the page
The list of variables on the left can be long. Need to find a way to deal with that. You have to scroll down the list and you lose the view of the plot
Very slow response times
After a few variable selections, they stop working
See this image to see some of the formatting issues:
Example
Run this script
from aviary.interface.methods_for_level2 import AviaryProblem
from aviary.variable_info.enums import Verbosity
from aviary.interface.default_phase_info.two_dof import phase_info as two_dof_phase_info
prob = AviaryProblem()
local_phase_info = deepcopy(two_dof_phase_info)
prob.load_inputs('aviary/models/test_aircraft/converter_configuration_test_data_GwGm.csv', local_phase_info)
prob.check_and_preprocess_inputs()
prob.add_pre_mission_systems()
prob.add_phases()
prob.add_post_mission_systems()
prob.link_phases()
prob.add_driver("SLSQP", max_iter=20, verbosity=Verbosity.QUIET)
prob.add_design_variables()
prob.add_objective()
prob.setup()
prob.set_initial_guesses()
prob.recording_options['record_inputs'] = True
prob.recording_options['record_outputs'] = True
prob.run_aviary_problem("dymos_solution.db", optimization_history_filename='driver_history.db', make_plots=True)```
and then run
`aviary dashboard model_with_strut`
### Aviary Version
0.9.4-dev
### Relevant environment information
_No response_
The text was updated successfully, but these errors were encountered:
Description
The Optimization -> History plot in the dashboard has formatting and usability issues.
See this image to see some of the formatting issues:
Example
Run this script
The text was updated successfully, but these errors were encountered: