From ba33fd9f0bce9aee45b388e6da5cd096d97478f1 Mon Sep 17 00:00:00 2001 From: gpogudin Date: Mon, 29 Jan 2024 16:36:23 +0100 Subject: [PATCH] fixing typos --- docs/src/tutorials/creating_ode.md | 2 +- src/discrete.jl | 2 +- src/input_macro.jl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/tutorials/creating_ode.md b/docs/src/tutorials/creating_ode.md index 199e3815..915a742a 100644 --- a/docs/src/tutorials/creating_ode.md +++ b/docs/src/tutorials/creating_ode.md @@ -54,7 +54,7 @@ assess_identifiability(ode) ## Defining using `ModelingToolkit` -`StructuralIdentifiability` has an extension `ModelingToolkitExt` which allows to use `ODESystem` from `ModelingToolkit` to descibe +`StructuralIdentifiability` has an extension `ModelingToolkitExt` which allows to use `ODESystem` from `ModelingToolkit` to describe a model. The extension is loaded automatically once `ModelingToolkit` is loaded via `using ModelingToolkit`. In this case, one should encode the equations for the states as `ODESystem` and specify the outputs separately. In order to do this, we first introduce all functions and scalars: diff --git a/src/discrete.jl b/src/discrete.jl index 3a3f57ad..45bbe0c5 100644 --- a/src/discrete.jl +++ b/src/discrete.jl @@ -97,7 +97,7 @@ Input: - `num_terms` - number of terms to compute Output: -- computes a sequence solution with teh required number of terms prec presented as a dictionary state_variable => corresponding sequence +- computes a sequence solution with the required number of terms prec presented as a dictionary state_variable => corresponding sequence """ function sequence_solution( dds::DDS{P}, diff --git a/src/input_macro.jl b/src/input_macro.jl index 5dcb2f79..a4c8a6f1 100644 --- a/src/input_macro.jl +++ b/src/input_macro.jl @@ -297,7 +297,7 @@ Here, - `x1`, `x2` are state variables - `y` is an output variable - `u` is an input variable -- `a`, `b`, `c` are time-indepdendent parameters +- `a`, `b`, `c` are time-independent parameters """ macro DDSmodel(ex::Expr...)