-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from Mbrahim96/config-ini
Confihuration of PMU Estimator with .ini file
- Loading branch information
Showing
10 changed files
with
2,004 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# config.ini | ||
# | ||
# Version: 1.0 | ||
# Authors: Chemseddine Allioua, Brahim Mazighi | ||
# University of Bologna, Italy | ||
# | ||
# The config.ini file is a configuration file used to set parameters for the pmu estimator. | ||
# for more information about the parameters, please refer to the documentation. | ||
|
||
[signal] | ||
channels = 3 ; [unsigned integer] number of channels to process | ||
n_cycles = 4 ; [unsigned integer] input window size in number of samples | ||
sample_rate = 25600 ; [unsigned integer] sample rate in Sample/sec | ||
nominal_freq = 50 ; [unsigned integer] signal nominal frequency in Hz | ||
|
||
[synchrophasor] | ||
frame_rate = 50 ; [unsigned integer] output frame rate in frames/sec | ||
number_of_dft_bins = 11 ; [unsigned integer] number of DFT bins used for estimation | ||
ipdft_iterations = 3 ; [unsigned integer] number of iterations for interpolated DFT | ||
iter_e_ipdft_iterations = 3 ; [unsigned integer] number of iterations for iterative enhanced interpolated DFT | ||
interference_threshold = 0.0033 ; [double] interference threshold for iterative enhanced interpolated DFT | ||
|
||
[rocof] | ||
threshold_1 = 3 ; [double] thresholds for two state ROCOF estimation | ||
threshold_2 = 25 ; | ||
threshold_3 = 0.035 ; | ||
low_pass_filter_1 = 0.5913 ; [double] low pass filter coefficients for ROCOF estimation | ||
low_pass_filter_2 = 0.2043 ; | ||
low_pass_filter_3 = 0.2043 ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.