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: |
6b86b5a8da89164fa1361e38a71dbf6e |
User & Date: | gawthrop@users.sourceforge.net on 1997-09-16 14:56:07 |
Other Links: | branch diff | manifest | tags |
Context
1997-09-16
| ||
15:14:14 | Added warning if a component has no bonds. check-in: 0ad47fec52 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:56:07 | Initial revision check-in: 6b86b5a8da user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-09-12
| ||
09:42:12 | Fixed causality bug. check-in: 2e3c2adce6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/lib/comp/simple/C2_cause.m version [1f39f9455a].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | function [bonds,status] = C2_cause(bonds); % C2_cause - Unicausal multiport C2 C2omponent % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %%%%% Model Transformation Tools %%%%% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Matlab function C2_cause % [bonds,status] = C2_cause(bonds) %SUMMARY C2: elementary C component with two ports %DESCRIPTION Two port dynamic component %DESCRIPTION Preferred integral causality (flow input) %DESCRIPTION Cannot be bicausal % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Copyright (c) P.J. Gawthrop, 1996. % Unicausal multiport C component % Same causal pattern as R component [bonds,status] = R_cause(bonds); |