Artifact 138a415543819cfdff4658bc64e84e0cc71b74daf9025e03aba30b2aa04060a4:
- Executable file mtt/lib/examples/Chemical/ReactorTF/MakeFigure.m — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 406) [annotate] [blame] [check-ins using] [more...]
- Executable file mttroot/mtt/lib/examples/Chemical/ReactorTF/MakeFigure.m — part of check-in [a822056bb5] at 2000-12-28 17:12:57 on branch origin/master — To RCS (user: gawthrop@users.sourceforge.net, size: 406) [annotate] [blame] [check-ins using]
## Makes the figures par = ReactorTF_numpar; # Parameters sym = ReactorTF_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");