René's URL Explorer Experiment


Title: Add support for continuous delay systems by MythasNauveili · Pull Request #1148 · python-control/python-control · GitHub

Open Graph Title: Add support for continuous delay systems by MythasNauveili · Pull Request #1148 · python-control/python-control

X Title: Add support for continuous delay systems by MythasNauveili · Pull Request #1148 · python-control/python-control

Description: This PR introduces initial support for linear time-invariant (LTI) systems with time delays in python-control, inspired by the capabilities of ControlSystems.jl package, and the InternalDelay.py script from Skogestad-Python. Key features Creation of delay sytems Systems with delays can now be intuitively constructed by multiplying a TransferFunction object with a delay(tau) object or an exp(-tau*s) expression: tf_delay = tf([1], [1,1]) * delay(2) # or s = tf("s") tf_delay = tf([1], [1,1]) * exp(-2*s) Underlying Representation: The approach utilizes Linear Fractional Transformations (LFT) with a PartitionedStateSpace representation (implemented in partitionedssp.py). The DelayLTI class (in delaylti.py) serves as the core object for these systems. Operations: Standard operations such as addition, multiplication, and feedback are supported for DelayLTI objects. Time and Frequency Responses: Time responses for delayed systems are computed by solving the underlying Delay Differential Equations (DDEs). Frequency responses are also supported. Retrocompatibility: Maintain retrocompatibility with existing functionalities. Implementation Details: DDE Solver: Time responses for delayed systems are computed by solving DDEs. After exploring alternatives, a custom DDE solver based on the Method of Steps, wrapping SciPy's solve_ivp, was implemented in dde.py. Accuracy Note: While this solver performs well for many cases, for stiff problems, it may require smaller step sizes for convergence compared to specialized DDE solvers (like those in ControlSystems.jl). In tested scenarios, the error typically remains at least three orders of magnitude below the system response with reasonable step sizes. (An error estimation algorithm could be a valuable future addition). Validation: A Julia script (control/julia/compute_tests.jl) using ControlSystems.jl has been added to generate reference results, which are exported to a JSON file. These results are used in the test suite (control/tests/delay_lti_test.py and control/tests/dde_test.py) to benchmark the accuracy of the DelayLTI implementation and DDE solver. Current Scope and Limitations: This implementation currently focuses on continuous-time delay systems. Discrete-time delay systems are not yet covered. The DDE solver may benefit from further enhancements for stiff problems or adaptive step sizing. Discussion Points: This PR represents the initial groundwork for this feature. I'm submitting this draft to share these first steps and would appreciate feedback on: The overall approach and class design (DelayLTI, PartitionedStateSpace). The DDE solver implementation and its current performance. Any potential integration issues or API considerations. I'm aware there is still work to be done for this feature to be ready for a full release, but I believe this provides a solid foundation.

Open Graph Description: This PR introduces initial support for linear time-invariant (LTI) systems with time delays in python-control, inspired by the capabilities of ControlSystems.jl package, and the InternalDelay.py s...

X Description: This PR introduces initial support for linear time-invariant (LTI) systems with time delays in python-control, inspired by the capabilities of ControlSystems.jl package, and the InternalDelay.py s...

Opengraph URL: https://github.com/python-control/python-control/pull/1148

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/checks(.:format)
route-controllerpull_requests
route-actionchecks
fetch-noncev2:3fd284af-5dfc-4101-3895-8000f14f7fee
current-catalog-service-hash87dc3bc62d9b466312751bfd5f889726f4f1337bdff4e8be7da7c93d6c00a25a
request-idDB58:34CC4F:CEA674:11DFE63:697A79CD
html-safe-nonceb58221f1601792f4780ba81a21a4ac11ddb3d58486c9a3a89b7c3f575e20201b
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEQjU4OjM0Q0M0RjpDRUE2NzQ6MTFERkU2Mzo2OTdBNzlDRCIsInZpc2l0b3JfaWQiOiIyOTQyMjUyNjIwNDUxNTc2MjY5IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac9974c5733f6d4e6e09a96e86e7ca8bb044a83b2eeb8a695c74b6806adbca9eb7
hovercard-subject-tagpull_request:2511964911
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,checks,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/checks
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/python-control/python-control/pull/1148/checks
twitter:imagehttps://avatars.githubusercontent.com/u/123153936?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/123153936?s=400&v=4
og:image:altThis PR introduces initial support for linear time-invariant (LTI) systems with time delays in python-control, inspired by the capabilities of ControlSystems.jl package, and the InternalDelay.py s...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Nonea9d1eabfb8cf0cb510bcf598032681675ad29b7ee4cb3bfb9a0a088a12803628
turbo-cache-controlno-cache
go-importgithub.com/python-control/python-control git https://github.com/python-control/python-control.git
octolytics-dimension-user_id2285872
octolytics-dimension-user_loginpython-control
octolytics-dimension-repository_id22791752
octolytics-dimension-repository_nwopython-control/python-control
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id22791752
octolytics-dimension-repository_network_root_nwopython-control/python-control
turbo-body-classeslogged-out env-production page-responsive full-width full-width-p-0
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release31bacebc3305d80609c1b175449c3d314bd1a855
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python-control/python-control/pull/1148/checks#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-control%2Fpython-control%2Fpull%2F1148%2Fchecks
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-control%2Fpython-control%2Fpull%2F1148%2Fchecks
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Fchecks&source=header-repo&source_repo=python-control%2Fpython-control
Reloadhttps://github.com/python-control/python-control/pull/1148/checks
Reloadhttps://github.com/python-control/python-control/pull/1148/checks
Reloadhttps://github.com/python-control/python-control/pull/1148/checks
python-control https://github.com/python-control
python-controlhttps://github.com/python-control/python-control
Notifications https://github.com/login?return_to=%2Fpython-control%2Fpython-control
Fork 447 https://github.com/login?return_to=%2Fpython-control%2Fpython-control
Star 2k https://github.com/login?return_to=%2Fpython-control%2Fpython-control
Code https://github.com/python-control/python-control
Issues 87 https://github.com/python-control/python-control/issues
Pull requests 8 https://github.com/python-control/python-control/pulls
Discussions https://github.com/python-control/python-control/discussions
Actions https://github.com/python-control/python-control/actions
Projects 0 https://github.com/python-control/python-control/projects
Wiki https://github.com/python-control/python-control/wiki
Security 0 https://github.com/python-control/python-control/security
Insights https://github.com/python-control/python-control/pulse
Code https://github.com/python-control/python-control
Issues https://github.com/python-control/python-control/issues
Pull requests https://github.com/python-control/python-control/pulls
Discussions https://github.com/python-control/python-control/discussions
Actions https://github.com/python-control/python-control/actions
Projects https://github.com/python-control/python-control/projects
Wiki https://github.com/python-control/python-control/wiki
Security https://github.com/python-control/python-control/security
Insights https://github.com/python-control/python-control/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fpython-control%2Fpython-control%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fpython-control%2Fpython-control%2Fissues%2Fnew%2Fchoose
MythasNauveilihttps://github.com/MythasNauveili
python-control:mainhttps://github.com/python-control/python-control/tree/main
MythasNauveili:dev-delayhttps://github.com/MythasNauveili/python-control/tree/dev-delay
Conversation 30 https://github.com/python-control/python-control/pull/1148
Commits 19 https://github.com/python-control/python-control/pull/1148/commits
Checks 14 https://github.com/python-control/python-control/pull/1148/checks
Files changed https://github.com/python-control/python-control/pull/1148/files
Please reload this pagehttps://github.com/python-control/python-control/pull/1148/checks
Please reload this pagehttps://github.com/python-control/python-control/pull/1148/checks
Sign in for the full log viewhttps://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-control%2Fpython-control%2Fpull%2F1148%2Fchecks
Add support for continuous delay systems https://github.com/python-control/python-control/pull/1148/checks#top
Please reload this pagehttps://github.com/python-control/python-control/pull/1148/checks
ruff-check on: pull_request https://github.com/python-control/python-control/actions/runs/17209086283
ruff-check-linux https://github.com/python-control/python-control/actions/runs/17209086283/job/48892587456?pr=1148
Conda-based pytest on: pull_request https://github.com/python-control/python-control/actions/runs/17209086284
Py3.10; no Slycot; no Pandas; no CVXOPT https://github.com/python-control/python-control/actions/runs/17209086284/job/48892587580?pr=1148
Py3.10; no Slycot; no Pandas; conda CVXOPT https://github.com/python-control/python-control/actions/runs/17209086284/job/48892587605?pr=1148
Py3.10; conda Slycot; no Pandas; no CVXOPT https://github.com/python-control/python-control/actions/runs/17209086284/job/48892587610?pr=1148
Py3.10; conda Slycot; no Pandas; conda CVXOPT https://github.com/python-control/python-control/actions/runs/17209086284/job/48892587613?pr=1148
Py3.12; no Slycot; no Pandas; no CVXOPT https://github.com/python-control/python-control/actions/runs/17209086284/job/48892587604?pr=1148
Py3.12; no Slycot; no Pandas; conda CVXOPT https://github.com/python-control/python-control/actions/runs/17209086284/job/48892587603?pr=1148
Py3.12; conda Slycot; no Pandas; no CVXOPT https://github.com/python-control/python-control/actions/runs/17209086284/job/48892587628?pr=1148
Py3.12; conda Slycot; no Pandas; conda CVXOPT https://github.com/python-control/python-control/actions/runs/17209086284/job/48892587647?pr=1148
Py3.12; conda Slycot; conda Pandas; conda CVXOPT ; QtAgg https://github.com/python-control/python-control/actions/runs/17209086284/job/48892587598?pr=1148
Finalize parallel coveralls https://github.com/python-control/python-control/actions/runs/17209086284/job/48893820331?pr=1148
Setup, Examples, Notebooks on: pull_request https://github.com/python-control/python-control/actions/runs/17209086287
install-examples https://github.com/python-control/python-control/actions/runs/17209086287/job/48892587466?pr=1148
Slycot from source on: pull_request https://github.com/python-control/python-control/actions/runs/17209086295
build-linux https://github.com/python-control/python-control/actions/runs/17209086295/job/48892587483?pr=1148
Doctest on: pull_request https://github.com/python-control/python-control/actions/runs/17209086303
doctest-linux https://github.com/python-control/python-control/actions/runs/17209086303/job/48892587415?pr=1148
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.