Last change
on this file since 911 was
683,
checked in by gerson bicca, 15 years ago
|
updated PID controller
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
1.2 KB
|
Rev | Line | |
---|
[74] | 1 | #*------------------------------------------------------------------- |
---|
| 2 | * EMSO Model Library (EML) Copyright (C) 2004 - 2007 ALSOC. |
---|
| 3 | * |
---|
| 4 | * This LIBRARY is free software; you can distribute it and/or modify |
---|
| 5 | * it under the therms of the ALSOC FREE LICENSE as available at |
---|
| 6 | * http://www.enq.ufrgs.br/alsoc. |
---|
| 7 | * |
---|
| 8 | * EMSO Copyright (C) 2004 - 2007 ALSOC, original code |
---|
| 9 | * from http://www.rps.eng.br Copyright (C) 2002-2004. |
---|
| 10 | * All rights reserved. |
---|
| 11 | * |
---|
| 12 | * EMSO is distributed under the therms of the ALSOC LICENSE as |
---|
| 13 | * available at http://www.enq.ufrgs.br/alsoc. |
---|
[1] | 14 | *----------------------------------------------------------------------- |
---|
| 15 | * Author: Tiago Osório |
---|
| 16 | * $Id: lag_1.mso 683 2008-11-19 21:21:38Z bicca $ |
---|
| 17 | *---------------------------------------------------------------------*# |
---|
| 18 | |
---|
| 19 | using "types"; |
---|
| 20 | |
---|
| 21 | |
---|
| 22 | Model Lag_1 |
---|
| 23 | |
---|
[291] | 24 | ATTRIBUTES |
---|
[683] | 25 | Pallete = false; |
---|
[306] | 26 | Icon = "icon/Lag_1"; |
---|
[291] | 27 | Brief = "Model Lag."; |
---|
| 28 | Info = |
---|
[354] | 29 | "== Inputs == |
---|
| 30 | * One input signal. |
---|
[291] | 31 | |
---|
[354] | 32 | == Outputs == |
---|
| 33 | * One output signal. |
---|
| 34 | "; |
---|
[291] | 35 | |
---|
[1] | 36 | PARAMETERS |
---|
| 37 | gain as positive (Brief="model gain"); |
---|
[176] | 38 | tau as positive (Brief="model time constant", Unit='s'); |
---|
[1] | 39 | |
---|
| 40 | VARIABLES |
---|
| 41 | input as Real (Brief="input signal"); |
---|
| 42 | output as Real (Brief="output signal"); |
---|
| 43 | |
---|
| 44 | EQUATIONS |
---|
| 45 | |
---|
| 46 | "Calculate output" |
---|
| 47 | gain*input= tau*diff(output) + output; |
---|
| 48 | |
---|
| 49 | INITIAL |
---|
[176] | 50 | diff(output)=0/'s'; |
---|
[1] | 51 | |
---|
| 52 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.