Skip to content

Commit

Permalink
bug fix in flow bounds for transient
Browse files Browse the repository at this point in the history
  • Loading branch information
kaarthiksundar committed Jan 29, 2025
1 parent 9f1a851 commit 58f73cf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
## Staged
- nothing

## v0.10.3
- bug fix in transient flow bound computation

## v0.10.2
- bug fix in Steady State transfer cost model
- fix for power expression and power variable writing
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = "GasModels"
uuid = "5e113713-6c35-5477-b766-e1109486666f"
authors = ["Russell Bent <[email protected]>", "Kaarthik Sundar <[email protected]>", "David Fobes <[email protected]>"]
repo = "https://github.com/lanl-ansi/GasModels.jl.git"
version = "0.10.2"
version = "0.10.3"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
2 changes: 1 addition & 1 deletion src/io/transient.jl
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ function parse_files(

make_si_units!(static_data)
add_base_values!(static_data)
correct_f_bounds!(static_data)
check_connectivity(static_data)
check_status(static_data)
check_edge_loops(static_data)

check_global_parameters(static_data)
prep_transient_data!(static_data; spatial_discretization=spatial_discretization)

Expand Down

2 comments on commit 58f73cf

@kaarthiksundar
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/123953

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.10.3 -m "<description of version>" 58f73cfe265156a76715194e45d56921ad0e5453
git push origin v0.10.3

Please sign in to comment.