bb3318d18c49b784e4d68f8a6d94b92ece7b89ba,trunk/SUAVE/Plots/Mission_Plots.py,,plot_altitude_sfc_weight,#,26
Before Change
axes.plot( time , sfc , line_color )
axes.set_xlabel("Time (min)",axis_font)
axes.set_ylabel("sfc (lb/lbf-hr)",axis_font)
axes.minorticks_on()
axes.grid(which="major", linestyle="-", linewidth="0.5", color="grey")
axes.grid(which="minor", linestyle=":", linewidth="0.5", color="grey")
axes.grid(True)
axes = fig.add_subplot(3,1,2)
axes.plot( time , mass , "ro-" )
axes.set_ylabel("Weight (lb)",axis_font)
axes.minorticks_on()
axes.grid(which="major", linestyle="-", linewidth="0.5", color="grey")
axes.grid(which="minor", linestyle=":", linewidth="0.5", color="grey")
axes.grid(True)
if save_figure:
plt.savefig(save_filename + file_type)
After Change
axes.set_ylabel("Altitude (ft)",axis_font)
set_axes(axes)
axes = fig.add_subplot(3,1,3)
axes.plot( time , sfc , line_color )
axes.set_xlabel("Time (min)",axis_font)
axes.set_ylabel("sfc (lb/lbf-hr)",axis_font)
set_axes(axes)
axes = fig.add_subplot(3,1,2)
axes.plot( time , mass , "ro-" )
axes.set_ylabel("Weight (lb)",axis_font)
set_axes(axes)
if save_figure:
plt.savefig(save_filename + file_type)
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 10
Instances
Project Name: suavecode/SUAVE
Commit Name: bb3318d18c49b784e4d68f8a6d94b92ece7b89ba
Time: 2020-03-22
Author: mclarke2@stanford.edu
File Name: trunk/SUAVE/Plots/Mission_Plots.py
Class Name:
Method Name: plot_altitude_sfc_weight
Project Name: suavecode/SUAVE
Commit Name: bb3318d18c49b784e4d68f8a6d94b92ece7b89ba
Time: 2020-03-22
Author: mclarke2@stanford.edu
File Name: trunk/SUAVE/Plots/Mission_Plots.py
Class Name:
Method Name: plot_electronic_conditions
Project Name: suavecode/SUAVE
Commit Name: bb3318d18c49b784e4d68f8a6d94b92ece7b89ba
Time: 2020-03-22
Author: mclarke2@stanford.edu
File Name: trunk/SUAVE/Plots/Mission_Plots.py
Class Name:
Method Name: plot_solar_flux
Project Name: suavecode/SUAVE
Commit Name: bb3318d18c49b784e4d68f8a6d94b92ece7b89ba
Time: 2020-03-22
Author: mclarke2@stanford.edu
File Name: trunk/SUAVE/Plots/Mission_Plots.py
Class Name:
Method Name: plot_aircraft_velocities