11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
+
+
+
+
|
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.7 1996/08/24 14:23:00 peter
## Global parameter passing.
## Proper error handling.
#
## Revision 1.6 1996/08/16 14:26:07 peter
## Fixed multi-output bug.
## Made sure that u0 is ok.
##
## Revision 1.5 1996/08/15 16:23:02 peter
## Now uses W in place of w for consistancy with time responses.
##
|
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
-
-
-
-
+
-
-
+
-
-
-
-
|
for i = 2:ny
nic = [nic im(:,i) re(:,i)]
end;
write_matrix(nic, '$1_nifr');
EOF
# Test for errors and print if any
err_length=$(wc -c <mtt_error)
if [ $err_length != "0" ]
then
# Now invoke the standard error handling.
echo MTT has failed with the following errors '...'
cat mtt_error
mtt_error_r dae2dm_r.log
exit 1
else
exit 0
fi
|