Explore innovative electrical machines MATLAB project ideas.
Get expert guidance for your academic and career growth in electrical engineering.
A wave-shaped mask for fabricating a nano-scale structure is disclosed. The wave-shaped mask comprises an elastomeric transparent substrate having an upper surface and a lower surface, and a light-penetrable thin film layer disposed on the upper surface of the elastomeric transparent substrate.
pdepe, fft2, mesh, fcontourProposes earth fault localization using synchronized power quality measurement data recorded on the low-voltage side of MV/LV distribution transformers in compensated neutral networks.
power_analyze, fft, hilbert, simAccurate measurement and estimation of HVDC converter station power losses operating high-frequency IGBT switches to support bid evaluations and carbon emission reductions.
power_sweepsens, thd, trapz, simscape.multibodyComprehensive simulation study across 42 drivetrain case studies evaluating efficiency, fuel consumption, and battery state-of-charge dynamics in series-parallel hybrid electric vehicles.
autoblkssimplehev, sim, trapz, plotInvestigates relationships between DC motor speed, strain torque, and armature voltage levels in open-loop and closed-loop feedback control architectures.
tf, step, pidtune, rlocus, bodeAnalytical and SIMULINK loss calculations comparing transformer core and copper losses under linear loads versus non-linear harmonic load current profiles.
power_fftscope, thd, power_loadflow, simDevelops a dynamic model of a seven-phase induction generator driven by a wind turbine with power electronic converters and Synchronous Reference Frame (SRFPLL) grid synchronization.
power_multiphase, srfpll, park, clarke, simDynamic modeling of stationary PEM fuel cell systems considering fuel processor (ATR), PEM stack, coolant flow, humidification, and enthalpy wheel heat exchangers.
simscape.library, ode45, interp1, plotSimulating DC motor torque-speed curve under varying armature voltages:
% DC Motor Constants
Ra = 2.0; % Armature Resistance (Ohm)
Kt = 0.1; % Torque Constant (Nm/A)
Ke = 0.1; % Voltage Constant (V/rad/s)
Va_vec = [12, 24, 36]; % Armature Voltages (V)
w = 0:1:350; % Angular Speed (rad/s)
figure; hold on;
for Va = Va_vec
Ia = (Va - Ke * w) / Ra;
Torque = Kt * Ia;
plot(w * 30/pi, Torque, 'LineWidth', 1.5);
end
xlabel('Speed (RPM)'); ylabel('Torque (Nm)');
title('DC Motor Speed vs Torque Curves');
legend('Va = 12V', 'Va = 24V', 'Va = 36V'); grid on;
Use Simscape Electrical Asynchronous Machine block, setting d-q axis reference frames, stator resistance, rotor reactance, and inertia parameters.
Simscape Electrical, Power System Simulation, Control System Toolbox, and Signal Processing Toolbox.
Differential equation assignments usually boil down to three scenarios: standard initial value problems, stiff system...
Learn More1. Why Standard AI Fails on Real-World Physics Problems If you've ever tried training a standard deep learn...
Learn MoreReal feedback from students across top engineering universities worldwide.
“I got full marks on my MATLAB DSP assignment! The filter design code was completely vectorized, the frequency response plots were exact, and the delivery was 8 hours before my deadline. Highly recommended!”
“Our Simulink EV powertrain model had severe algebraic loop and solver errors. The MATLABSolutions team fixed the solver configuration in 4 hours and provided an annotated scope diagram. Lifesaver for my final year!”
Explore deep-dive technical articles written by our engineering team to master complex MATLAB & Simulink topics.
Differential equation assignments usually boil down to three scenarios: standard initial value problems, stiff systems that crash normal solvers, and boundary value problems whe...
1. Why Standard AI Fails on Real-World Physics Problems If you've ever tried training a standard deep learning model to predict fluid dynamics, structural stress, or h...