Skip to content

Commit

Permalink
Merge pull request #2315 from ArnoStrouwen/docs
Browse files Browse the repository at this point in the history
non canon docstrings
  • Loading branch information
ChrisRackauckas authored Oct 14, 2023
2 parents d4239a7 + b54b05b commit 0ef0bb4
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 16 deletions.
11 changes: 7 additions & 4 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,13 +173,16 @@ system:

- Please refer to the
[SciML ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://github.com/SciML/ColPrac/blob/master/README.md)
for guidance on PRs, issues, and other matters relating to contributing to ModelingToolkit.
for guidance on PRs, issues, and other matters relating to contributing to SciML.

- See the [SciML Style Guide](https://github.com/SciML/SciMLStyle) for common coding practices and other style decisions.
- There are a few community forums:

+ The #diffeq-bridged channel in the [Julia Slack](https://julialang.org/slack/)
+ [JuliaDiffEq](https://gitter.im/JuliaDiffEq/Lobby) on Gitter
+ On the Julia Discourse forums (look for the [modelingtoolkit tag](https://discourse.julialang.org/tag/modelingtoolkit))
+ The #diffeq-bridged and #sciml-bridged channels in the
[Julia Slack](https://julialang.org/slack/)
+ The #diffeq-bridged and #sciml-bridged channels in the
[Julia Zulip](https://julialang.zulipchat.com/#narrow/stream/279055-sciml-bridged)
+ On the [Julia Discourse forums](https://discourse.julialang.org)
+ See also [SciML Community page](https://sciml.ai/community/)

## Reproducibility
Expand Down
2 changes: 1 addition & 1 deletion docs/src/systems/DiscreteSystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ DiscreteSystem

```@docs
DiscreteFunction(sys::ModelingToolkit.DiscreteSystem, args...)
DiscreteProblem(sys::ModelingToolkit.DiscreteSystem, args...)
DiscreteProblem(sys::ModelingToolkit.DiscreteSystem, u0map, tspan)
```

## Expression Constructors
Expand Down
8 changes: 5 additions & 3 deletions docs/src/systems/JumpSystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,17 @@ JumpSystem

## Transformations

```@docs
```@docs; canonical=false
structural_simplify
```

## Analyses

## Problem Constructors

```@docs; canonical=false
DiscreteProblem(sys::ModelingToolkit.DiscreteSystem, u0map, tspan)
```
```@docs
SciMLBase.DiscreteProblem(sys::JumpSystem,args...)
JumpProcesses.JumpProblem(sys::JumpSystem,args...)
JumpProblem(sys::JumpSystem, prob, aggregator)
```
6 changes: 3 additions & 3 deletions docs/src/systems/NonlinearSystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@ NonlinearSystem

## Transformations

```@docs
```@docs; canonical=false
structural_simplify
alias_elimination
tearing
```

## Analyses

```@docs
```@docs; canonical=false
ModelingToolkit.isaffine
ModelingToolkit.islinear
```

## Applicable Calculation and Generation Functions

```julia
```@docs; canonical=false
calculate_jacobian
generate_jacobian
jacobian_sparsity
Expand Down
4 changes: 2 additions & 2 deletions docs/src/systems/ODESystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ModelingToolkit.isaffine

## Applicable Calculation and Generation Functions

```julia
```@docs; canonical=false
calculate_jacobian
calculate_tgrad
calculate_factorized_W
Expand All @@ -56,7 +56,7 @@ SteadyStateProblem(sys::ModelingToolkit.AbstractODESystem, args...)
## Torn Problem Constructors

```@docs
ODAEProblem(sys::ModelingToolkit.AbstractODESystem, args...)
ODAEProblem
```

## Expression Constructors
Expand Down
8 changes: 5 additions & 3 deletions docs/src/systems/SDESystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,19 @@ sde = SDESystem(ode, noiseeqs)

## Transformations

```@docs
```@docs; canonical=false
structural_simplify
alias_elimination
Girsanov_transform
```
```@docs
ModelingToolkit.Girsanov_transform
```

## Analyses

## Applicable Calculation and Generation Functions

```julia
```@docs; canonical=false
calculate_jacobian
calculate_tgrad
calculate_factorized_W
Expand Down

0 comments on commit 0ef0bb4

Please sign in to comment.