- Timestamp:
- Jun 16, 2007, 6:06:21 PM (16 years ago)
- Location:
- trunk/eml/electrical
- Files:
-
- 4 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/eml/electrical/electrical.mso
r73 r281 13 13 * available at http://www.enq.ufrgs.br/alsoc. 14 14 * 15 *---------------------------------------------------------------------16 *17 * Model of eletrical devices:18 *19 * - wire: this model holds a current and voltage.20 *21 * - electrical_basic: basic model for electrical devices with one22 * input and one output wire.23 *24 * - electrical: model for an electrical device in which the25 * inlet current is equal to the outlet one.26 *27 * - Resistor: electrical resistor28 *29 * - Capacitor:electrical capacitor30 *31 * - Indutor: electrical indutor32 *33 * - Supply: electrical supply34 *35 15 *---------------------------------------------------------------------- 36 16 * Author: Rafael de Pelegrini Soares … … 41 21 42 22 Model wire 23 ATTRIBUTES 24 Pallete = false; 25 Brief = "Wire."; 26 Info = 27 "This model holds a current and voltage."; 28 43 29 VARIABLES 44 30 i as current(Lower=-100); … … 47 33 48 34 Model electrical_basic 35 ATTRIBUTES 36 Pallete = false; 37 Brief = "Basic model for electrical devices with one input and one output wire."; 38 49 39 VARIABLES 50 40 in inlet as wire; … … 53 43 54 44 Model electrical as electrical_basic 45 ATTRIBUTES 46 Pallete = false; 47 Brief = "Basic electrical device"; 48 Info = 49 "Model for an electrical device in which the inlet current 50 is equal to the outlet one 51 "; 52 55 53 EQUATIONS 56 54 outlet.i = inlet.i; … … 58 56 59 57 Model Resistor as electrical 58 ATTRIBUTES 59 Pallete = true; 60 Icon = "Resistor"; 61 Brief = "Electrical Resistor."; 62 60 63 PARAMETERS 61 64 R as resistance; … … 65 68 66 69 Model Capacitor as electrical 70 ATTRIBUTES 71 Pallete = true; 72 Icon = "Capacitor"; 73 Brief = "Electrical Capacitor."; 74 67 75 PARAMETERS 68 76 C as capacitance; … … 75 83 76 84 Model Indutor as electrical 85 ATTRIBUTES 86 Pallete = true; 87 Icon = "Indutor"; 88 Brief = "Electrical Indutor."; 89 77 90 PARAMETERS 78 91 L as indutance; … … 82 95 83 96 Model Supply as electrical_basic 97 ATTRIBUTES 98 Pallete = true; 99 Icon = "Supply"; 100 Brief = "Electrical Supply."; 101 84 102 PARAMETERS 85 103 V as voltage;
Note: See TracChangeset
for help on using the changeset viewer.