Skip to content

Commit f35157a

Browse files
committed
update history file
1 parent f2c460c commit f35157a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

HISTORY.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,19 @@ plot(bif_dia; xguide="k1", yguide="X")
8585
```
8686
- Automatically handles elimination of conservation laws for computing bifurcation diagrams.
8787
- Updated Bifurcation documentation with respect to this new feature.
88+
- Added function `is_autonomous` to check if a `ReactionSystem` is autonomous.
89+
- Added function `steady_state_stability` to compute stability for steady states. Example:
90+
```julia
91+
# Creates model.
92+
rn = @reaction_network begin
93+
(p,d), 0 <--> X
94+
end
95+
p = [:p => 1.0, :d => 0.5]
96+
97+
# Finds (the trivial) steady state, and computes stability.
98+
steady_state = [2.0]
99+
steady_state_stability(steady_state, rn, p)
100+
```
88101

89102
## Catalyst 13.5
90103
- Added a CatalystHomotopyContinuationExtension extension, which exports the `hc_steady_state` function if HomotopyContinuation is exported. `hc_steady_state` finds the steady states of a reaction system using the homotopy continuation method. This feature is only available for julia versions 1.9+. Example:

0 commit comments

Comments
 (0)