-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactored the Radau transcription to avoid the use of StateIndependentsComp #1117
base: master
Are you sure you want to change the base?
Changes from 14 commits
3504d68
c542feb
d100b60
d6b5c78
0aa416d
14d3132
1ff08a2
8360471
e8a4958
ab39055
9a20011
85b9e7c
0e36491
b50c4e4
256527d
ef123b8
19aee52
1b705c2
d25c0cf
f63d00b
6b9a34f
ce649d8
06b5ea1
ec57b5d
1b597b7
287dd7c
48536cf
4fc3050
05e455c
dddce58
8bada94
9587358
b3485cc
81011ba
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
import os | ||
import unittest | ||
|
||
from numpy.testing import assert_almost_equal | ||
|
||
import dymos.examples.brachistochrone.test.ex_brachistochrone as ex_brachistochrone | ||
|
@@ -9,7 +10,7 @@ | |
OPT, OPTIMIZER = set_pyoptsparse_opt('SNOPT', fallback=True) | ||
|
||
|
||
@use_tempdirs | ||
# @use_tempdirs | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably want to uncomment here and other places. |
||
class TestBrachistochroneExample(unittest.TestCase): | ||
|
||
@classmethod | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from .analytic.analytic import Analytic | ||
from .explicit_shooting import ExplicitShooting | ||
from .pseudospectral.gauss_lobatto import GaussLobatto | ||
from .pseudospectral.radau_pseudospectral import Radau | ||
from .pseudospectral.radau_pseudospectral import Radau as RadauDeprecated | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I wonder if it would be better to rename the module to radau_deprecated, just to alleviate confusion when viewing the file in the future. Then radau_new can become radau_pseudospectral. Otherwise, kind of mixing paradigms here. |
||
from .pseudospectral.birkhoff import Birkhoff | ||
from .pseudospectral.radau_new import RadauNew as Radau |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this test have problems with assembled-jac now?