16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright (c) P.J.Gawthrop 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.15 1998/05/14 08:20:29 peterg
## Start time at DT - the result at time zero is computed outside the
## loop
##
## Revision 1.14 1998/05/13 08:57:27 peterg
## Now uses simpar.h in place of odes.h
##
|
>
>
>
|
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright (c) P.J.Gawthrop 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.16 1998/05/14 08:25:52 peterg
## Corrected time skew.
##
## Revision 1.15 1998/05/14 08:20:29 peterg
## Start time at DT - the result at time zero is computed outside the
## loop
##
## Revision 1.14 1998/05/13 08:57:27 peterg
## Now uses simpar.h in place of odes.h
##
|
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
write "#define MTTNY1 ", MTTNy+1 $
write "#define MTTNU1 ", MTTNu+1 $
write "#define MTTNX2 ", MTTNx+2 $
write "#define MTTNY2 ", MTTNy+2 $
write "#define MTTNU2 ", MTTNu+2 $
write "#include <stdio.h>"$
write "#include ""$1_simpar.h"" "$
write "#include ""$1_ode.c"" "$
write "#include ""$1_input.c"" "$
write "#include ""$1_numpar.c"" "$
write "#include ""$1_state.c"" "$
%External (global) variable list
|
>
|
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
write "#define MTTNY1 ", MTTNy+1 $
write "#define MTTNU1 ", MTTNu+1 $
write "#define MTTNX2 ", MTTNx+2 $
write "#define MTTNY2 ", MTTNy+2 $
write "#define MTTNU2 ", MTTNu+2 $
write "#include <stdio.h>"$
write "#include ""sign.c"" "$
write "#include ""$1_simpar.h"" "$
write "#include ""$1_ode.c"" "$
write "#include ""$1_input.c"" "$
write "#include ""$1_numpar.c"" "$
write "#include ""$1_state.c"" "$
%External (global) variable list
|