Changeset 281


Ignore:
Timestamp:
Jun 16, 2007, 6:06:21 PM (16 years ago)
Author:
Paula Bettio Staudt
Message:

Updated ATTIBUTES section in electrical folder and added .png icons

Location:
trunk/eml/electrical
Files:
4 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/eml/electrical/electrical.mso

    r73 r281  
    1313* available at http://www.enq.ufrgs.br/alsoc.
    1414*
    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 one
    22 *                               input and one output wire.
    23 *
    24 *       - electrical: model for an electrical device in which the
    25 *                               inlet current is equal to the outlet one.
    26 *
    27 *       - Resistor: electrical resistor
    28 *
    29 *       - Capacitor:electrical capacitor
    30 *
    31 *       - Indutor: electrical indutor
    32 *
    33 *       - Supply: electrical supply
    34 *
    3515*----------------------------------------------------------------------
    3616* Author: Rafael de Pelegrini Soares
     
    4121
    4222Model wire
     23        ATTRIBUTES
     24        Pallete         = false;
     25        Brief           = "Wire.";
     26        Info            =
     27        "This model holds a current and voltage.";     
     28       
    4329        VARIABLES
    4430        i as current(Lower=-100);
     
    4733
    4834Model electrical_basic
     35        ATTRIBUTES
     36        Pallete         = false;
     37        Brief           = "Basic model for electrical devices with one input and one output wire.";
     38       
    4939        VARIABLES
    5040in      inlet  as wire;
     
    5343
    5444Model 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       
    5553        EQUATIONS
    5654        outlet.i = inlet.i;
     
    5856
    5957Model Resistor as electrical
     58        ATTRIBUTES
     59        Pallete         = true;
     60        Icon            = "Resistor";
     61        Brief           = "Electrical Resistor.";
     62       
    6063        PARAMETERS
    6164        R as resistance;
     
    6568
    6669Model Capacitor as electrical
     70        ATTRIBUTES
     71        Pallete         = true;
     72        Icon            = "Capacitor";
     73        Brief           = "Electrical Capacitor.";
     74       
    6775        PARAMETERS
    6876        C as capacitance;
     
    7583
    7684Model Indutor as electrical
     85        ATTRIBUTES
     86        Pallete         = true;
     87        Icon            = "Indutor";
     88        Brief           = "Electrical Indutor.";
     89       
    7790        PARAMETERS
    7891        L as indutance;
     
    8295
    8396Model Supply as electrical_basic
     97        ATTRIBUTES
     98        Pallete         = true;
     99        Icon            = "Supply";
     100        Brief           = "Electrical Supply.";
     101       
    84102        PARAMETERS
    85103        V  as voltage;
Note: See TracChangeset for help on using the changeset viewer.