Skip to main content

Microwave Oven Transformer



Microwave ovens - The circuit shown is typical of bottom range microwave oven. Protection of the recifier diode and inrush current limiting is by a soft start circuit which puts a 10 watt 25 ohm resistor in the primary circuit for around a second. This slow start cct and the noise filter components are usually on a small pcb which is good without modification in home brew power supplies. The fan?, high voltage diode and transformer are useful for low voltage (eg 35v 30A - rewind the secondary)

- picture shows a 700W transformer (output rating - transformer is >1kW rated) with the secondary removed and rewound with 2.5mm square mains wire to give 23v rms. After rectification with a 40A bridge rectifier and smoothing with 66,000uF @40V this gives a no load voltage of 31.6v measured. Note 23 x 1.414 = 32.5v minus two diode volt drops gives 31.3v. On full load with the 600W topband transmitter the volts drop to 20.9v (some mains volt drop with this measurement owing to shed being at bottom of garden) and the transformer temperature reached 85deg C. this does cause the mains wire secondary windings to stick together but otherwise all ok. Bridge rect is type CM40010 farnel order code 9380841. The 66,000uF cap is 2 x 33,000uF 9A ripple 40v caps from farnell order code 8820732. Note importance of fitting discharge resistor to the power supply. 2k ohms at 1W is ok for 3min ish discharge time -

or high voltage (2.5kV) PSUs. Measurements were made on 4 transformers in the 700 - 800W range. A 12.3V ac input to the primary winding gave secondary voltages of between 112 v and 120v ac. The primary resistance measure around 2 ohms and the secondary resistance 100 ohms.

Comments

Popular posts from this blog

Digital Bandpass Filter FIR design - Python

The python code generates the Finite Impulse Response (FIR) filter coefficients for a lowpass filter (LPF) at 10 (Hz) cut off using firwin from scipy.  A highpass filter is then created by subtracting the lowpass filter output(s) from the output of an allpass filter. To do this the coefficients of the LPF are multiplied by -1 and 1 added to the centre tap (to create the allpass filter with subtraction). A second LPF is then created with a cutoff at 15 (Hz) and the bandpass filter formed by addition of the LPF and HPF coefficients. The program also generates a test sine wave of a given amplitude and power and to this noise from a Normal distribution is added.  The graph below shows the signal and nois, and the signal (green) after filtering. The input snr is approximately 3dB. The frequency response below shows the passband centered on 12.5 (Hz), the Nyquist frequency is 50 (Hz). from numpy import cos, sin, pi, absolute, arange from numpy.random import normal fr...

FT 817 Power Amplifier

This very simple 2 Fet power amplifier easily achieves 250W output with an FT817 5W drive. The key design details as follows: 3:1 broadband input transformer matches the 5.5 ohm gate load resistor (4 x 22 ohms in parallel) to the 50 ohms required by the FT817 . The 4:1 output broadband transformer presents 3 ohms (16:1 impedance ratio) to the balanced HEXFET pair each mounted on a 3mm copper heat spreader which is insulated from the 2 1w/degC heatsinks. These are blown cool by a fan underneath. The power supply required is 28v at 30 amps. The amp is around 50% efficient with a standing 750mAmp temperature compensated bias. An IC 703, with 10watts output will drive the output to around 400 watts. The output filter shown is a 5 pole topband filter with T130-2 torroids and 400v silver mica caps. Peak output voltage on 160 metres with 5 watts drive is 160v or 320v p-p in 50 ohms equating to 250watts. This is slightly higher than the reading on the 3kw MFJ power meter. The inline F...

Splunk Cheat Sheet (Linux)

1. set root's password:  sudo su passwd root Enter new UNIX password: < new_root_password > Retype new UNIX password: < new_root_password > passwd: password updated successfully # su - 2. Remove any existing Splunk directories & create user etc: # rm -rf /opt/splunkforwarder # userdel -r splunk # this will remove as above if user splunk's home directory # groupadd siem # useradd -g siem -s /bin/bash -d /home/siem -m siem # vi ~/.profile # chage -I -1 -m -0 -M -99999 -E -1 siem If above fails because of multiple passwd fails: # pam_tally --reset check with #chage -l siem # uname -a # check OS version # dpkg -i splunk-4.3.1...........intel.deb # chown -R siem:siem /opt/splunk # su - siem : $SPLUNK_HOME/bin/splunk start --accept-license : $SPLUNK_HOME/bin/splunk edit user admin -password newpassword -role admin -auth admin:changeme 3. vi ~/.profile (as follows) (OR .bash_profile) # ~/.profile: executed by the command interpreter for log...