1 |
# This file is part of the ASCEND Modeling Library and is released |
2 |
# under the GNU Public License as described at the end of this file. |
3 |
# |
4 |
# This script loads and runs the results for the model |
5 |
# "tabulated_vessel_values" that is contained in the file |
6 |
# vesselTabulated.a4c. |
7 |
|
8 |
DELETE TYPES; |
9 |
READ FILE "vesselTabulated.a4c"; |
10 |
|
11 |
COMPILE tvv OF tabulated_vessel_values; |
12 |
BROWSE {tvv}; |
13 |
RUN {tvv.reset}; |
14 |
RUN {tvv.values}; |
15 |
SOLVE {tvv} WITH QRSlv; |
16 |
|
17 |
########## vesselTabulated.a4s ends here ########## |
18 |
# |
19 |
# vesselTabulated.a4s |
20 |
# by Arthur W. Westerberg |
21 |
# May 1998 |
22 |
# Part of the ASCEND Library |
23 |
# $Date: 1998/06/17 20:08:50 $ |
24 |
# $Revision: 1.3 $ |
25 |
# $Author: mthomas $ |
26 |
# $Source: /afs/cs.cmu.edu/project/ascend/Repository/models/vesselTabulated.a4s,v $ |
27 |
# |
28 |
# This file is part of the ASCEND Modeling Library. |
29 |
# |
30 |
# Copyright (C) 1998 Carnegie Mellon University |
31 |
# |
32 |
# The ASCEND Modeling Library is free software. You can redistribute |
33 |
# it and/or modify it under the terms of the GNU General Public |
34 |
# License as published by the Free Software Foundation---either |
35 |
# version 2 of the License, or (at your option) any later version. |
36 |
# |
37 |
# The ASCEND Modeling Library is distributed in hope that it |
38 |
# will be useful, but WITHOUT ANY WARRANTY--without even the implied |
39 |
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
40 |
# See the GNU General Public License for more details. |
41 |
# |
42 |
# You should have received a copy of the GNU General Public License |
43 |
# along with the program. If not, write to the Free Software |
44 |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139 USA. Check |
45 |
# the file named COPYING. |