8000 create LinearInterconnectedSystems for interconnections of linear sys… · python-control/python-control@da04036 · GitHub
[go: up one dir, main page]

Skip to content

Commit da04036

Browse files
committed
create LinearInterconnectedSystems for interconnections of linear systems
1 parent 4e46c4a commit da04036

File tree

3 files changed

+381
-201
lines changed

3 files changed

+381
-201
lines changed

control/config.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,13 @@ def use_legacy_defaults(version):
215215
if major == 0 and minor < 9:
216216
# switched to 'array' as default for state space objects
217217
set_defaults('statesp', use_numpy_matrix=True)
218+
218219
# switched to 0 (=continuous) as default timestep
219220
set_defaults('control', default_dt=None)
220221

222+
# changed iosys naming conventions
223+
set_defaults('iosys', state_name_delim='.',
224+
duplicate_system_name_prefix='copy of ',
225+
duplicate_system_name_suffix='')
226+
221227
return (major, minor, patch)

0 commit comments

Comments
 (0)
0