John asked:
Is there any value in a programmable(manual or C/C++) power supply for anodizing?
Say Vout=20+(110*N/(255)); // N=0,1,2,3,4,…255
Giving {20,20.4, 20.8,21.2…129.6, 130}
I can also make this power limited to approximately 13W(0.10A at 130VDC)
I am not selling anything! I am just wondering if this is a worth while adventure.
As a fellow electrical and programming geek, I see the appeal of the project. But practically speaking in terms of anodizing titanium, no. The color is determined by the final voltage, and the faster you get there, the better.
Also, I use down to 8 volts on occasion. And the lower voltages are more color sensitive than the higher, so it should either be 16 bit linear, or have exponential or quadratic output, as in
vOut = (((N/64)^2 + N) *120/255) + 5 // N={0…255}
But if you were to rig an x-y table to such a supply, one could then “print” in anodized colors. However, there is a limited palette. And also one would have trouble with certain adjacent colors, and have to adjust the lateral speed to be proportional to voltage, and maybe fluid flow through the dielectric cathode, and several other engineering considerations.
As such, it becomes fun and useful. But a lot more work. Then you would be able to share it on HackADay.com or Makezine.tv or some such.
In order to make such a project marketable, one would have to write the CADD end to prevent unfulfillable designs. Artists have to have limits imposed.