Overview
Comment: | sensitivity versions of lsin & cos |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ab94ad3c53a062fa3b04be0bb7789dc0 |
User & Date: | gawthrop@users.sourceforge.net on 2002-04-17 19:11:44 |
Other Links: | branch diff | manifest | tags |
Context
2002-04-18
| ||
16:45:20 | Added grid lines to plots. check-in: 925efc1041 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2002-04-17
| ||
19:11:44 | sensitivity versions of lsin & cos check-in: ab94ad3c53 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
18:50:35 | Sensitivity EMTF components check-in: 76d285945a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/lib/cr/r/slcos.cr version [e42d3ee3a4].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | %SUMMARY slcos linear constitutive relationship with sin modulation - sensitivity %DESCRIPTION Parameter 1 defines input causality relating to parameter 2 %DESCRIPTION value is effort, flow or state %DESCRIPTION Parameter 2 is the gain corresponding to the causality of %DESCRIPTION parameter 1. %DESCRIPTION Supported components: OPERATOR slcos; %DESCRIPTION four port component - effort i/o FOR ALL gain, input, junk, m_input, dm_input LET slcos(gain, effort, 2, input, effort, 1, junk, flow, 2, m_input, effort, 3, dm_input,effort, 4) = -gain*sin(m_input)*dm_input*input; %DESCRIPTION four port component - flow i/o FOR ALL gain, input, junk, m_input, dm_input LET slcos(gain, flow, 2, input, flow, 1, junk, effort, 2, m_input, effort, 3, dm_input,effort, 4) = -gain*sin(m_input)*dm_input*input; END;; |
Added mttroot/mtt/lib/cr/r/slsin.cr version [68fd274f15].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | %SUMMARY slsin linear constitutive relationship with sin modulation - sensitivity %DESCRIPTION Parameter 1 defines input causality relating to parameter 2 %DESCRIPTION value is effort, flow or state %DESCRIPTION Parameter 2 is the gain corresponding to the causality of %DESCRIPTION parameter 1. %DESCRIPTION Supported components: OPERATOR slsin; %DESCRIPTION four port component - effort i/o FOR ALL gain, input, junk, m_input, dm_input LET slsin(gain, effort, 2, input, effort, 1, junk, flow, 2, m_input, effort, 3, dm_input,effort, 4) = gain*cos(m_input)*dm_input*input; %DESCRIPTION four port component - flow i/o FOR ALL gain, input, junk, m_input, dm_input LET slsin(gain, flow, 2, input, flow, 1, junk, effort, 2, m_input, effort, 3, dm_input,effort, 4) = gain*cos(m_input)*dm_input*input; END;; |