Overview
Comment: | Updated (-i dassl) residual function to use new DAEFunc (octave-2.1.35). YZ residual dependency on Ui still requires some work. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
3701cef910118e97550891f4912ea24d |
User & Date: | geraint@users.sourceforge.net on 2001-11-15 06:24:11 |
Other Links: | branch diff | manifest | tags |
Context
2002-01-11
| ||
03:44:19 | Breaks compounds objects into individual components. Eliminates "incorrect object code error" in cbg.ps when component is not causally complete. check-in: 2c7a793ee5 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2001-11-15
| ||
06:24:11 |
Updated (-i dassl) residual function to use new DAEFunc (octave-2.1.35). YZ residual dependency on Ui still requires some work. check-in: 3701cef910 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
02:56:18 |
Added DASSL as an option for solution of algebraic equations (-ae dassl). Requires octave-2.1.35. check-in: c4c37283ad user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/make_ode2odes from [f3196ec53c] to [10ac19653f].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | + + + | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.64 2001/08/08 02:15:00 geraint ## Rationalisation of solver code, beginning with algebraic solvers. ## ## Revision 1.63 2001/08/07 04:39:24 geraint ## Consolidated dassl and residual functions. ## ## Revision 1.62 2001/08/01 22:14:32 geraint ## Bug fix for dassl. ## ## Revision 1.61 2001/08/01 04:06:07 geraint |
︙ | |||
766 767 768 769 770 771 772 | 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 | - + + + + | #endif } #ifdef STANDALONE ColumnVector Fmtt_residual (const ColumnVector &X, const ColumnVector &DX, |
︙ | |||
826 827 828 829 830 831 832 | 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 | + - + + + + + + + + + + + + + + + + + + | yz = feval ("${sys}_ae", new_args, 1)(0).${vector_value} (); #endif for (register int i = 0; i < MTTNX; i++) residual (i) = dx(i) - DX(i); if (MTTNYZ > 0) { |
︙ |
Modified mttroot/mtt/lib/cc/mtt_dassl.cc from [d41dae86e1] to [b9b24f4791].
︙ | |||
10 11 12 13 14 15 16 | 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 | - + - + - + + | #include <octave/toplev.h> #define VECTOR_VALUE vector_value #endif // OCTAVE_DEV #ifdef STANDALONE extern ColumnVector |
︙ |