MATLAB Coding and Initial Data Analysis
Writing the MATLAB script I developed two main MATLAB scripts: wind_turbine_analysis.m - Single turbine simulation using dataset multi_turbine_simulation.m - Multiple turbine wind farm simulation The first script loads the dataset (Voltage, Current, RPM, Power) and performs a comprehensive analysis as seen in the command window. The script automatically calculates mean, standard deviation, min and max for all variables, which gives us an insight into the system's variability and behaviour. What the time series shows. The voltage varies between approximately 5.8V and 11.4V over 60 seconds, following a smooth pattern that simulates varying wind conditions. The current response shows an inverse relationship; when the voltage is high, the current seems to be lower, which is realistic for a system with varying load conditions. Power output ranges from around 0.2W to nearly 5W, staying withing the specified 0-5W range. RPM and Power Relationship The scatter plot shows a clear positive co...