The Four Core Pillars of Applied Electrical Engineering
While university programs divide the major into highly specialized tracks, a practical electrical engineering overview for makers and technicians boils down to four intersecting pillars. Understanding which pillar you are operating in dictates the tools you use and the safety margins you must respect.
| Pillar | Typical Voltage Range | Primary Tools | Common Maker Application |
|---|---|---|---|
| Power Systems | 120V AC to 480V+ AC | Clamp meter, megohmmeter, conduit benders | Sizing subpanels, solar inverters, VFDs |
| Electronics | 1.2V DC to 48V DC | Oscilloscope, soldering station, EDA software | PCB layout, sensor conditioning, power supplies |
| Embedded & Control | 3.3V to 24V DC | Logic analyzer, IDE, JTAG debugger | ESP32 IoT nodes, PID motor controllers, PLCs |
| Signals & Comms | mV to 5V RF/Baseband | Spectrum analyzer, VNA, SDR | Antenna tuning, LoRaWAN gateways, audio DSP |
Worked Numeric Example: Sizing a DC Motor Drive Circuit
Theory only matters when it survives the breadboard. Let us apply electrical engineering fundamentals to a common bench problem: designing a low-side MOSFET switch for a 24V DC motor drawing 15A continuous (45A stall).
1. Calculate Conduction Loss and Thermal Rise
Power dissipated as heat is calculated using P = I²R.
P = (15A)² × 0.0025Ω = 0.5625 Watts.
The MOSFET's junction-to-ambient thermal resistance (RθJA) in free air is roughly 40 °C/W.
Temperature rise = 0.5625W × 40 °C/W = 22.5 °C.
Assuming a 25 °C room, the junction sits at 47.5 °C, well below the 175 °C maximum. Conclusion: No heatsink is required for continuous operation.
2. Size the Feeder Wire and Verify Voltage Drop
For 15A continuous, NEC Table 310.16 (90°C column for THHN) technically allows 14 AWG (rated 25A). However, engineering practice dictates sizing for voltage drop and physical robustness. We select 12 AWG THHN (rated 30A at 90°C, resistance = 1.588 Ω/1000ft).
For a 5-foot run from the battery to the motor (10 feet total round-trip length):
Rwire = 10 ft × (1.588 / 1000) = 0.01588 Ω.
Vdrop = 15A × 0.01588 Ω = 0.238V.
A standard engineering limit is a 3% voltage drop (0.72V for a 24V system). Our 0.238V drop is well within spec, ensuring the motor receives adequate torque during startup.
Where You Meet This in Practice
When transitioning from textbook schematics to physical builds, ideal components vanish. Here is where electrical engineering theory forces physical compromises on the bench and jobsite:
- Parasitic Inductance and Flyback: Every physical wire has inductance. When you abruptly turn off the MOSFET driving our 15A motor, the collapsing magnetic field in the motor windings generates a massive voltage spike (V = L × di/dt). Without a flyback diode routed physically close to the motor terminals, this spike will punch through the MOSFET's drain-source breakdown voltage and destroy it.
- Ground Bounce in High-Speed Digital: If you are switching high currents on the same ground plane as an ESP32's sensitive ADC pins, the rapid change in current (di/dt) across the trace resistance creates a transient voltage offset. The microcontroller reads this as a shifting ground reference, resulting in noisy sensor data or random brownout resets.
- Thermal Derating of Protective Devices: A standard 20A thermal-magnetic breaker is calibrated for a 40 °C ambient environment. If you install a subpanel in an unconditioned attic that reaches 55 °C in the summer, the breaker's bimetallic strip will trip prematurely at loads as low as 16A. Engineering requires applying manufacturer derating curves, not just trusting the stamped amperage.
Electrical Engineering vs. Electronics vs. Electrician Work
A comprehensive electrical engineering overview must draw boundaries around adjacent disciplines. Makers often blur these lines, but the legal and practical distinctions are rigid.
Licensed Electricians focus on physical installation, safety, and strict adherence to the National Electrical Code (NEC) or local equivalents. Their domain is primarily mains voltage (120V-480V AC), conduit fill ratios, grounding/bonding, and arc-fault protection. They do not typically design circuits; they execute and verify installations designed by others.
Electronics Engineers and Designers operate almost entirely below 50V DC. They focus on solid-state physics, PCB layout, signal integrity, and semiconductor behavior. Their primary concerns are electromagnetic interference (EMI), trace impedance, and logic timing.
Electrical Engineers bridge the gap. They use advanced mathematics (complex variables, differential equations, electromagnetics) to design the systems that electricians install and the components that electronics designers use. They design the 500kV transmission lines, the 10kW solar inverters, and the physical architecture of the microchips themselves.
Frequently Asked Questions
What math do you actually need for a practical electrical engineering overview?
For bench work and DIY projects, you need a rock-solid grasp of algebra, trigonometry (for AC phase angles and power factor), and basic calculus (specifically for understanding RC time constants and inductor charging curves). Complex numbers are mandatory if you plan to analyze AC impedance or design passive audio filters. You rarely need partial differential equations unless you are designing physical antennas or high-frequency RF transmission lines.
Can I teach myself electrical engineering without a university degree?
Yes, but you must be disciplined about the fundamentals. Many self-taught makers jump straight to copying Arduino code without understanding pull-up resistors or I2C capacitance limits. To teach yourself effectively, pair hands-on microcontroller projects with SPICE circuit simulation (like LTspice) and read foundational texts on circuit theory. You will lack the formal accreditation to stamp commercial power grid designs, but you can absolutely achieve professional-level competence in embedded systems, PCB design, and low-voltage power electronics.
What is the difference between an electrical engineer and a licensed electrician?
The distinction is design physics versus code-compliant installation. An electrical engineer calculates the fault current, specifies the breaker interrupting capacity (AIC rating), and designs the protective relay logic. The licensed electrician physically bends the conduit, torques the terminal lugs to spec, pulls the THHN wire, and ensures the installation passes the local Authority Having Jurisdiction (AHJ) inspection. In the US, performing mains electrical work for hire almost always requires an electrician's license, regardless of your engineering degree.
Which software tools are standard for an electrical engineering overview in 2026?
The modern bench relies on a specific software stack. For PCB design, KiCad (open-source) and Altium Designer (industry standard) dominate. For circuit simulation, LTspice remains the undisputed king for analog and power electronics. Embedded developers rely on VS Code with PlatformIO for firmware, while control systems engineers use MATLAB and Simulink for modeling PID loops and digital signal processing before writing a single line of C++.






