@@ -34,17 +34,21 @@ open language with multiple implementations. It is a large, complex,
34
34
powerful language with an extensive standard library of components.
35
35
36
36
This implementation follows the work of
37
- [ David Broman] ( http://www.ida.liu .se/~davbr / )
37
+ [ David Broman] ( http://web.ict.kth .se/~dbro / )
38
38
([ thesis] ( http://www.bromans.com/david/publ/thesis-2010-david-broman.pdf )
39
39
and [ code] ( http://www.bromans.com/software/mkl/mkl-source-1.0.0.zip )
40
40
and [ George Giorgidze] ( http://db.inf.uni-tuebingen.de/team/giorgidze )
41
41
([ Hydra code] ( https://github.com/giorgidze/Hydra ) and
42
42
[ thesis] ( http://db.inf.uni-tuebingen.de/files/giorgidze/phd_thesis.pdf ) )
43
43
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.
48
52
49
53
Installation
50
54
------------
@@ -135,7 +139,7 @@ the use of equals in equations, so the example above can be:
135
139
``` julia
136
140
function Vanderpol ()
137
141
y = Unknown (1.0 , " y" )
138
- x = Unknown (" x" )
142
+ x = Unknown (" x" )
139
143
@equations begin
140
144
der (x, - 1.0 ) = (1 - y^ 2 ) * x - y
141
145
der (y) = x
0 commit comments