|
# This file is part of the ASCEND Modeling Library and is released |
|
|
# under the GNU Public License as described at the end of this file. |
|
|
# |
|
|
# This file demonstrates the use of plotbvp.a4c |
|
|
|
|
|
DELETE TYPES; |
|
|
READ FILE "plotbvp.a4c"; |
|
|
|
|
|
COMPILE pbd OF plot_bvp_demo1; |
|
|
RUN pbd.reset; |
|
|
SOLVE pbd |
|
|
PLOT {pbd.Plot_Y}; |
|
|
SHOW LAST; |
|
|
|
|
|
########## plotbvp.a4s ends here ########## |
|
|
# |
|
|
# plotbvp.a4s |
|
|
# by Ben Allan |
|
|
# May 1998 |
|
|
# Part of the ASCEND Library |
|
|
# $Date: 1998/06/17 20:08:40 $ |
|
|
# $Revision: 1.2 $ |
|
|
# $Author: mthomas $ |
|
|
# $Source: /afs/cs.cmu.edu/project/ascend/Repository/models/plotbvp.a4s,v $ |
|
|
# |
|
1 |
# This file is part of the ASCEND Modeling Library. |
# This file is part of the ASCEND Modeling Library. |
2 |
# |
# |
3 |
# Copyright (C) 1998 Carnegie Mellon University |
# Copyright (C) 1998 Carnegie Mellon University |
16 |
# along with the program. If not, write to the Free Software |
# along with the program. If not, write to the Free Software |
17 |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139 USA. Check |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139 USA. Check |
18 |
# the file named COPYING. |
# the file named COPYING. |
19 |
|
|
20 |
|
# by Ben Allan, May 1998 |
21 |
|
|
22 |
|
DELETE TYPES; |
23 |
|
READ FILE "plotbvp.a4c"; |
24 |
|
|
25 |
|
COMPILE pbd OF plotbvp; |
26 |
|
RUN pbd.reset; |
27 |
|
SOLVE pbd |
28 |
|
PLOT {pbd.Plot_Y}; |
29 |
|
SHOW LAST; |
30 |
|
|