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: |
04af806d55ad5f4c00b74d70555cde8c |
User & Date: | gawthrop@users.sourceforge.net on 1996-11-01 12:05:54 |
Other Links: | branch diff | manifest | tags |
Context
1996-11-01
| ||
12:18:38 | Initial revision check-in: ad65ad54f7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:05:54 | Initial revision check-in: 04af806d55 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:53:48 | Documentation check-in: bd6357182c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/lib/comp/simple/GY_cause.m version [4d98de47cc].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | function [bonds,status] = GY_cause(bonds); % GY_cause - causality for GY component % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %%%%% Model Transformation Tools %%%%% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Matlab function GY_cause % [bonds,status] = GY_cause(bonds); %SUMMARY GY: elementary gyrator component %DESCRIPTION Energy conserving two-port %DESCRIPTION e_1 = f(f_2); f_1 = f(e_2) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Copyright (c) P.J. Gawthrop, 1996. %Causality of GY is same as that of a TF but with flipped effort/flow bonds(2,:) = - bonds(2,:); [bonds,status] = TF_cause(bonds); bonds(2,:) = - bonds(2,:); |
Added mttroot/mtt/lib/comp/simple/TF_cause.m version [d8aa175336].
> > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | function [bonds,status] = TF_cause(bonds); % TF_cause - causality for a TF component % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %%%%% Model Transformation Tools %%%%% % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Matlab function TF_cause % [bonds,status] = TF_cause(bonds) %SUMMARY TF: elementary transformer component %DESCRIPTION Energy conserving two-port %DESCRIPTION e_1 = f(e_2); f_1 = f(f_2) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Copyright (c) P.J. Gawthrop, 1996. %Causality of TF is same as that of a junction [bonds,status] = zero_cause(bonds); |