From 7ab3c6ad9cec94557fe321c94c14363e875c53f2 Mon Sep 17 00:00:00 2001 From: Shugo Kaneko <49300827+kanekosh@users.noreply.github.com> Date: Fri, 31 May 2024 16:49:47 -0400 Subject: [PATCH] fixed typo and takeoff plotting (#68) --- doc/features/mission.rst | 2 +- openconcept/examples/HybridTwin.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/features/mission.rst b/doc/features/mission.rst index a42dce51..ef189562 100644 --- a/doc/features/mission.rst +++ b/doc/features/mission.rst @@ -42,7 +42,7 @@ The additional takeoff phases are: - ``v0v1``: from a standstill to decision speed (v1). An instance of ``GroundRollPhase``. - ``v1vr``: from v1 to rotation. An instance of ``GroundRollPhase``. - ``rotate``: rotation in the air before steady climb. An instance of ``RotationPhase`` or ``RobustRotationPhase``. -- ``v1vr``: energency stopping from v1 to a stop. An instance of ``GroundRollPhase``. +- ``v1v0``: energency stopping from v1 to a stop. An instance of ``GroundRollPhase``. We use ``BLIImplicitSolve`` to solve for the decision speed ``v1`` where the one-engine-out takeoff distance is equal to the braking distance for rejected takeoff. diff --git a/openconcept/examples/HybridTwin.py b/openconcept/examples/HybridTwin.py index 0bb0becc..3b480d40 100644 --- a/openconcept/examples/HybridTwin.py +++ b/openconcept/examples/HybridTwin.py @@ -322,7 +322,6 @@ def show_outputs(prob): phases, x_label=x_label, y_labels=y_labels, - marker="-", plot_title="Takeoff Profile", )