From 3bdbc44a9dd9021996fa49ffa907ec1c4cb1ebce Mon Sep 17 00:00:00 2001 From: Rob Falck Date: Mon, 3 Feb 2025 20:28:31 -0500 Subject: [PATCH] update options to include t_final_targets --- dymos/phase/options.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dymos/phase/options.py b/dymos/phase/options.py index 2f3306f40..3a9ef7190 100644 --- a/dymos/phase/options.py +++ b/dymos/phase/options.py @@ -506,6 +506,9 @@ def __init__(self, read_only=False): self.declare(name='t_duration_targets', allow_none=True, default=[], desc='targets in the ODE to which the total duration of the phase is connected') + self.declare(name='t_final_targets', allow_none=True, default=[], + desc='targets in the ODE to which the final time of the phase is connected') + self.declare(name='t_duration_balance_options', default={}, desc='options dictionary for the duration residual')