diff --git a/performance_assessment/src/taw/defaultMethods/performance_assessment_output.cpp b/performance_assessment/src/taw/defaultMethods/performance_assessment_output.cpp index 00d4dd3fa4856a66f0256a57da82fb8707235c45..6b3c377ab2b9a193c89bca3d40209e01cef5af6c 100644 --- a/performance_assessment/src/taw/defaultMethods/performance_assessment_output.cpp +++ b/performance_assessment/src/taw/defaultMethods/performance_assessment_output.cpp @@ -840,7 +840,8 @@ void performance_assessment_output::generate_plot_ceiling_performance() { ax->plot(x, max_oei_ceiling_y); ax->grid(matplot::on); ax->ylim({0, max_ylim}); - ax->legend({"Service ceiling, Rate of climb 500 ft/min", "Max. ceiling, Rate of climb 0 ft/min", "OEI ceiling, Rate of climb 500 ft/min"}); + ax->legend({"Service ceiling, Rate of climb " + num2Str(std::format("{:.0f}", floor(mySettingsPt->rate_of_climb_for_service_ceiling * 196.8504))) + " ft/min", + "Max. ceiling, Rate of climb 0 ft/min", "OEI ceiling, Rate of climb 500 ft/min"}); ax->legend()->location(matplot::legend::general_alignment::bottomright); ax->xlabel("Gross mass [kg]"); ax->ylabel("Altitude [m]");