Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
55104b9c7d1aa03da1ce15f39ab09de9 |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-18 20:06:57 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-18
| ||
20:06:58 | Put unded version control check-in: fb5eec80df user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
20:06:57 | Initial revision check-in: 55104b9c7d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
20:06:21 | Included zero outputs. check-in: a580330cb6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/awk/rep_txt2make.awk version [598e879132].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | ###################################### ##### Model Transformation Tools ##### ###################################### # gawk script: rep_txt2make # Converts the text file describing a report to makefile dependencies # P.J.Gawthrop August 1996 # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### BEGIN { split(ARGV[1],a,"_"); system_name = a[1]; } { if (NF==2) { if( match("tex txt r m ps",$2)>0) { printf("%s_%s.%s ", system_name, $1, $2) } } } END { } |
Added mttroot/mtt/bin/trans/awk/rep_txt2tex.awk version [33371645bd].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | ###################################### ##### Model Transformation Tools ##### ###################################### # gawk script: rep_txt2tex # Converts the text file describing a report to a report. # P.J.Gawthrop August 1996 # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### BEGIN { split(ARGV[1],a,"_"); system_name = a[1]; args = ARGV[2]; } { if (NF==2) { # tex files if( match("tex",$2)>0) { print "\\section{Representation " $1 ", language " $2 "}"; printf(" \\input{%s_%s.%s}\n", system_name, $1, $2); } # text files if( match("txt r m",$2)>0) { print "\\section{Representation " $1 ", language " $2 "}"; print " \\begin{verbatim}"; command = sprintf("cat %s_%s.%s", system_name, $1, $2); system(command); print " \\end{verbatim}"; } # ps files if( match("ps",$2)>0) { print "\\section{Representation " $1 ", language " $2 "}"; printf("This representation is given as Figure \\ref{fig:%s}.\n", $1); print " \\begin{figure}"; printf(" \\epsfig{file=%s_%s.%s,width=\\linewidth}\n", \ system_name, $1, $2); printf(" \\caption{System %s, representation %s}\n", system_name, $1); printf(" \\label{fig:%s}\n", system_name, $1); print " \\end{figure}"; } } } END { } |
Added mttroot/mtt/bin/trans/awk/tex2doc.awk version [845d02f4e3].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | ###################################### ##### Model Transformation Tools ##### ###################################### # gawk script: tex2doc # Encapsulates a tex file in a document. # P.J.Gawthrop August 1996 # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### BEGIN { split(ARGV[1],a,"_"); system_name = a[1]; split(a[2],b,"."); representation = b[1]; makefile = sprintf("%s_rep.make", system_name, representation); print "\\documentclass[12pt,a4paper]{article}"; printf("\\title{System %s, representation %s}\n", \ system_name, representation) print "\\author{Generated by MTT}"; print " \\usepackage{epsfig}"; print ; print "\\begin{document}"; print " \\maketitle"; printf(" \\input{%s_%s}\n", system_name, representation); print "\\end{document}" } |
Added mttroot/mtt/bin/trans/dae2dm_r version [0ed3b9f9ff].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: dae2dm_r # Differential-algebraic equation to linear descriptor matrices conversion # P.J.Gawthrop 8th May 1991, 7 June 1991, April 1994. # Copyright (c) P.J.Gawthrop, 1991, 1994. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### #Inform user echo Creating $1_dm.r # Remove the old log file rm -f dae2dm_r.log # Use reduce to accomplish the transformation reduce >dae2dm_r.log << EOF in "$1_def.r"; in "$1_dae.r"; in "$1_cr.r"; in "$1_sympar.r"; OFF Echo; OFF Nat; %Total number of descriptor variables MTTN := MTTNx + 2*MTTNz + MTTNyz; IF MTTN>0 THEN BEGIN % Find MTTE : the E matrix matrix MTTE(MTTN,MTTN); % First row partition IF MTTNx>0 THEN FOR j := 1:MTTNx DO MTTE(j,j) := 1; % Second row partition IF MTTNz>0 THEN FOR j := 1:MTTNz DO MTTE(j+MTTNx, j+MTTNx) := 1; % Find MTTA : the A matrix matrix MTTA(MTTN,MTTN); % First row partition: x IF MTTNx>0 THEN BEGIN FOR j := 1:MTTNx DO BEGIN xj := MTTX(j,1); FOR i := 1:MTTNx DO MTTA(i,j) := df(MTTdX(i,1), xj, 1); END; IF MTTNz>0 THEN FOR j := 1:MTTNz DO BEGIN dzj := MTTdz(j,1); FOR i := 1:MTTNx DO MTTA(i, j + MTTNx + MTTNz) := df(MTTdX(i,1), dzj, 1); END; IF MTTNyz>0 THEN FOR j := 1:MTTNyz DO BEGIN uij := MTTUi(j,1); FOR i := 1:MTTNx DO MTTA(i, j + MTTNx + 2*MTTNz) := df(MTTdX(i,1), uij, 1); END; END; % Second row partition: z IF MTTNz>0 THEN FOR j := 1:MTTNz DO MTTA(j + MTTNx, j + MTTNx + MTTNz) := 1; % Third row partition IF MTTNz>0 THEN BEGIN IF MTTNx>0 THEN FOR j := 1:MTTNx DO BEGIN xj := MTTX(j,1); FOR i := 1:MTTNz DO MTTA(i + MTTNx + MTTNz,j) := df(MTTZ(i,1), xj, 1); END; FOR j := 1:MTTNz DO MTTA(j + MTTNx + MTTNz, j + MTTNx) := -1; FOR j := 1:MTTNz DO BEGIN dzj := MTTdz(j,1); FOR i := 1:MTTNz DO MTTA(i + MTTNx + MTTNz, j + MTTNx + MTTNz) := df(MTTZ(i,1), dzj, 1); END; IF MTTNyz>0 THEN FOR j := 1:MTTNyz DO BEGIN uij := MTTUi(j,1); FOR i := 1:MTTNz DO MTTA(i+MTTNx+MTTNz, j+MTTNx+2*MTTNz) := df(MTTZ(i,1), uij, 1); END; END; % Fourth row partition IF MTTNyz>0 THEN BEGIN IF MTTNx>0 THEN FOR j := 1:MTTNx DO BEGIN xj := MTTX(j,1); FOR i := 1:MTTNyz DO MTTA(i + MTTNx + 2*MTTNz,j) := df(MTTYz(i,1), xj, 1); END; IF MTTNz>0 THEN FOR j := 1:MTTNz DO BEGIN dzj := MTTdz(j,1); FOR i := 1:MTTNyz DO MTTA(i + MTTNx + 2*MTTNz, j + MTTNx + MTTNz) := df(MTTYz(i,1), dzj, 1); END; IF MTTNyz>0 THEN FOR j := 1:MTTNyz DO BEGIN uij := MTTUi(j,1); FOR i := 1:MTTNyz DO MTTA(i+MTTNx+2*MTTNz, j+MTTNx+2*MTTNz) := df(MTTYz(i,1), uij, 1); END; END; % Find MTTB : the B matrix matrix MTTB(MTTN,MTTNu); IF MTTNu>0 THEN BEGIN % First row partition IF MTTNx>0 THEN BEGIN FOR j := 1:MTTNu DO BEGIN uj := MTTU(j,1); FOR i := 1:MTTNx DO MTTB(i,j) := df(MTTdX(i,1), uj, 1); END; END; % Third row partition IF MTTNz>0 THEN BEGIN FOR j := 1:MTTNu DO BEGIN uj := MTTU(j,1); FOR i := 1:MTTNz DO MTTB(i + MTTNx + MTTNz ,j) := df(MTTZ(i,1), uj, 1); END; END; % Fourth row partition IF MTTNyz>0 THEN BEGIN FOR j := 1:MTTNu DO BEGIN uj := MTTU(j,1); FOR i := 1:MTTNyz DO MTTB(i + MTTNx + 2*MTTNz,j) := df(MTTYz(i,1), uj, 1); END; END; END; % Find MTTC : the C matrix matrix MTTC(MTTNy,MTTN); IF MTTNy>0 THEN BEGIN % First column partition IF MTTNx>0 THEN BEGIN FOR i := 1:MTTNy DO FOR j := 1:MTTNx DO BEGIN xj := MTTX(j,1); MTTC(i,j) := df(MTTY(i,1), xj, 1); END; END; % Third column partition IF MTTNz>0 THEN BEGIN FOR i := 1:MTTNy DO FOR j := 1:MTTNz DO BEGIN dzj := MTTdZ(j,1); MTTC(i, j + MTTNx + MTTNz) := df(MTTY(i,1), dzj, 1); END; END; % Fourth column partition IF MTTNyz>0 THEN BEGIN FOR i := 1:MTTNy DO FOR j := 1:MTTNyz DO BEGIN uij := MTTUi(j,1); MTTC(i, j + MTTNx + 2*MTTNz) := df(MTTY(i,1), uij, 1); END; END; END; END; %of MTTN>0 % Find MTTD : the D matrix matrix MTTD(MTTNy,MTTNu); IF MTTNy>0 THEN IF MTTNu>0 THEN BEGIN FOR i := 1:MTTNy DO FOR j := 1:MTTNu DO BEGIN uj := MTTU(j,1); MTTD(i,j) := df(MTTY(i,1), uj, 1); END; END; %Substitute the ss values in "$1_ss.r"; %Create the output file OUT "$1_dm.r"; %Write out the matrices. IF MTTN>0 THEN BEGIN write "matrix MTTE(", MTTN, ",", MTTN, ");"; FOR i := 1:MTTN DO FOR j := 1:MTTN DO IF MTTE(i,j) NEQ 0 THEN write "MTTE(", i, ",", j, ") := ", MTTE(i,j); write "matrix MTTA(", MTTN, ",", MTTN, ");"; FOR i := 1:MTTN DO FOR j := 1:MTTN DO IF MTTA(i,j) NEQ 0 THEN write "MTTA(", i, ",", j, ") := ", MTTA(i,j); END; IF MTTN>0 THEN IF MTTNu>0 THEN BEGIN write "matrix MTTB(", MTTN, ",", MTTNu, ");"; FOR i := 1:MTTN DO FOR j := 1:MTTNu DO IF MTTB(i,j) NEQ 0 THEN write "MTTB(", i, ",", j, ") := ", MTTB(i,j); END; %Write it out IF MTTNy>0 THEN IF MTTN>0 THEN BEGIN write "matrix MTTC(", MTTNy, ",", MTTN, ");"; FOR i := 1:MTTNy DO FOR j := 1:MTTN DO IF MTTC(i,j) NEQ 0 THEN write "MTTC(", i, ",", j, ") := ", MTTC(i,j); END; IF MTTNy>0 THEN IF MTTNu>0 THEN BEGIN write "matrix MTTD(", MTTNy, ",", MTTNu, ");"; FOR i := 1:MTTNy DO FOR j := 1:MTTNu DO IF MTTD(i,j) NEQ 0 THEN write "MTTD(", i, ",", j, ") := ", MTTD(i,j); END; SHUT "$1_dm.r"; quit; EOF |
Added mttroot/mtt/bin/trans/latex_tidy version [fb686f201b].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: latex_tidy # Tidies up LaTex format files # P.J.Gawthrop 12 June 1990, Dec 1994 # Copyright (c) P.J.Gawthrop, 1990, 1994 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### cat $1 | \ tr "[A-Z]" "[a-z]" | \ sed -e "s/\// \\\over /g" \ -e "s/mttex/\\\chi/g" \ -e "s/mttdx/\\\dot x/g" \ -e "s/mttdz/\\\dot z/g" \ -e "s/mttdu/\\\dot u_/g" \ -e "s/dot_/ \\\dot /g" \ -e "s/mtta/A/g" \ -e "s/mttb/B/g" \ -e "s/mttc/C/g" \ -e "s/mttd/D/g" \ -e "s/mtte/E/g" \ -e "s/mttg/G/g" \ -e "s/mtti/I/g" \ -e "s/mttm/M/g" \ -e "s/mtto/O/g" \ -e "s/mttv/V/g" \ -e "s/mttx0/X_0/g" \ -e "s/mttx1/x_1/g" \ -e "s/mttx2/x_2/g" \ -e "s/mttx3/x_3/g" \ -e "s/mttx4/x_4/g" \ -e "s/mttx5/x_5/g" \ -e "s/mttx6/x_6/g" \ -e "s/mttui0/v_0/g" \ -e "s/mttui1/v_1/g" \ -e "s/mttui2/v_2/g" \ -e "s/mttui3/v_3/g" \ -e "s/mttui4/v_4/g" \ -e "s/mttui5/v_5/g" \ -e "s/mttui6/v_6/g" \ -e "s/mttui7/v_7/g" \ -e "s/mttui8/v_8/g" \ -e "s/mttui9/v_9/g" \ -e "s/mttu/u_/g" \ -e "s/mtty0/y_0/g" \ -e "s/mttu0/u_0/g" \ -e "s/mttx/x/g" \ -e "s/mttz/z/g" \ -e "s/mttu/u/g" \ -e "s/mttyy/Y/g" \ -e "s/mtty/y/g" \ -e "s/mttw/w/g" \ -e "s/mtttf/G/g" \ -e "s/mttpar//g" \ -e "s/\*\*/\^/g" \ -e "s/\*/ /g" \ -e "s/!/\\\/g" \ -e "s/\\$//g" \ -e "s/(/{(/g" \ -e "s/)/)}/g" \ -e "s/\left/\left (/g" \ -e "s/\right/\right )/g" \ -e "s/sqrt/\\\sqrt/g" \ -e "s/theta/\\\theta/g" \ -e "s/tau/\\\tau/g" \ -e "s/alpha/\\\alpha/g" \ -e "s/beta/\\\beta/g" \ -e "s/epsilon/\\\epsilon/g" \ -e "s/lambda/\\\lambda/g" \ -e "s/mu/\\\mu/g" \ -e "s/phi/\\\phi/g" \ -e "s/rho/\\\rho/g" \ -e "s/sigma/\\\sigma/g" \ -e "s/omega/\\\omega/g" \ -e "s/zeta/\\\zeta/g" \ -e "s/sin/\\\sin/g" \ -e "s/cos/\\\cos/g" \ -e "s/23/{23}/g" \ -e "s/+-/ -/g" |\ cat -s | \ sed -e "s/ $//g" | \ tr -s '\012' '\012' \ >junk mv junk $1 |
Added mttroot/mtt/bin/trans/m/makedef.m version [603399d6bf].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | function makedef(structure,deffile); if nargin<2 deffile = 'stdout'; end; states = structure(1); nonstates=structure(2); inputs=structure(3); outputs=structure(4); zero_outputs = structure(5); pc = '%'; % Declare reduce constants; fprintf(deffile, 'MTTNx := %1.0f;\n', states); fprintf(deffile, 'MTTNz := %1.0f;\n', nonstates); fprintf(deffile, 'MTTNu := %1.0f;\n', inputs); fprintf(deffile, 'MTTNy := %1.0f;\n', outputs); fprintf(deffile, 'MTTNyz := %1.0f;\n', zero_outputs); % Declare reduce matrices fprintf(deffile, '%s Declare reduce matrices\n', pc); if states>0 fprintf(deffile, 'matrix MTTx(%1.0f,1);\n', states); fprintf(deffile, 'matrix MTTdx(%1.0f,1);\n', states); end; if nonstates>0 fprintf(deffile, 'matrix MTTz(%1.0f,1);\n', nonstates); fprintf(deffile, 'matrix MTTdz(%1.0f,1);\n', nonstates); end; if inputs>0 fprintf(deffile, 'matrix MTTu(%1.0f,1);\n', inputs); end; if outputs>0 fprintf(deffile, 'matrix MTTy(%1.0f,1);\n', outputs); end; if zero_outputs>0 fprintf(deffile, 'matrix MTTyz(%1.0f,1);\n', zero_outputs); fprintf(deffile, 'matrix MTTui(%1.0f,1);\n', zero_outputs); end; % Make an Nx x Nx unit matrix if states>0 fprintf(deffile, 'matrix MTTI(%1.0f,%1.0f);\n', states,states); for i = 1:states fprintf(deffile, 'MTTI(%1.0f,%1.0f) := 1;\n', i, i); end end; % Set the y, yz, u, x and dx matrices fprintf(deffile, '%s Set the y, yz, u and x matrices\n', pc); for i=1:outputs fprintf(deffile, 'MTTy(%1.0f,1) := MTTy%1.0f;\n', i, i); end; for i=1:zero_outputs fprintf(deffile, 'MTTyz(%1.0f,1) := MTTyz%1.0f;\n', i, i); fprintf(deffile, 'MTTui(%1.0f,1) := MTTui%1.0f;\n', i, i); end; for i=1:inputs fprintf(deffile, 'MTTu(%1.0f,1) := MTTu%1.0f;\n', i, i); end; for i=1:states fprintf(deffile, 'MTTx(%1.0f,1) := MTTx%1.0f;\n', i, i); end; for i=1:nonstates fprintf(deffile, 'MTTdz(%1.0f,1) := MTTdz%1.0f;\n', i, i); end; |
Added mttroot/mtt/bin/trans/m/mtt_info.m version [9cedad28a0].
> > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | function mtt_info(info, infofile); % mtt_info(info, infofile); % function [bonds, status] = abg2cbg(bonds,components,system_name,filename) % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %%%%% Model Transformation Tools %%%%% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% if nargin<2 infofile = 'mtt_info.txt'; end; fprintf(infofile, 'INFORMATION: %s\n', info); % fflush(infofile); |
Added mttroot/mtt/bin/trans/tex2doc version [00835c3ce9].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: tex2doc # Encapsulates a tex file in a document. # P.J.Gawthrop August 1996 # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### # Inform user echo "Creating $1_$2.doc" # This is the main transformation using gawk gawk -f $MTTPATH/tex2doc.awk $1_$2.txt > $1_$2.doc |