Parent Directory | Revision Log
Fixed problem with logrel instances in PyGTK GUI. Removed faulty INSTALL_DOC directory -- docs just go to INSTALL_ASCDATA for now.
1 | REQUIRE "johnpye/shm.a4c"; |
2 | |
3 | IMPORT "johnpye/extpy/extpy"; |
4 | IMPORT "johnpye/roots"; |
5 | |
6 | (* |
7 | Do a plot of the roots of the system when it first loads. Requires that you |
8 | have ASCEND built with IDA. You also need to run with the PyGTK interface |
9 | and you need to have scipy and matplotlib installed. |
10 | *) |
11 | MODEL shmroots REFINES shm; |
12 | (* just inherit all the equations and vars *) |
13 | METHODS |
14 | METHOD on_load; |
15 | RUN reset; RUN values; |
16 | RUN ode_init; |
17 | RUN roots; |
18 | END on_load; |
19 | |
20 | METHOD roots; |
21 | EXTERNAL roots(SELF); |
22 | END roots; |
23 | END shmroots; |
john.pye@anu.edu.au | ViewVC Help |
Powered by ViewVC 1.1.22 |