{"id":28493133,"url":"https://github.com/lcwllmr/soroudi2017-jump","last_synced_at":"2025-07-07T12:09:25.643Z","repository":{"id":294638490,"uuid":"986334127","full_name":"lcwllmr/soroudi2017-jump","owner":"lcwllmr","description":"JuMP implementations of selected parts from Soroudi's \"Power system optimization modeling in GAMS\" (2017)","archived":false,"fork":false,"pushed_at":"2025-06-30T16:19:53.000Z","size":354,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-30T17:27:05.629Z","etag":null,"topics":["julia","jump","pluto","power-systems"],"latest_commit_sha":null,"homepage":"https://lcwllmr.github.io/soroudi2017-jump/","language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lcwllmr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-19T13:03:39.000Z","updated_at":"2025-06-30T16:12:13.000Z","dependencies_parsed_at":"2025-05-22T10:00:40.536Z","dependency_job_id":null,"html_url":"https://github.com/lcwllmr/soroudi2017-jump","commit_stats":null,"previous_names":["lcwllmr/soroudi2017-jump"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lcwllmr/soroudi2017-jump","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lcwllmr%2Fsoroudi2017-jump","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lcwllmr%2Fsoroudi2017-jump/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lcwllmr%2Fsoroudi2017-jump/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lcwllmr%2Fsoroudi2017-jump/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lcwllmr","download_url":"https://codeload.github.com/lcwllmr/soroudi2017-jump/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lcwllmr%2Fsoroudi2017-jump/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264075702,"owners_count":23553511,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["julia","jump","pluto","power-systems"],"created_at":"2025-06-08T09:07:33.293Z","updated_at":"2025-07-07T12:09:25.637Z","avatar_url":"https://github.com/lcwllmr.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# soroudi2017-jump\n\nThis repo contains Julia/JuMP re-implementations of the code examples from the textbook\n\n\u003e Soroudi, Alireza. Power system optimization modeling in GAMS. Vol. 78. Switzerland: Springer, 2017. \u003chttps://doi.org/10.1007/978-3-319-62350-4\u003e.\n\nThis is a personal exercise to get into power systems modeling and become more comfortable with using Julia and JuMP.\nI am not implementing all code samples in the book but instead have chosen a path of topics that interest me.\nDepending on where you read this, also have a look at the \n[repo](https://github.com/lcwllmr/soroudi2017-jump)\nor the \n[website](https://lcwllmr.github.io/soroudi2017-jump).\n\n## Contents\n\nHere is a list of planned/finished topics and how they map to the book sections. \nThe links each lead to a rendered web version of the respective notebook.\n\n1. [Thermal unit economic dispatch (ED)](https://lcwllmr.github.io/soroudi2017-jump/01-thermal-unit-economic-dispatch.html): Section 3.1\n2. [Thermal unit environmental dispatch \u0026 Pareto optimal front approach](https://lcwllmr.github.io/soroudi2017-jump/02-thermal-unit-environmental-dispatch.html): Section 3.2\n3. `WIP` [Cost-based dynamic ED (DED) \u0026 ramp rate sensitivity analysis](https://lcwllmr.github.io/soroudi2017-jump/03-dynamic-economic-dispatch.html): Section 4.1 introduction and 4.1.1\n4. `WIP` [Multi-objective cost-emission minimization](https://lcwllmr.github.io/soroudi2017-jump/04-multi-objective-cost-emission-minimization.html): Section 4.1.2\n5. `WIP` [Wind-integrated DED](https://lcwllmr.github.io/soroudi2017-jump/05-wind-integrated-ded.html): Section 4.1.3\n6. `TODO` Energy storage system (ESS) operation in DED: Section 7.2.1\n7. `TODO` ESS operation in wind-integrated DED: Section 7.2.2\n\n## How the repo works\n\nThis is mostly a note to myself, so I don't forget my workflow in the future.\nAll Pluto notebooks are developed locally and then converted to HTML using the following pipeline:\n\n- Build and launch the dev container so you don't need to install Julia locally. From the repo root:\n  ```\n  docker build -t s17jmp .\n  docker run -d -v .:/workspace -p 1234:1234 --name s17jmp s17jmp:latest\n  ```\n  and open the browser at \u003chttp://localhost:1234\u003e to access Pluto's UI and work with the notebooks.\n- After you are happy with the changes, you simply push to `main` and then, if any of the `*.jl` or `README.md` were changed, a GitHub action should be triggered automatically.\n  This will export this readme file and all notebooks as HTML pages and publish them to GitHub pages at \u003chttps://lcwllmr.github.io/soroudi2017-jump\u003e.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flcwllmr%2Fsoroudi2017-jump","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flcwllmr%2Fsoroudi2017-jump","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flcwllmr%2Fsoroudi2017-jump/lists"}