package Electric // This package providestypes, connectors and partial models for the electric domain. extends SIunit; // Commonly used short names for electric types type Current = ElectricCurrent; type Charge = ElectricCharge; type Voltage = ElectricPotential; // Connector types for electric components connector Pin "Pin of an electric component" Voltage v "Potential at the pin"; flow Current i "Current flowing into the pin"; end Pin; end Electric;