Overunity.com Archives is Temporarily on Read Mode Only!



Free Energy will change the World - Free Energy will stop Climate Change - Free Energy will give us hope
and we will not surrender until free energy will be enabled all over the world, to power planes, cars, ships and trains.
Free energy will help the poor to become independent of needing expensive fuels.
So all in all Free energy will bring far more peace to the world than any other invention has already brought to the world.
Those beautiful words were written by Stefan Hartmann/Owner/Admin at overunity.com
Unfortunately now, Stefan Hartmann is very ill and He needs our help
Stefan wanted that I have all these massive data to get it back online
even being as ill as Stefan is, he transferred all databases and folders
that without his help, this Forum Archives would have never been published here
so, please, as the Webmaster and Creator of these Archives, I am asking that you help him
by making a donation on the Paypal Button above.
You can visit us or register at my main site at:
Overunity Machines Forum



Simple to build isolation transformer that consumes less power than it gives out

Started by Jack Noskills, July 03, 2012, 08:01:10 AM

Previous topic - Next topic

0 Members and 45 Guests are viewing this topic.

forest

Thank You Jack I just wanted to help.  I think we need a tool which can do sweep at slow rate while displaying  frequency and able to pause when required still producing output. Such tool would allow to find resonant frequency easily. Sadly I must confess I haven't found such one yet.

TinselKoala

As Jack has described, GoldWave will do what you need in the audio range, it just needs a little programming.

But why not invest in a decent function generator with sweep capability? The FG, along with the oscilloscope, is the basis of any setup for looking at resonant circuits or just electronics tinkering in general.
Any signal generator will allow you to sweep manually, and you can just stop turning the knob when you see the resonant voltage rise on the scope, and read off the numbers from the FG's or scope's display. Most common, low-end FGs these days will cover a range up to 3 or 5 MHz and many also even include sweep function.
I have an old Interstate F34 Sweep Function Generator that I use for coil tuning, letting it sweep automatically, but this is a luxury. It's easy enough to do manually with the right tools.

forest

Quote from: TinselKoala on November 02, 2012, 02:02:55 PM
As Jack has described, GoldWave will do what you need in the audio range, it just needs a little programming.

But why not invest in a decent function generator with sweep capability? The FG, along with the oscilloscope, is the basis of any setup for looking at resonant circuits or just electronics tinkering in general.
Any signal generator will allow you to sweep manually, and you can just stop turning the knob when you see the resonant voltage rise on the scope, and read off the numbers from the FG's or scope's display. Most common, low-end FGs these days will cover a range up to 3 or 5 MHz and many also even include sweep function.
I have an old Interstate F34 Sweep Function Generator that I use for coil tuning, letting it sweep automatically, but this is a luxury. It's easy enough to do manually with the right tools.

Answer is simple. I'm short on money and function generators are costly. Do you know maybe about any cheap one , maybe extension slot for PC ?

DreamThinkBuild

Hi Forest,

If you need to generate more specific frequencies I suggest Octave(which is Open Source).

http://www.gnu.org/software/octave/

Using the chirp function is a snap to generate swept frequencies or any other kind of signal. You can keep changing the parameters until you narrow down the frequency range.

Quick example:

Quote
%Notes:
% - The duration should be set longer than this example for
%better low frequency accuracy
%
% - You can change the starting phase angle which is an
%optional parameter for chirp.

%Clean up workspace
clear;
clc;

%Inputs
StartFreq=1;    %Hz
EndFreq=100;    %Hz
Duration=2;    %Seconds
SampleRate=48000; %Samples per second
OutputFile='MySweep.wav'; %Output filename

%Set time frame
t=1/SampleRate;    %Time period
tp=0:t:Duration; %Time over duration

%Generate swept output signal with chirp (normalized)
OutSignal=chirp(tp,StartFreq,Duration,EndFreq);

%Save generated signal to wave file
wavwrite(OutSignal,SampleRate,32,OutputFile);

You can also play the signal out to the soundcard directly but it depends on if your computer will recognize the command(soundsc). soundsc(OutSignal,SampleRate);