Free views, likes and subscribers at YouTube. Now!
Get Free YouTube Subscribers, Views and Likes

Testing UV-cure resin with glow in the dark pigment.

Follow
bigclivedotcom

Having been inspired by the coasters on thingiverse designed by Timberwolf0810 I decided to try flowing resin into the recessed pattern in one. I thought the pattern might be a bit detailed, and was concerned that twopart resin might start gelling before it had all been encouraged into the detailed areas, so I measured one of his coasters and redesigned it to match with some chunky recesses in a shape with dams designed for controlled resin flow and multiple batches.

Then I thought about my small bottle of UV cured resin and thought it might give more time for getting the resin into details before choosing to cure it with light. I went on eBay and found some bigger bottles of UV cured resin intended for casting small objects.

To see how it would work I mixed in some eBay glow in the dark Strontium Aluminate powder from China and instead of using the little UV flashlight/torch that came with the resin I chose to use another eBay gadget, a USB rechargeable UV nail varnish activator. It works well and has a built in timer.

The result is pretty good. It does help to chase the resin around with a low power hot air gun, but that isn't essential as it has as much time as you want to flow into every crevice. The hot air did help bring bubbles up to the surface and pop them.

Note that it does cure on the exposed surface first. Putting it in sunshine or daylight to finish curing inside may be a good idea.

If you enjoy these videos you can help support the channel with a dollar for coffee, cookies and random gadgets for disassembly at:
http://www.bigclive.com/coffee.htm
This also keeps the channel independent of YouTube's advertising algorithms allowing it to be a bit more dangerous and naughty.

Here's the script for making one of these coasters in openscad.

//RESINFILL COASTER
$fn=100;
difference(){
union(){
//bottom plate
translate([0, 0, 1])
cylinder(h=3,d1=94,d2=100);
//raised lip section.
translate([0, 0, 2])
cylinder(h=3,d1=100,d2=100);
}
//Inner core.
translate([0,0,2])
cylinder(h=4,d1=94,d2=100);
//recessed patterns
//central disk
translate([0,0,0])
cylinder(h=3,d1=15,d2=15);
//six sub disks and radials
for (i=[0:60:300])rotate([0, 0, i]){
translate([30,0,0])
cylinder(h=3, d1=15, d2=15);
translate([21,2,0])
cube([20,4,3]);
}
}

posted by rannsama4v