power-grid-model 1.10.17__py3-none-win_amd64.whl → 1.12.119__py3-none-win_amd64.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.

Potentially problematic release.


This version of power-grid-model might be problematic. Click here for more details.

Files changed (67) hide show
  1. power_grid_model/__init__.py +54 -29
  2. power_grid_model/_core/__init__.py +3 -3
  3. power_grid_model/_core/buffer_handling.py +507 -478
  4. power_grid_model/_core/data_handling.py +195 -141
  5. power_grid_model/_core/data_types.py +142 -0
  6. power_grid_model/_core/dataset_definitions.py +109 -109
  7. power_grid_model/_core/enum.py +226 -0
  8. power_grid_model/_core/error_handling.py +215 -198
  9. power_grid_model/_core/errors.py +134 -0
  10. power_grid_model/_core/index_integer.py +17 -17
  11. power_grid_model/_core/options.py +71 -69
  12. power_grid_model/_core/power_grid_core.py +577 -562
  13. power_grid_model/_core/power_grid_dataset.py +545 -490
  14. power_grid_model/_core/power_grid_meta.py +262 -244
  15. power_grid_model/_core/power_grid_model.py +1025 -687
  16. power_grid_model/_core/power_grid_model_c/__init__.py +3 -0
  17. power_grid_model/_core/power_grid_model_c/bin/power_grid_model_c.dll +0 -0
  18. power_grid_model/_core/power_grid_model_c/get_pgm_dll_path.py +63 -0
  19. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/basics.h +251 -0
  20. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/buffer.h +108 -0
  21. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/dataset.h +332 -0
  22. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/dataset_definitions.h +1060 -0
  23. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/handle.h +111 -0
  24. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/meta_data.h +189 -0
  25. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/model.h +130 -0
  26. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/options.h +142 -0
  27. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c/serialization.h +118 -0
  28. power_grid_model/_core/power_grid_model_c/include/power_grid_model_c.h +36 -0
  29. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/basics.hpp +65 -0
  30. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/buffer.hpp +61 -0
  31. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/dataset.hpp +224 -0
  32. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/handle.hpp +108 -0
  33. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/meta_data.hpp +84 -0
  34. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/model.hpp +63 -0
  35. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/options.hpp +52 -0
  36. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/serialization.hpp +124 -0
  37. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp/utils.hpp +81 -0
  38. power_grid_model/_core/power_grid_model_c/include/power_grid_model_cpp.hpp +19 -0
  39. power_grid_model/_core/power_grid_model_c/lib/cmake/power_grid_model/power_grid_modelConfig.cmake +37 -0
  40. power_grid_model/_core/power_grid_model_c/lib/cmake/power_grid_model/power_grid_modelConfigVersion.cmake +65 -0
  41. power_grid_model/_core/power_grid_model_c/lib/cmake/power_grid_model/power_grid_modelTargets-release.cmake +19 -0
  42. power_grid_model/_core/power_grid_model_c/lib/cmake/power_grid_model/power_grid_modelTargets.cmake +144 -0
  43. power_grid_model/_core/power_grid_model_c/lib/power_grid_model_c.lib +0 -0
  44. power_grid_model/_core/power_grid_model_c/share/LICENSE +292 -0
  45. power_grid_model/_core/power_grid_model_c/share/README.md +15 -0
  46. power_grid_model/_core/serialization.py +319 -317
  47. power_grid_model/_core/typing.py +20 -0
  48. power_grid_model/{_utils.py → _core/utils.py} +798 -783
  49. power_grid_model/data_types.py +321 -319
  50. power_grid_model/enum.py +27 -214
  51. power_grid_model/errors.py +37 -119
  52. power_grid_model/typing.py +43 -48
  53. power_grid_model/utils.py +529 -400
  54. power_grid_model/validation/__init__.py +25 -10
  55. power_grid_model/validation/{rules.py → _rules.py} +1167 -962
  56. power_grid_model/validation/{validation.py → _validation.py} +1172 -1015
  57. power_grid_model/validation/assertions.py +93 -92
  58. power_grid_model/validation/errors.py +602 -524
  59. power_grid_model/validation/utils.py +313 -318
  60. {power_grid_model-1.10.17.dist-info → power_grid_model-1.12.119.dist-info}/METADATA +162 -165
  61. power_grid_model-1.12.119.dist-info/RECORD +65 -0
  62. {power_grid_model-1.10.17.dist-info → power_grid_model-1.12.119.dist-info}/WHEEL +1 -1
  63. power_grid_model-1.12.119.dist-info/entry_points.txt +3 -0
  64. power_grid_model/_core/_power_grid_core.dll +0 -0
  65. power_grid_model-1.10.17.dist-info/RECORD +0 -32
  66. power_grid_model-1.10.17.dist-info/top_level.txt +0 -1
  67. {power_grid_model-1.10.17.dist-info → power_grid_model-1.12.119.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,1060 @@
1
+ // SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
2
+ //
3
+ // SPDX-License-Identifier: MPL-2.0
4
+
5
+ // This header file is automatically generated. DO NOT modify it manually!
6
+
7
+ // clang-format off
8
+
9
+ /**
10
+ * @brief header file which includes helper extern global variables of meta data pointers
11
+ * to all datasets, compoments, and attributes
12
+ *
13
+ */
14
+
15
+ #pragma once
16
+ #ifndef POWER_GRID_MODEL_C_DATASET_DEFINITIONS_H
17
+ #define POWER_GRID_MODEL_C_DATASET_DEFINITIONS_H
18
+
19
+ #include "basics.h"
20
+
21
+ #ifdef __cplusplus
22
+ extern "C" {
23
+ #endif
24
+
25
+ // dataset input
26
+ PGM_API extern PGM_MetaDataset const* const PGM_def_input;
27
+ // components of input
28
+ // component node
29
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_node;
30
+ // attributes of input node
31
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_node_id;
32
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_node_u_rated;
33
+ // component line
34
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_line;
35
+ // attributes of input line
36
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_line_id;
37
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_line_from_node;
38
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_line_to_node;
39
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_line_from_status;
40
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_line_to_status;
41
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_line_r1;
42
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_line_x1;
43
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_line_c1;
44
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_line_tan1;
45
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_line_r0;
46
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_line_x0;
47
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_line_c0;
48
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_line_tan0;
49
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_line_i_n;
50
+ // component asym_line
51
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_asym_line;
52
+ // attributes of input asym_line
53
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_id;
54
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_from_node;
55
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_to_node;
56
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_from_status;
57
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_to_status;
58
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_r_aa;
59
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_r_ba;
60
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_r_bb;
61
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_r_ca;
62
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_r_cb;
63
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_r_cc;
64
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_r_na;
65
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_r_nb;
66
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_r_nc;
67
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_r_nn;
68
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_x_aa;
69
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_x_ba;
70
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_x_bb;
71
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_x_ca;
72
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_x_cb;
73
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_x_cc;
74
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_x_na;
75
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_x_nb;
76
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_x_nc;
77
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_x_nn;
78
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_c_aa;
79
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_c_ba;
80
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_c_bb;
81
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_c_ca;
82
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_c_cb;
83
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_c_cc;
84
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_c0;
85
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_c1;
86
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_line_i_n;
87
+ // component link
88
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_link;
89
+ // attributes of input link
90
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_link_id;
91
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_link_from_node;
92
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_link_to_node;
93
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_link_from_status;
94
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_link_to_status;
95
+ // component generic_branch
96
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_generic_branch;
97
+ // attributes of input generic_branch
98
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_generic_branch_id;
99
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_generic_branch_from_node;
100
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_generic_branch_to_node;
101
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_generic_branch_from_status;
102
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_generic_branch_to_status;
103
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_generic_branch_r1;
104
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_generic_branch_x1;
105
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_generic_branch_g1;
106
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_generic_branch_b1;
107
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_generic_branch_k;
108
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_generic_branch_theta;
109
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_generic_branch_sn;
110
+ // component transformer
111
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_transformer;
112
+ // attributes of input transformer
113
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_id;
114
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_from_node;
115
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_to_node;
116
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_from_status;
117
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_to_status;
118
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_u1;
119
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_u2;
120
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_sn;
121
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_uk;
122
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_pk;
123
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_i0;
124
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_p0;
125
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_i0_zero_sequence;
126
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_p0_zero_sequence;
127
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_winding_from;
128
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_winding_to;
129
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_clock;
130
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_tap_side;
131
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_tap_pos;
132
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_tap_min;
133
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_tap_max;
134
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_tap_nom;
135
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_tap_size;
136
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_uk_min;
137
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_uk_max;
138
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_pk_min;
139
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_pk_max;
140
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_r_grounding_from;
141
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_x_grounding_from;
142
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_r_grounding_to;
143
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_x_grounding_to;
144
+ // component transformer_tap_regulator
145
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_transformer_tap_regulator;
146
+ // attributes of input transformer_tap_regulator
147
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_tap_regulator_id;
148
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_tap_regulator_regulated_object;
149
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_tap_regulator_status;
150
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_tap_regulator_control_side;
151
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_tap_regulator_u_set;
152
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_tap_regulator_u_band;
153
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_tap_regulator_line_drop_compensation_r;
154
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_transformer_tap_regulator_line_drop_compensation_x;
155
+ // component three_winding_transformer
156
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_three_winding_transformer;
157
+ // attributes of input three_winding_transformer
158
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_id;
159
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_node_1;
160
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_node_2;
161
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_node_3;
162
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_status_1;
163
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_status_2;
164
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_status_3;
165
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_u1;
166
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_u2;
167
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_u3;
168
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_sn_1;
169
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_sn_2;
170
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_sn_3;
171
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_uk_12;
172
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_uk_13;
173
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_uk_23;
174
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_pk_12;
175
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_pk_13;
176
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_pk_23;
177
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_i0;
178
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_p0;
179
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_winding_1;
180
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_winding_2;
181
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_winding_3;
182
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_clock_12;
183
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_clock_13;
184
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_tap_side;
185
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_tap_pos;
186
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_tap_min;
187
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_tap_max;
188
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_tap_nom;
189
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_tap_size;
190
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_uk_12_min;
191
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_uk_12_max;
192
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_uk_13_min;
193
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_uk_13_max;
194
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_uk_23_min;
195
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_uk_23_max;
196
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_pk_12_min;
197
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_pk_12_max;
198
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_pk_13_min;
199
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_pk_13_max;
200
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_pk_23_min;
201
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_pk_23_max;
202
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_r_grounding_1;
203
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_x_grounding_1;
204
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_r_grounding_2;
205
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_x_grounding_2;
206
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_r_grounding_3;
207
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_three_winding_transformer_x_grounding_3;
208
+ // component sym_load
209
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_sym_load;
210
+ // attributes of input sym_load
211
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_load_id;
212
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_load_node;
213
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_load_status;
214
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_load_type;
215
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_load_p_specified;
216
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_load_q_specified;
217
+ // component sym_gen
218
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_sym_gen;
219
+ // attributes of input sym_gen
220
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_gen_id;
221
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_gen_node;
222
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_gen_status;
223
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_gen_type;
224
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_gen_p_specified;
225
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_gen_q_specified;
226
+ // component asym_load
227
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_asym_load;
228
+ // attributes of input asym_load
229
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_load_id;
230
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_load_node;
231
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_load_status;
232
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_load_type;
233
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_load_p_specified;
234
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_load_q_specified;
235
+ // component asym_gen
236
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_asym_gen;
237
+ // attributes of input asym_gen
238
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_gen_id;
239
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_gen_node;
240
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_gen_status;
241
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_gen_type;
242
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_gen_p_specified;
243
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_gen_q_specified;
244
+ // component shunt
245
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_shunt;
246
+ // attributes of input shunt
247
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_shunt_id;
248
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_shunt_node;
249
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_shunt_status;
250
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_shunt_g1;
251
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_shunt_b1;
252
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_shunt_g0;
253
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_shunt_b0;
254
+ // component source
255
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_source;
256
+ // attributes of input source
257
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_source_id;
258
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_source_node;
259
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_source_status;
260
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_source_u_ref;
261
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_source_u_ref_angle;
262
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_source_sk;
263
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_source_rx_ratio;
264
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_source_z01_ratio;
265
+ // component sym_voltage_sensor
266
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_sym_voltage_sensor;
267
+ // attributes of input sym_voltage_sensor
268
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_voltage_sensor_id;
269
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_voltage_sensor_measured_object;
270
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_voltage_sensor_u_sigma;
271
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_voltage_sensor_u_measured;
272
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_voltage_sensor_u_angle_measured;
273
+ // component asym_voltage_sensor
274
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_asym_voltage_sensor;
275
+ // attributes of input asym_voltage_sensor
276
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_voltage_sensor_id;
277
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_voltage_sensor_measured_object;
278
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_voltage_sensor_u_sigma;
279
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_voltage_sensor_u_measured;
280
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_voltage_sensor_u_angle_measured;
281
+ // component sym_power_sensor
282
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_sym_power_sensor;
283
+ // attributes of input sym_power_sensor
284
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_power_sensor_id;
285
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_power_sensor_measured_object;
286
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_power_sensor_measured_terminal_type;
287
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_power_sensor_power_sigma;
288
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_power_sensor_p_measured;
289
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_power_sensor_q_measured;
290
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_power_sensor_p_sigma;
291
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_power_sensor_q_sigma;
292
+ // component asym_power_sensor
293
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_asym_power_sensor;
294
+ // attributes of input asym_power_sensor
295
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_power_sensor_id;
296
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_power_sensor_measured_object;
297
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_power_sensor_measured_terminal_type;
298
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_power_sensor_power_sigma;
299
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_power_sensor_p_measured;
300
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_power_sensor_q_measured;
301
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_power_sensor_p_sigma;
302
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_power_sensor_q_sigma;
303
+ // component sym_current_sensor
304
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_sym_current_sensor;
305
+ // attributes of input sym_current_sensor
306
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_current_sensor_id;
307
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_current_sensor_measured_object;
308
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_current_sensor_measured_terminal_type;
309
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_current_sensor_angle_measurement_type;
310
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_current_sensor_i_sigma;
311
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_current_sensor_i_angle_sigma;
312
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_current_sensor_i_measured;
313
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_sym_current_sensor_i_angle_measured;
314
+ // component asym_current_sensor
315
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_asym_current_sensor;
316
+ // attributes of input asym_current_sensor
317
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_current_sensor_id;
318
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_current_sensor_measured_object;
319
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_current_sensor_measured_terminal_type;
320
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_current_sensor_angle_measurement_type;
321
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_current_sensor_i_sigma;
322
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_current_sensor_i_angle_sigma;
323
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_current_sensor_i_measured;
324
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_asym_current_sensor_i_angle_measured;
325
+ // component fault
326
+ PGM_API extern PGM_MetaComponent const* const PGM_def_input_fault;
327
+ // attributes of input fault
328
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_fault_id;
329
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_fault_status;
330
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_fault_fault_type;
331
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_fault_fault_phase;
332
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_fault_fault_object;
333
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_fault_r_f;
334
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_input_fault_x_f;
335
+ // dataset sym_output
336
+ PGM_API extern PGM_MetaDataset const* const PGM_def_sym_output;
337
+ // components of sym_output
338
+ // component node
339
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_node;
340
+ // attributes of sym_output node
341
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_node_id;
342
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_node_energized;
343
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_node_u_pu;
344
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_node_u;
345
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_node_u_angle;
346
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_node_p;
347
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_node_q;
348
+ // component line
349
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_line;
350
+ // attributes of sym_output line
351
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_line_id;
352
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_line_energized;
353
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_line_loading;
354
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_line_p_from;
355
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_line_q_from;
356
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_line_i_from;
357
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_line_s_from;
358
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_line_p_to;
359
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_line_q_to;
360
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_line_i_to;
361
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_line_s_to;
362
+ // component link
363
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_link;
364
+ // attributes of sym_output link
365
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_link_id;
366
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_link_energized;
367
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_link_loading;
368
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_link_p_from;
369
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_link_q_from;
370
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_link_i_from;
371
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_link_s_from;
372
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_link_p_to;
373
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_link_q_to;
374
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_link_i_to;
375
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_link_s_to;
376
+ // component transformer
377
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_transformer;
378
+ // attributes of sym_output transformer
379
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_transformer_id;
380
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_transformer_energized;
381
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_transformer_loading;
382
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_transformer_p_from;
383
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_transformer_q_from;
384
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_transformer_i_from;
385
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_transformer_s_from;
386
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_transformer_p_to;
387
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_transformer_q_to;
388
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_transformer_i_to;
389
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_transformer_s_to;
390
+ // component generic_branch
391
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_generic_branch;
392
+ // attributes of sym_output generic_branch
393
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_generic_branch_id;
394
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_generic_branch_energized;
395
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_generic_branch_loading;
396
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_generic_branch_p_from;
397
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_generic_branch_q_from;
398
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_generic_branch_i_from;
399
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_generic_branch_s_from;
400
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_generic_branch_p_to;
401
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_generic_branch_q_to;
402
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_generic_branch_i_to;
403
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_generic_branch_s_to;
404
+ // component asym_line
405
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_asym_line;
406
+ // attributes of sym_output asym_line
407
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_line_id;
408
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_line_energized;
409
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_line_loading;
410
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_line_p_from;
411
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_line_q_from;
412
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_line_i_from;
413
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_line_s_from;
414
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_line_p_to;
415
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_line_q_to;
416
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_line_i_to;
417
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_line_s_to;
418
+ // component transformer_tap_regulator
419
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_transformer_tap_regulator;
420
+ // attributes of sym_output transformer_tap_regulator
421
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_transformer_tap_regulator_id;
422
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_transformer_tap_regulator_energized;
423
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_transformer_tap_regulator_tap_pos;
424
+ // component three_winding_transformer
425
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_three_winding_transformer;
426
+ // attributes of sym_output three_winding_transformer
427
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_id;
428
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_energized;
429
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_loading_1;
430
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_loading_2;
431
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_loading_3;
432
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_loading;
433
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_p_1;
434
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_q_1;
435
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_i_1;
436
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_s_1;
437
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_p_2;
438
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_q_2;
439
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_i_2;
440
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_s_2;
441
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_p_3;
442
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_q_3;
443
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_i_3;
444
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_three_winding_transformer_s_3;
445
+ // component sym_load
446
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_sym_load;
447
+ // attributes of sym_output sym_load
448
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_load_id;
449
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_load_energized;
450
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_load_p;
451
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_load_q;
452
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_load_i;
453
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_load_s;
454
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_load_pf;
455
+ // component sym_gen
456
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_sym_gen;
457
+ // attributes of sym_output sym_gen
458
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_gen_id;
459
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_gen_energized;
460
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_gen_p;
461
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_gen_q;
462
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_gen_i;
463
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_gen_s;
464
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_gen_pf;
465
+ // component asym_load
466
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_asym_load;
467
+ // attributes of sym_output asym_load
468
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_load_id;
469
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_load_energized;
470
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_load_p;
471
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_load_q;
472
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_load_i;
473
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_load_s;
474
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_load_pf;
475
+ // component asym_gen
476
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_asym_gen;
477
+ // attributes of sym_output asym_gen
478
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_gen_id;
479
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_gen_energized;
480
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_gen_p;
481
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_gen_q;
482
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_gen_i;
483
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_gen_s;
484
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_gen_pf;
485
+ // component shunt
486
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_shunt;
487
+ // attributes of sym_output shunt
488
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_shunt_id;
489
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_shunt_energized;
490
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_shunt_p;
491
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_shunt_q;
492
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_shunt_i;
493
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_shunt_s;
494
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_shunt_pf;
495
+ // component source
496
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_source;
497
+ // attributes of sym_output source
498
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_source_id;
499
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_source_energized;
500
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_source_p;
501
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_source_q;
502
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_source_i;
503
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_source_s;
504
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_source_pf;
505
+ // component sym_voltage_sensor
506
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_sym_voltage_sensor;
507
+ // attributes of sym_output sym_voltage_sensor
508
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_voltage_sensor_id;
509
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_voltage_sensor_energized;
510
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_voltage_sensor_u_residual;
511
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_voltage_sensor_u_angle_residual;
512
+ // component asym_voltage_sensor
513
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_asym_voltage_sensor;
514
+ // attributes of sym_output asym_voltage_sensor
515
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_voltage_sensor_id;
516
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_voltage_sensor_energized;
517
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_voltage_sensor_u_residual;
518
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_voltage_sensor_u_angle_residual;
519
+ // component sym_power_sensor
520
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_sym_power_sensor;
521
+ // attributes of sym_output sym_power_sensor
522
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_power_sensor_id;
523
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_power_sensor_energized;
524
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_power_sensor_p_residual;
525
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_power_sensor_q_residual;
526
+ // component asym_power_sensor
527
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_asym_power_sensor;
528
+ // attributes of sym_output asym_power_sensor
529
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_power_sensor_id;
530
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_power_sensor_energized;
531
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_power_sensor_p_residual;
532
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_power_sensor_q_residual;
533
+ // component sym_current_sensor
534
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_sym_current_sensor;
535
+ // attributes of sym_output sym_current_sensor
536
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_current_sensor_id;
537
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_current_sensor_energized;
538
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_current_sensor_i_residual;
539
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_sym_current_sensor_i_angle_residual;
540
+ // component asym_current_sensor
541
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_asym_current_sensor;
542
+ // attributes of sym_output asym_current_sensor
543
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_current_sensor_id;
544
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_current_sensor_energized;
545
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_current_sensor_i_residual;
546
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_asym_current_sensor_i_angle_residual;
547
+ // component fault
548
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sym_output_fault;
549
+ // attributes of sym_output fault
550
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_fault_id;
551
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sym_output_fault_energized;
552
+ // dataset asym_output
553
+ PGM_API extern PGM_MetaDataset const* const PGM_def_asym_output;
554
+ // components of asym_output
555
+ // component node
556
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_node;
557
+ // attributes of asym_output node
558
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_node_id;
559
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_node_energized;
560
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_node_u_pu;
561
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_node_u;
562
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_node_u_angle;
563
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_node_p;
564
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_node_q;
565
+ // component line
566
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_line;
567
+ // attributes of asym_output line
568
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_line_id;
569
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_line_energized;
570
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_line_loading;
571
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_line_p_from;
572
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_line_q_from;
573
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_line_i_from;
574
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_line_s_from;
575
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_line_p_to;
576
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_line_q_to;
577
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_line_i_to;
578
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_line_s_to;
579
+ // component link
580
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_link;
581
+ // attributes of asym_output link
582
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_link_id;
583
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_link_energized;
584
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_link_loading;
585
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_link_p_from;
586
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_link_q_from;
587
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_link_i_from;
588
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_link_s_from;
589
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_link_p_to;
590
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_link_q_to;
591
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_link_i_to;
592
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_link_s_to;
593
+ // component transformer
594
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_transformer;
595
+ // attributes of asym_output transformer
596
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_transformer_id;
597
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_transformer_energized;
598
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_transformer_loading;
599
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_transformer_p_from;
600
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_transformer_q_from;
601
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_transformer_i_from;
602
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_transformer_s_from;
603
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_transformer_p_to;
604
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_transformer_q_to;
605
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_transformer_i_to;
606
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_transformer_s_to;
607
+ // component generic_branch
608
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_generic_branch;
609
+ // attributes of asym_output generic_branch
610
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_generic_branch_id;
611
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_generic_branch_energized;
612
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_generic_branch_loading;
613
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_generic_branch_p_from;
614
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_generic_branch_q_from;
615
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_generic_branch_i_from;
616
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_generic_branch_s_from;
617
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_generic_branch_p_to;
618
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_generic_branch_q_to;
619
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_generic_branch_i_to;
620
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_generic_branch_s_to;
621
+ // component asym_line
622
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_asym_line;
623
+ // attributes of asym_output asym_line
624
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_line_id;
625
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_line_energized;
626
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_line_loading;
627
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_line_p_from;
628
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_line_q_from;
629
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_line_i_from;
630
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_line_s_from;
631
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_line_p_to;
632
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_line_q_to;
633
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_line_i_to;
634
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_line_s_to;
635
+ // component transformer_tap_regulator
636
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_transformer_tap_regulator;
637
+ // attributes of asym_output transformer_tap_regulator
638
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_transformer_tap_regulator_id;
639
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_transformer_tap_regulator_energized;
640
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_transformer_tap_regulator_tap_pos;
641
+ // component three_winding_transformer
642
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_three_winding_transformer;
643
+ // attributes of asym_output three_winding_transformer
644
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_id;
645
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_energized;
646
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_loading_1;
647
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_loading_2;
648
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_loading_3;
649
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_loading;
650
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_p_1;
651
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_q_1;
652
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_i_1;
653
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_s_1;
654
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_p_2;
655
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_q_2;
656
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_i_2;
657
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_s_2;
658
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_p_3;
659
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_q_3;
660
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_i_3;
661
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_three_winding_transformer_s_3;
662
+ // component sym_load
663
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_sym_load;
664
+ // attributes of asym_output sym_load
665
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_load_id;
666
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_load_energized;
667
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_load_p;
668
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_load_q;
669
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_load_i;
670
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_load_s;
671
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_load_pf;
672
+ // component sym_gen
673
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_sym_gen;
674
+ // attributes of asym_output sym_gen
675
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_gen_id;
676
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_gen_energized;
677
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_gen_p;
678
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_gen_q;
679
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_gen_i;
680
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_gen_s;
681
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_gen_pf;
682
+ // component asym_load
683
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_asym_load;
684
+ // attributes of asym_output asym_load
685
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_load_id;
686
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_load_energized;
687
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_load_p;
688
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_load_q;
689
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_load_i;
690
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_load_s;
691
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_load_pf;
692
+ // component asym_gen
693
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_asym_gen;
694
+ // attributes of asym_output asym_gen
695
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_gen_id;
696
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_gen_energized;
697
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_gen_p;
698
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_gen_q;
699
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_gen_i;
700
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_gen_s;
701
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_gen_pf;
702
+ // component shunt
703
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_shunt;
704
+ // attributes of asym_output shunt
705
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_shunt_id;
706
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_shunt_energized;
707
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_shunt_p;
708
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_shunt_q;
709
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_shunt_i;
710
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_shunt_s;
711
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_shunt_pf;
712
+ // component source
713
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_source;
714
+ // attributes of asym_output source
715
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_source_id;
716
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_source_energized;
717
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_source_p;
718
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_source_q;
719
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_source_i;
720
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_source_s;
721
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_source_pf;
722
+ // component sym_voltage_sensor
723
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_sym_voltage_sensor;
724
+ // attributes of asym_output sym_voltage_sensor
725
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_voltage_sensor_id;
726
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_voltage_sensor_energized;
727
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_voltage_sensor_u_residual;
728
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_voltage_sensor_u_angle_residual;
729
+ // component asym_voltage_sensor
730
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_asym_voltage_sensor;
731
+ // attributes of asym_output asym_voltage_sensor
732
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_voltage_sensor_id;
733
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_voltage_sensor_energized;
734
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_voltage_sensor_u_residual;
735
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_voltage_sensor_u_angle_residual;
736
+ // component sym_power_sensor
737
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_sym_power_sensor;
738
+ // attributes of asym_output sym_power_sensor
739
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_power_sensor_id;
740
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_power_sensor_energized;
741
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_power_sensor_p_residual;
742
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_power_sensor_q_residual;
743
+ // component asym_power_sensor
744
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_asym_power_sensor;
745
+ // attributes of asym_output asym_power_sensor
746
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_power_sensor_id;
747
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_power_sensor_energized;
748
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_power_sensor_p_residual;
749
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_power_sensor_q_residual;
750
+ // component sym_current_sensor
751
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_sym_current_sensor;
752
+ // attributes of asym_output sym_current_sensor
753
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_current_sensor_id;
754
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_current_sensor_energized;
755
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_current_sensor_i_residual;
756
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_sym_current_sensor_i_angle_residual;
757
+ // component asym_current_sensor
758
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_asym_current_sensor;
759
+ // attributes of asym_output asym_current_sensor
760
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_current_sensor_id;
761
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_current_sensor_energized;
762
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_current_sensor_i_residual;
763
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_asym_current_sensor_i_angle_residual;
764
+ // component fault
765
+ PGM_API extern PGM_MetaComponent const* const PGM_def_asym_output_fault;
766
+ // attributes of asym_output fault
767
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_fault_id;
768
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_asym_output_fault_energized;
769
+ // dataset update
770
+ PGM_API extern PGM_MetaDataset const* const PGM_def_update;
771
+ // components of update
772
+ // component node
773
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_node;
774
+ // attributes of update node
775
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_node_id;
776
+ // component line
777
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_line;
778
+ // attributes of update line
779
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_line_id;
780
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_line_from_status;
781
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_line_to_status;
782
+ // component asym_line
783
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_asym_line;
784
+ // attributes of update asym_line
785
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_line_id;
786
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_line_from_status;
787
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_line_to_status;
788
+ // component link
789
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_link;
790
+ // attributes of update link
791
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_link_id;
792
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_link_from_status;
793
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_link_to_status;
794
+ // component transformer
795
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_transformer;
796
+ // attributes of update transformer
797
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_transformer_id;
798
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_transformer_from_status;
799
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_transformer_to_status;
800
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_transformer_tap_pos;
801
+ // component transformer_tap_regulator
802
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_transformer_tap_regulator;
803
+ // attributes of update transformer_tap_regulator
804
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_transformer_tap_regulator_id;
805
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_transformer_tap_regulator_status;
806
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_transformer_tap_regulator_u_set;
807
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_transformer_tap_regulator_u_band;
808
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_transformer_tap_regulator_line_drop_compensation_r;
809
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_transformer_tap_regulator_line_drop_compensation_x;
810
+ // component three_winding_transformer
811
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_three_winding_transformer;
812
+ // attributes of update three_winding_transformer
813
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_three_winding_transformer_id;
814
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_three_winding_transformer_status_1;
815
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_three_winding_transformer_status_2;
816
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_three_winding_transformer_status_3;
817
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_three_winding_transformer_tap_pos;
818
+ // component sym_load
819
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_sym_load;
820
+ // attributes of update sym_load
821
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_load_id;
822
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_load_status;
823
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_load_p_specified;
824
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_load_q_specified;
825
+ // component sym_gen
826
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_sym_gen;
827
+ // attributes of update sym_gen
828
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_gen_id;
829
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_gen_status;
830
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_gen_p_specified;
831
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_gen_q_specified;
832
+ // component asym_load
833
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_asym_load;
834
+ // attributes of update asym_load
835
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_load_id;
836
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_load_status;
837
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_load_p_specified;
838
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_load_q_specified;
839
+ // component asym_gen
840
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_asym_gen;
841
+ // attributes of update asym_gen
842
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_gen_id;
843
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_gen_status;
844
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_gen_p_specified;
845
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_gen_q_specified;
846
+ // component shunt
847
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_shunt;
848
+ // attributes of update shunt
849
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_shunt_id;
850
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_shunt_status;
851
+ // component source
852
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_source;
853
+ // attributes of update source
854
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_source_id;
855
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_source_status;
856
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_source_u_ref;
857
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_source_u_ref_angle;
858
+ // component sym_voltage_sensor
859
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_sym_voltage_sensor;
860
+ // attributes of update sym_voltage_sensor
861
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_voltage_sensor_id;
862
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_voltage_sensor_u_sigma;
863
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_voltage_sensor_u_measured;
864
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_voltage_sensor_u_angle_measured;
865
+ // component asym_voltage_sensor
866
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_asym_voltage_sensor;
867
+ // attributes of update asym_voltage_sensor
868
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_voltage_sensor_id;
869
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_voltage_sensor_u_sigma;
870
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_voltage_sensor_u_measured;
871
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_voltage_sensor_u_angle_measured;
872
+ // component sym_power_sensor
873
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_sym_power_sensor;
874
+ // attributes of update sym_power_sensor
875
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_power_sensor_id;
876
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_power_sensor_power_sigma;
877
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_power_sensor_p_measured;
878
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_power_sensor_q_measured;
879
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_power_sensor_p_sigma;
880
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_power_sensor_q_sigma;
881
+ // component asym_power_sensor
882
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_asym_power_sensor;
883
+ // attributes of update asym_power_sensor
884
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_power_sensor_id;
885
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_power_sensor_power_sigma;
886
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_power_sensor_p_measured;
887
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_power_sensor_q_measured;
888
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_power_sensor_p_sigma;
889
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_power_sensor_q_sigma;
890
+ // component sym_current_sensor
891
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_sym_current_sensor;
892
+ // attributes of update sym_current_sensor
893
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_current_sensor_id;
894
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_current_sensor_i_sigma;
895
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_current_sensor_i_angle_sigma;
896
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_current_sensor_i_measured;
897
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_sym_current_sensor_i_angle_measured;
898
+ // component asym_current_sensor
899
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_asym_current_sensor;
900
+ // attributes of update asym_current_sensor
901
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_current_sensor_id;
902
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_current_sensor_i_sigma;
903
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_current_sensor_i_angle_sigma;
904
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_current_sensor_i_measured;
905
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_asym_current_sensor_i_angle_measured;
906
+ // component fault
907
+ PGM_API extern PGM_MetaComponent const* const PGM_def_update_fault;
908
+ // attributes of update fault
909
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_fault_id;
910
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_fault_status;
911
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_fault_fault_type;
912
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_fault_fault_phase;
913
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_fault_fault_object;
914
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_fault_r_f;
915
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_update_fault_x_f;
916
+ // dataset sc_output
917
+ PGM_API extern PGM_MetaDataset const* const PGM_def_sc_output;
918
+ // components of sc_output
919
+ // component node
920
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_node;
921
+ // attributes of sc_output node
922
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_node_id;
923
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_node_energized;
924
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_node_u_pu;
925
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_node_u;
926
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_node_u_angle;
927
+ // component line
928
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_line;
929
+ // attributes of sc_output line
930
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_line_id;
931
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_line_energized;
932
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_line_i_from;
933
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_line_i_from_angle;
934
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_line_i_to;
935
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_line_i_to_angle;
936
+ // component link
937
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_link;
938
+ // attributes of sc_output link
939
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_link_id;
940
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_link_energized;
941
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_link_i_from;
942
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_link_i_from_angle;
943
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_link_i_to;
944
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_link_i_to_angle;
945
+ // component transformer
946
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_transformer;
947
+ // attributes of sc_output transformer
948
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_transformer_id;
949
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_transformer_energized;
950
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_transformer_i_from;
951
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_transformer_i_from_angle;
952
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_transformer_i_to;
953
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_transformer_i_to_angle;
954
+ // component asym_line
955
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_asym_line;
956
+ // attributes of sc_output asym_line
957
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_line_id;
958
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_line_energized;
959
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_line_i_from;
960
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_line_i_from_angle;
961
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_line_i_to;
962
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_line_i_to_angle;
963
+ // component three_winding_transformer
964
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_three_winding_transformer;
965
+ // attributes of sc_output three_winding_transformer
966
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_three_winding_transformer_id;
967
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_three_winding_transformer_energized;
968
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_three_winding_transformer_i_1;
969
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_three_winding_transformer_i_1_angle;
970
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_three_winding_transformer_i_2;
971
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_three_winding_transformer_i_2_angle;
972
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_three_winding_transformer_i_3;
973
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_three_winding_transformer_i_3_angle;
974
+ // component sym_load
975
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_sym_load;
976
+ // attributes of sc_output sym_load
977
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_sym_load_id;
978
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_sym_load_energized;
979
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_sym_load_i;
980
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_sym_load_i_angle;
981
+ // component sym_gen
982
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_sym_gen;
983
+ // attributes of sc_output sym_gen
984
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_sym_gen_id;
985
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_sym_gen_energized;
986
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_sym_gen_i;
987
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_sym_gen_i_angle;
988
+ // component asym_load
989
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_asym_load;
990
+ // attributes of sc_output asym_load
991
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_load_id;
992
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_load_energized;
993
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_load_i;
994
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_load_i_angle;
995
+ // component asym_gen
996
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_asym_gen;
997
+ // attributes of sc_output asym_gen
998
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_gen_id;
999
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_gen_energized;
1000
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_gen_i;
1001
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_gen_i_angle;
1002
+ // component shunt
1003
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_shunt;
1004
+ // attributes of sc_output shunt
1005
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_shunt_id;
1006
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_shunt_energized;
1007
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_shunt_i;
1008
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_shunt_i_angle;
1009
+ // component source
1010
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_source;
1011
+ // attributes of sc_output source
1012
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_source_id;
1013
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_source_energized;
1014
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_source_i;
1015
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_source_i_angle;
1016
+ // component sym_voltage_sensor
1017
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_sym_voltage_sensor;
1018
+ // attributes of sc_output sym_voltage_sensor
1019
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_sym_voltage_sensor_id;
1020
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_sym_voltage_sensor_energized;
1021
+ // component asym_voltage_sensor
1022
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_asym_voltage_sensor;
1023
+ // attributes of sc_output asym_voltage_sensor
1024
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_voltage_sensor_id;
1025
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_voltage_sensor_energized;
1026
+ // component sym_power_sensor
1027
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_sym_power_sensor;
1028
+ // attributes of sc_output sym_power_sensor
1029
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_sym_power_sensor_id;
1030
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_sym_power_sensor_energized;
1031
+ // component asym_power_sensor
1032
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_asym_power_sensor;
1033
+ // attributes of sc_output asym_power_sensor
1034
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_power_sensor_id;
1035
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_power_sensor_energized;
1036
+ // component sym_current_sensor
1037
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_sym_current_sensor;
1038
+ // attributes of sc_output sym_current_sensor
1039
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_sym_current_sensor_id;
1040
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_sym_current_sensor_energized;
1041
+ // component asym_current_sensor
1042
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_asym_current_sensor;
1043
+ // attributes of sc_output asym_current_sensor
1044
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_current_sensor_id;
1045
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_asym_current_sensor_energized;
1046
+ // component fault
1047
+ PGM_API extern PGM_MetaComponent const* const PGM_def_sc_output_fault;
1048
+ // attributes of sc_output fault
1049
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_fault_id;
1050
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_fault_energized;
1051
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_fault_i_f;
1052
+ PGM_API extern PGM_MetaAttribute const* const PGM_def_sc_output_fault_i_f_angle;
1053
+ //
1054
+
1055
+ #ifdef __cplusplus
1056
+ }
1057
+ #endif
1058
+
1059
+ #endif
1060
+ // clang-format on