-
Notifications
You must be signed in to change notification settings - Fork 5
power #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hi, sorry for the delay. Can you say how did you come up with this plot? Which part of code did u use? |
Hi there. I indeed haven't applied this formula for normalization directly, but I did limit the current ranges by the maximum current for each type of load, as if I'm considering imin =0 (in the formula). From the harmonic_dictionary, we extract the maximum current ("max_current" or imax) of every sample from each category of appliances. See function construct_harmonics_dict in process_data.py code. In the plotting part, I'm limiting the y-axis plotting to this max_current (range from -imax to +imax). See lines 592-598 and 716-717 of generate_graphs.py. The voltage values (x-axis), on the other hand, are basically the same for each sample, since it is the grid voltage and it dont have any abrupt variations between cycles. The matplotlib.pyplot.plot function in this case will adjust the view limits of the graph with the range of the voltage (see the documentation: https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.plot.html, scalex default value is true), so there is no significant difference in normalizing it or not. I understand that the code is a little bit confusing in some parts, I need to add more comments there, sorry. Hope I answered your question. If not, let me know. Don't know why i haven't just applied the formula though... u.u |
Thank you very much for your answer. I think I understand what you mean. Wishing you all the best. |
I'm sorry to ask you another question. How did you extract steady data from a single electrical appliance and draw a VI diagram? There may be extremely high unstable currents in the appliance, how did you handle it? |
Indeed, there were many samples that were discarded because no steady state current (at least for the minimal number of cycles) were obtained for some appliances, like laptop. The steady state capture is done in the pre-processing part, in steady_samples.py code. The criteria used is that, for a minimal number of cycles, the mean of the the rms signal doens't change more than 10% from one cycle to another (this value was obtained empirically, cause, if very low, would discard most of the samples, and very high would get unstable signal). Also, the mean of the rms signal needed to be higher than some threshold (I think I used 30mA), because the signals with a very low current were always unstable due to low resolution of measuring instruments or just residual current sampled (too low to be considered an operating load). Hope I have answered your question. |
I observed that you took 12 cycles of current and voltage data to draw a VI graph, but after careful observation, I found that the data points you took were less than 6000, and I also noticed that other literature only took data for one cycle, and the voltage mostly started from 0. I'm a bit curious, is it theoretically feasible for you to do this? |
I'm sorry to bother you again, but may I ask why the power here is in such a waveform. In an AC circuit, power should not be directly voltage times current.

The text was updated successfully, but these errors were encountered: