Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a33f9855e34b85fd8f7892d549445903 |
User & Date: | gawthrop@users.sourceforge.net on 2000-08-24 13:26:29 |
Other Links: | branch diff | manifest | tags |
Context
2000-08-24
| ||
13:45:30 | *** empty log message *** check-in: 9b03bf0a9d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:26:29 | Initial revision check-in: a33f9855e3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:48:55 | Include _subs file check-in: 1b82d20b62 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/lib/examples/Chemical/ReactorTF/MakeFigure.m version [bef9cb3f0c].
> > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ## Makes the figures par = ReactorTF_numpar; # Parameters sym = Reactor_sympar; # Parameter indices F_s= [90:10:500]; # Range of flows Z = []; for f_s=F_s par(sym.f_s) = f_s; z = sort(eig(ReactorTF_sm(par))); Z = [Z z]; endfor grid; xlabel("f_s"); ylabel("z_1"); plot(F_s,Z(1,:)); psfig("ReactorTF_zero_1"); grid; xlabel("f_s"); ylabel("z_2"); plot(F_s,Z(2,:)); psfig("ReactorTF_zero_2"); |
Added mttroot/mtt/lib/examples/Chemical/ReactorTF/Makefile version [563b5c62bb].
> > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Makes the schematic diagram and the zero figure all: ReactorTF_pic.ps ReactorTF_zero_1.ps ReactorTF_zero_2.ps ReactorTF_pic.ps: ReactorTF_pic.fig fig2dev -Lps ReactorTF_pic.fig> ReactorTF_pic.ps ReactorTF_zero_1.ps: ReactorTF_abg.fig mtt -q ReactorTF sm m; mtt -q ReactorTF numpar m; mtt -q Reactor sympar m; octave MakeFigure.m ReactorTF_zero_2.ps: ReactorTF_zero_1.ps touch ReactorTF_zero_2.ps |