Programs and data files for compare all equations against a measured
data file and for finding the best fit for a requested inductance.

Source Code

bestind.c    Exhaustive search for best solution.
cmdline.c    Command line parsing for indcutor.
compare      Linux executable.
compare.c    Main program for compare.
compare.exe  32 bit Windows executable.
compare.h    Prototypes, data structures for compare.
equations.c  Current known equations for both programs.
equations.h  Prototypes for equations.c.
inductor     Linux executable for inductor.
inductor.c   Main program for inductor.
inductor.exe 32 bit Windows executable of inductor.
inductor.h   Prototypes, structures for inductor.
Makefile     Linux and Microsoft Makefile.
readind.c    Read inductor csv files for compare.
wire.c       What we know about wire gauges.

Data Files
all22.csv    Measure data for all #22 gauge coils.
all.csv      All measured data for coils > 0.5 uH.
cspacing.csv Fixed spacing #22 gauge coils.
turntest.csv Fixed spacing/diameter #22 gauge coils.


Windows:
  Edit Makefile, uncomment the Windows section and comment out the Linux
  section per its instructions. In cmd window:

   vcvars32
   make
   make install

  Puts the executables compare.exe and inductor.exe in c:\local

Linux:
   make
   sudo make install

   Puts the executables compare and inductor in /usr/local/bin.
