Overview
Comment: | New local (_cr.r) and generic (.cr) CR structure. CR and lbl now have view mode. CRS in abg_tex. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a3c047c7e46f21d3b314adccb7779ab5 |
User & Date: | gawthrop@users.sourceforge.net on 1998-03-04 16:34:19 |
Other Links: | branch diff | manifest | tags |
Context
1998-03-04
| ||
17:51:37 | Added END check-in: 074d29f739 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
16:34:19 |
New local (_cr.r) and generic (.cr) CR structure. CR and lbl now have view mode. CRS in abg_tex. check-in: a3c047c7e4 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
15:38:16 | Initial revision check-in: 6460276395 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [546b5494f7] to [9b0847747b].
︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | + + + | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.135 1998/02/25 22:09:48 peterg ## Added simpar representation. ## ## Revision 1.134 1998/02/25 15:28:34 peterg ## Added state.m rep. ## ## Revision 1.133 1998/02/24 22:35:33 peterg ## Added -p (preserve) switch to cp in tidy mode. ## ## Revision 1.132 1998/02/24 22:33:23 peterg |
︙ | |||
644 645 646 647 648 649 650 | 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 | - + | exit fi # The big clean up if [ "$1" = "Clean" ] && [ "$2" = "" ]; then echo 'Removing all generated files for all systems' rm -f *.log mtt_info.txt warning.txt |
︙ | |||
669 670 671 672 673 674 675 | 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 | - + | exit fi # Clean up named system if [ "$2" = "Clean" ] && [ "$3" = "" ]; then echo 'Removing all generated files for system ' $1 rm -f *.log mtt_info.txt warning.txt |
︙ | |||
790 791 792 793 794 795 796 | 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 | - - + + - + | fi fi exit fi # Copy CRs from the library if [ "$1" = "crcopy" ]; then |
︙ | |||
966 967 968 969 970 971 972 973 974 975 976 977 978 979 | 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 | + + + + + | $1_args.m: touch $1_args.m #Create empty files (with titles) if not already there #SUMMARY lbl label file (txt) $1_lbl.txt: abg2lbl_fig2txt $1 #SUMMARY lbl label file (tex) #SUMMARY lbl label file (view) $1_lbl.tex: $1_lbl.txt txt2tex $1 lbl txt #SUMMARY cr constitutive relationship for each subsystem (txt) $1_cr.txt: $1_sub.sh lbl2cr_txt2txt $1 if [ "$level" = "0" ]; then \ mv $1_cr.txt MTT_cr.txt; \ |
︙ | |||
988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 | 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 | + + + + + | if [ "$level" = "0" ]; then \ sort -u MTT_cr.txt> $1_cr.txt; \ fi #SUMMARY cr constitutive relationship for each subsystem (r) $1_cr.r: $1_cr.txt cr_txt2r $1 #SUMMARY cr constitutive relationship for each subsystem (tex) #SUMMARY cr constitutive relationship for each subsystem (view) $1_cr.tex: $1_cr.r txt2tex $1 cr r #SUMMARY sympar symbolic parameters (txt) # Lbl to sympar conversion ifeq ($switches,0) $1_sympar.txt: $1_sub.sh lbl2sympar_txt2txt $1 |
︙ | |||
1660 1661 1662 1663 1664 1665 1666 | 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 | - + - - | echo Copying mtt.sty to here cp $MTTPATH/trans/mtt.sty . $1_$2.doc: $1_$2.tex makedoc "$mtt_switches" "$1" "$2" "$3" "$4" "$documenttype" #Generic conversion of LaTeX doc to dvi $1_$2.dvi: $1_$2.doc |
︙ | |||
1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 | 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 | + | $1_rep.tex: $1_rep.txt make_reps rep_txt2tex $1 "$documenttype" "$directory"; #SUMMARY abg Acausal bond graph report (tex) $1_abg.tex: $1_sub.sh abg2tex $1 # Version control system - uses RCS RCS: echo Creating RCS mkdir RCS $1_$2.vc: RCS echo Version control on $1_$2.$VCext |
︙ |