Skip to content

Commit 890d764

Browse files
committed
Start of a design document for #10.
1 parent 5a65246 commit 890d764

File tree

2 files changed

+517
-6
lines changed

2 files changed

+517
-6
lines changed

README.md

+10-6
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,21 @@ open language with multiple implementations. It is a large, complex,
3434
powerful language with an extensive standard library of components.
3535

3636
This implementation follows the work of
37-
[David Broman](http://www.ida.liu.se/~davbr/)
37+
[David Broman](http://web.ict.kth.se/~dbro/)
3838
([thesis](http://www.bromans.com/david/publ/thesis-2010-david-broman.pdf)
3939
and [code](http://www.bromans.com/software/mkl/mkl-source-1.0.0.zip)
4040
and [George Giorgidze](http://db.inf.uni-tuebingen.de/team/giorgidze)
4141
([Hydra code](https://github.com/giorgidze/Hydra) and
4242
[thesis](http://db.inf.uni-tuebingen.de/files/giorgidze/phd_thesis.pdf))
4343
and [Henrik Nilsson](http://www.cs.nott.ac.uk/~nhn/) and their
44-
functional hybrid modeling. Two solvers are available to solve the
45-
implicit DAE's generated. The default is DASKR, a derivative of DASSL with root
46-
finding. A solver based on the
47-
[Sundials](https://github.com/tshort/Sundials.jl) package is also available.
44+
functional hybrid modeling. Sims is most similar to
45+
[Modelyze](https://github.com/david-broman/modelyze) by David Broman
46+
([report](http://www.eecs.berkeley.edu/Pubs/TechRpts/2012/EECS-2012-173.pdf)).
47+
48+
Two solvers are available to solve the implicit DAE's generated. The
49+
default is DASKR, a derivative of DASSL with root finding. A solver
50+
based on the [Sundials](https://github.com/tshort/Sundials.jl) package
51+
is also available.
4852

4953
Installation
5054
------------
@@ -135,7 +139,7 @@ the use of equals in equations, so the example above can be:
135139
``` julia
136140
function Vanderpol()
137141
y = Unknown(1.0, "y")
138-
x = Unknown("x")
142+
x = Unknown("x")
139143
@equations begin
140144
der(x, -1.0) = (1 - y^2) * x - y
141145
der(y) = x

0 commit comments

Comments
 (0)