Inverter.java 2.38 KB
Newer Older
1
2
3
4
/**
 */
package org.example.democatalog;

5
6
import de.hftstuttgart.cityunits.model.NullableQuantity;

7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Inverter</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * </p>
 * <ul>
 *   <li>{@link org.example.democatalog.Inverter#getMaxDCVoltage <em>Max DC Voltage</em>}</li>
 *   <li>{@link org.example.democatalog.Inverter#getMacDCCurrent <em>Mac DC Current</em>}</li>
 * </ul>
 *
 * @see org.example.democatalog.DemocatalogPackage#getInverter()
 * @model
 * @generated
 */
public interface Inverter extends ElectricalDevice {
	/**
	 * Returns the value of the '<em><b>Max DC Voltage</b></em>' attribute.
27
	 * The default value is <code>"0.0 V"</code>.
28
29
30
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Max DC Voltage</em>' attribute.
31
	 * @see #setMaxDCVoltage(NullableQuantity)
32
	 * @see org.example.democatalog.DemocatalogPackage#getInverter_MaxDCVoltage()
33
	 * @model default="0.0 V" dataType="de.hftstuttgart.cityunits.model.quantities.QuantityDouble" required="true"
34
35
	 * @generated
	 */
36
	NullableQuantity getMaxDCVoltage();
37
38
39
40
41
42
43
44
45

	/**
	 * Sets the value of the '{@link org.example.democatalog.Inverter#getMaxDCVoltage <em>Max DC Voltage</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Max DC Voltage</em>' attribute.
	 * @see #getMaxDCVoltage()
	 * @generated
	 */
46
	void setMaxDCVoltage(NullableQuantity value);
47
48
49

	/**
	 * Returns the value of the '<em><b>Mac DC Current</b></em>' attribute.
50
	 * The default value is <code>"100.0 mV"</code>.
51
52
53
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @return the value of the '<em>Mac DC Current</em>' attribute.
54
	 * @see #setMacDCCurrent(NullableQuantity)
55
	 * @see org.example.democatalog.DemocatalogPackage#getInverter_MacDCCurrent()
56
	 * @model default="100.0 mV" dataType="de.hftstuttgart.cityunits.model.quantities.QuantityDouble" required="true"
57
58
	 * @generated
	 */
59
	NullableQuantity getMacDCCurrent();
60
61
62
63
64
65
66
67
68

	/**
	 * Sets the value of the '{@link org.example.democatalog.Inverter#getMacDCCurrent <em>Mac DC Current</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @param value the new value of the '<em>Mac DC Current</em>' attribute.
	 * @see #getMacDCCurrent()
	 * @generated
	 */
69
	void setMacDCCurrent(NullableQuantity value);
70
71

} // Inverter