Skip to content

Commit

Permalink
Start of a design document for #10.
Browse files Browse the repository at this point in the history
  • Loading branch information
tshort committed Jan 3, 2015
1 parent 5a65246 commit 890d764
Show file tree
Hide file tree
Showing 2 changed files with 517 additions and 6 deletions.
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,21 @@ open language with multiple implementations. It is a large, complex,
powerful language with an extensive standard library of components.

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

Two solvers are available to solve the implicit DAE's generated. The
default is DASKR, a derivative of DASSL with root finding. A solver
based on the [Sundials](https://github.com/tshort/Sundials.jl) package
is also available.

Installation
------------
Expand Down Expand Up @@ -135,7 +139,7 @@ the use of equals in equations, so the example above can be:
``` julia
function Vanderpol()
y = Unknown(1.0, "y")
x = Unknown("x")
x = Unknown("x")
@equations begin
der(x, -1.0) = (1 - y^2) * x - y
der(y) = x
Expand Down
Loading

0 comments on commit 890d764

Please sign in to comment.