zepben.ewb 1.0.0b4__py3-none-any.whl → 1.0.0b6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- zepben/ewb/__init__.py +1 -1
- zepben/ewb/database/sql/__init__.py +4 -0
- zepben/ewb/database/{sqlite/tables → sql}/column.py +1 -1
- zepben/ewb/database/sql/sql_table.py +142 -0
- zepben/ewb/database/sqlite/tables/associations/table_asset_organisation_roles_assets.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_assets_power_system_resources.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_battery_units_battery_controls.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_circuits_substations.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_circuits_terminals.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_customer_agreements_pricing_structures.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_end_devices_end_device_functions.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_equipment_equipment_containers.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_equipment_operational_restrictions.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_equipment_usage_points.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_loops_substations.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_pricing_structures_tariffs.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_protection_relay_functions_protected_switches.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_protection_relay_functions_sensors.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_protection_relay_schemes_protection_relay_functions.py +1 -1
- zepben/ewb/database/sqlite/tables/associations/table_usage_points_end_devices.py +1 -1
- zepben/ewb/database/sqlite/tables/extensions/iec61968/assetinfo/table_reclose_delays.py +1 -1
- zepben/ewb/database/sqlite/tables/extensions/iec61968/assetinfo/table_relay_info.py +1 -1
- zepben/ewb/database/sqlite/tables/extensions/iec61968/metering/table_pan_demand_response_functions.py +1 -1
- zepben/ewb/database/sqlite/tables/extensions/iec61970/base/feeder/table_lv_feeders.py +1 -1
- zepben/ewb/database/sqlite/tables/extensions/iec61970/base/protection/table_distance_relays.py +1 -1
- zepben/ewb/database/sqlite/tables/extensions/iec61970/base/protection/table_protection_relay_function_thresholds.py +1 -1
- zepben/ewb/database/sqlite/tables/extensions/iec61970/base/protection/table_protection_relay_function_time_limits.py +1 -1
- zepben/ewb/database/sqlite/tables/extensions/iec61970/base/protection/table_protection_relay_functions.py +1 -1
- zepben/ewb/database/sqlite/tables/extensions/iec61970/base/protection/table_protection_relay_schemes.py +1 -1
- zepben/ewb/database/sqlite/tables/extensions/iec61970/base/protection/table_protection_relay_systems.py +1 -1
- zepben/ewb/database/sqlite/tables/extensions/iec61970/base/wires/table_battery_controls.py +1 -1
- zepben/ewb/database/sqlite/tables/extensions/iec61970/base/wires/table_power_transformer_end_ratings.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_no_load_tests.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_open_circuit_tests.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_short_circuit_tests.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_shunt_compensator_info.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_switch_info.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_transformer_end_info.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_transformer_tank_info.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_transformer_test.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/assetinfo/table_wire_info.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/assets/table_assets.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/assets/table_streetlights.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/common/table_documents.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/common/table_location_street_addresses.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/common/table_organisation_roles.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/common/table_position_points.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/common/table_street_addresses.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/common/table_town_details.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/customers/table_customer_agreements.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/customers/table_customers.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/infiec61968/infassetinfo/table_current_transformer_info.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/infiec61968/infassetinfo/table_potential_transformer_info.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/infiec61968/infassets/table_poles.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/metering/table_end_device_functions.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/metering/table_end_devices.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61968/metering/table_usage_points.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/auxiliaryequipment/table_auxiliary_equipment.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/auxiliaryequipment/table_current_transformers.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/auxiliaryequipment/table_potential_transformers.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/core/table_base_voltages.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/core/table_conducting_equipment.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/core/table_curve_data.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/core/table_equipment.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/core/table_feeders.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/core/table_identified_objects.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/core/table_name_types.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/core/table_names.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/core/table_power_system_resources.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/core/table_sub_geographical_regions.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/core/table_substations.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/core/table_terminals.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/diagramlayout/table_diagram_object_points.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/diagramlayout/table_diagram_objects.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/diagramlayout/table_diagrams.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/equivalents/table_equivalent_branches.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/generation/production/table_battery_units.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/generation/production/table_power_electronics_units.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/meas/table_analogs.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/meas/table_controls.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/meas/table_measurements.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/protection/table_current_relays.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/scada/table_remote_controls.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/scada/table_remote_sources.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_ac_line_segments.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_breakers.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_clamps.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_conductors.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_cuts.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_earth_fault_compensators.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_energy_consumer_phases.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_energy_consumers.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_energy_source_phases.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_energy_sources.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_fuses.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_grounding_impedances.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_linear_shunt_compensators.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_per_length_sequence_impedances.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_petersen_coils.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_phase_impedance_data.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_power_electronics_connection_phases.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_power_electronics_connections.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_power_transformer_ends.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_power_transformers.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_protected_switches.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_ratio_tap_changers.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_regulating_cond_eq.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_regulating_controls.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_rotating_machines.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_series_compensators.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_shunt_compensators.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_static_var_compensator.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_switches.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_synchronous_machines.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_tap_changer_controls.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_tap_changers.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_transformer_ends.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_transformer_star_impedances.py +1 -1
- zepben/ewb/database/sqlite/tables/iec61970/infiec61970/feeder/table_circuits.py +1 -1
- zepben/ewb/database/sqlite/tables/sqlite_table.py +21 -118
- zepben/ewb/database/sqlite/tables/table_metadata_data_sources.py +1 -1
- zepben/ewb/database/sqlite/tables/table_version.py +2 -1
- {zepben_ewb-1.0.0b4.dist-info → zepben_ewb-1.0.0b6.dist-info}/METADATA +13 -24
- {zepben_ewb-1.0.0b4.dist-info → zepben_ewb-1.0.0b6.dist-info}/RECORD +127 -125
- {zepben_ewb-1.0.0b4.dist-info → zepben_ewb-1.0.0b6.dist-info}/WHEEL +0 -0
- {zepben_ewb-1.0.0b4.dist-info → zepben_ewb-1.0.0b6.dist-info}/licenses/LICENSE +0 -0
- {zepben_ewb-1.0.0b4.dist-info → zepben_ewb-1.0.0b6.dist-info}/top_level.txt +0 -0
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableCustomers"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61968.common.table_organisation_roles import TableOrganisationRoles
|
|
10
10
|
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableCurrentTransformerInfo"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61968.assets.table_asset_info import TableAssetInfo
|
|
10
10
|
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TablePotentialTransformerInfo"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61968.assets.table_asset_info import TableAssetInfo
|
|
10
10
|
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TablePoles"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61968.assets.table_structures import TableStructures
|
|
10
10
|
|
|
11
11
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableEndDeviceFunctions"]
|
|
|
7
7
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61968.assets.table_asset_functions import TableAssetFunctions
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableEndDevices"]
|
|
|
7
7
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61968.assets.table_asset_containers import TableAssetContainers
|
|
12
12
|
|
|
13
13
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
4
4
|
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
5
5
|
|
|
6
|
-
from zepben.ewb.database.
|
|
6
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
7
7
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_identified_objects import TableIdentifiedObjects
|
|
8
8
|
|
|
9
9
|
|
zepben/ewb/database/sqlite/tables/iec61970/base/auxiliaryequipment/table_auxiliary_equipment.py
CHANGED
|
@@ -7,7 +7,7 @@ __all__ = ["TableAuxiliaryEquipment"]
|
|
|
7
7
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_equipment import TableEquipment
|
|
12
12
|
|
|
13
13
|
|
zepben/ewb/database/sqlite/tables/iec61970/base/auxiliaryequipment/table_current_transformers.py
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableCurrentTransformers"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.auxiliaryequipment.table_sensors import TableSensors
|
|
10
10
|
|
|
11
11
|
|
zepben/ewb/database/sqlite/tables/iec61970/base/auxiliaryequipment/table_potential_transformers.py
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TablePotentialTransformers"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.auxiliaryequipment.table_sensors import TableSensors
|
|
10
10
|
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableBaseVoltages"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_identified_objects import TableIdentifiedObjects
|
|
10
10
|
|
|
11
11
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableConductingEquipment"]
|
|
|
7
7
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_equipment import TableEquipment
|
|
12
12
|
|
|
13
13
|
|
|
@@ -8,7 +8,7 @@ __all__ = ["TableCurveData"]
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
10
|
from zepben.ewb import SqliteTable
|
|
11
|
-
from zepben.ewb.database.
|
|
11
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
class TableCurveData(SqliteTable):
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableEquipment"]
|
|
|
7
7
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_power_system_resources import TablePowerSystemResources
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableFeeders"]
|
|
|
7
7
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_equipment_containers import TableEquipmentContainers
|
|
12
12
|
|
|
13
13
|
|
|
@@ -8,7 +8,7 @@ __all__ = ["TableIdentifiedObjects"]
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
from typing import List, Generator
|
|
10
10
|
|
|
11
|
-
from zepben.ewb.database.
|
|
11
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
12
12
|
from zepben.ewb.database.sqlite.tables.sqlite_table import SqliteTable
|
|
13
13
|
|
|
14
14
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableNameTypes"]
|
|
|
7
7
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.sqlite_table import SqliteTable
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableNames"]
|
|
|
7
7
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.sqlite_table import SqliteTable
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TablePowerSystemResources"]
|
|
|
7
7
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_identified_objects import TableIdentifiedObjects
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableSubGeographicalRegions"]
|
|
|
7
7
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_identified_objects import TableIdentifiedObjects
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableSubstations"]
|
|
|
7
7
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_equipment_containers import TableEquipmentContainers
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableTerminals"]
|
|
|
7
7
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_ac_dc_terminals import TableAcDcTerminals
|
|
12
12
|
|
|
13
13
|
|
zepben/ewb/database/sqlite/tables/iec61970/base/diagramlayout/table_diagram_object_points.py
CHANGED
|
@@ -7,7 +7,7 @@ __all__ = ["TableDiagramObjectPoints"]
|
|
|
7
7
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.sqlite_table import SqliteTable
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableDiagramObjects"]
|
|
|
7
7
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_identified_objects import TableIdentifiedObjects
|
|
12
12
|
|
|
13
13
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableDiagrams"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_identified_objects import TableIdentifiedObjects
|
|
10
10
|
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableEquivalentBranches"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.equivalents.table_equivalent_equipment import TableEquivalentEquipment
|
|
10
10
|
|
|
11
11
|
|
zepben/ewb/database/sqlite/tables/iec61970/base/generation/production/table_battery_units.py
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableBatteryUnits"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.generation.production.table_power_electronics_units import TablePowerElectronicsUnits
|
|
10
10
|
|
|
11
11
|
|
|
@@ -8,7 +8,7 @@ __all__ = ["TablePowerElectronicsUnits"]
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
from typing import List, Generator
|
|
10
10
|
|
|
11
|
-
from zepben.ewb.database.
|
|
11
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
12
12
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_equipment import TableEquipment
|
|
13
13
|
|
|
14
14
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableAnalogs"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.meas.table_measurements import TableMeasurements
|
|
10
10
|
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableControls"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.meas.table_io_points import TableIoPoints
|
|
10
10
|
|
|
11
11
|
|
|
@@ -8,7 +8,7 @@ __all__ = ["TableMeasurements"]
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
from typing import List, Generator
|
|
10
10
|
|
|
11
|
-
from zepben.ewb.database.
|
|
11
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
12
12
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_identified_objects import TableIdentifiedObjects
|
|
13
13
|
|
|
14
14
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableCurrentRelays"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.extensions.iec61970.base.protection.table_protection_relay_functions import TableProtectionRelayFunctions
|
|
10
10
|
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableRemoteControls"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.scada.table_remote_points import TableRemotePoints
|
|
10
10
|
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableRemoteSources"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.scada.table_remote_points import TableRemotePoints
|
|
10
10
|
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableAcLineSegments"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_conductors import TableConductors
|
|
10
10
|
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableBreakers"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_protected_switches import TableProtectedSwitches
|
|
10
10
|
|
|
11
11
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableClamps"]
|
|
|
7
7
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_conducting_equipment import TableConductingEquipment
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableConductors"]
|
|
|
7
7
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_conducting_equipment import TableConductingEquipment
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableCuts"]
|
|
|
7
7
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_switches import TableSwitches
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableEarthFaultCompensators"]
|
|
|
7
7
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_conducting_equipment import TableConductingEquipment
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableEnergyConsumerPhases"]
|
|
|
7
7
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_power_system_resources import TablePowerSystemResources
|
|
12
12
|
|
|
13
13
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableEnergyConsumers"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_energy_connections import TableEnergyConnections
|
|
10
10
|
|
|
11
11
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableEnergySourcePhases"]
|
|
|
7
7
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_power_system_resources import TablePowerSystemResources
|
|
12
12
|
|
|
13
13
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableEnergySources"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_energy_connections import TableEnergyConnections
|
|
10
10
|
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableFuses"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_switches import TableSwitches
|
|
10
10
|
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableGroundingImpedances"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_earth_fault_compensators import TableEarthFaultCompensators
|
|
10
10
|
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableLinearShuntCompensators"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_shunt_compensators import TableShuntCompensators
|
|
10
10
|
|
|
11
11
|
|
zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_per_length_sequence_impedances.py
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TablePerLengthSequenceImpedances"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_per_length_impedances import TablePerLengthImpedances
|
|
10
10
|
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TablePetersenCoils"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_earth_fault_compensators import TableEarthFaultCompensators
|
|
10
10
|
|
|
11
11
|
|
|
@@ -8,7 +8,7 @@ __all__ = ["TablePhaseImpedanceData"]
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
10
|
from zepben.ewb import SqliteTable
|
|
11
|
-
from zepben.ewb.database.
|
|
11
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
class TablePhaseImpedanceData(SqliteTable):
|
zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_power_electronics_connection_phases.py
CHANGED
|
@@ -7,7 +7,7 @@ __all__ = ["TablePowerElectronicsConnectionPhases"]
|
|
|
7
7
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_power_system_resources import TablePowerSystemResources
|
|
12
12
|
|
|
13
13
|
|
zepben/ewb/database/sqlite/tables/iec61970/base/wires/table_power_electronics_connections.py
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TablePowerElectronicsConnections"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_regulating_cond_eq import TableRegulatingCondEq
|
|
10
10
|
|
|
11
11
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TablePowerTransformerEnds"]
|
|
|
7
7
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_transformer_ends import TableTransformerEnds
|
|
12
12
|
|
|
13
13
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TablePowerTransformers"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_conducting_equipment import TableConductingEquipment
|
|
10
10
|
|
|
11
11
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableProtectedSwitches"]
|
|
|
7
7
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_switches import TableSwitches
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableRatioTapChangers"]
|
|
|
7
7
|
|
|
8
8
|
from typing import List, Generator
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_tap_changers import TableTapChangers
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableRegulatingCondEq"]
|
|
|
7
7
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_energy_connections import TableEnergyConnections
|
|
12
12
|
|
|
13
13
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableRegulatingControls"]
|
|
|
7
7
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_power_system_resources import TablePowerSystemResources
|
|
12
12
|
|
|
13
13
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
__all__ = ["TableRotatingMachines"]
|
|
7
7
|
|
|
8
8
|
from zepben.ewb import TableRegulatingCondEq
|
|
9
|
-
from zepben.ewb.database.
|
|
9
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class TableRotatingMachines(TableRegulatingCondEq):
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
__all__ = ["TableSeriesCompensators"]
|
|
7
7
|
|
|
8
|
-
from zepben.ewb.database.
|
|
8
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
9
9
|
from zepben.ewb.database.sqlite.tables.iec61970.base.core.table_conducting_equipment import TableConductingEquipment
|
|
10
10
|
|
|
11
11
|
|
|
@@ -7,7 +7,7 @@ __all__ = ["TableShuntCompensators"]
|
|
|
7
7
|
|
|
8
8
|
from abc import ABC
|
|
9
9
|
|
|
10
|
-
from zepben.ewb.database.
|
|
10
|
+
from zepben.ewb.database.sql.column import Column, Nullable
|
|
11
11
|
from zepben.ewb.database.sqlite.tables.iec61970.base.wires.table_regulating_cond_eq import TableRegulatingCondEq
|
|
12
12
|
|
|
13
13
|
|