Vacuum Chamber WIN

27 02 2009

 

Introducing the Prometheus Fusion Perfection Vacuum Research Chamber:

Here is the auction page.





Commercial Space

26 02 2009

Whenever I tell people about this project, I invariably get the question

“are you building this thing in your apartment?”

Now I can answer NO.

Still working out the details, but it looks like my friend Stuart is going to sublet me space in his machine shop to actually build the reactor. Stuart engineers and builds robots for NASA, is absolutely brilliant with fabrication, and is one cool individual.

Just being there will help me succeed. Did I mention it’s incredibly well equipped?

I’m excited. I feel like I really have a shot at this.





Going all the way

24 02 2009

Yesterday, I told my boss at the day job that I’m going fulltime on prometheus fusion perfection starting May 2009. 

Fuck the recession. I’m doing this. 

Man that feels good.





Wiring Diagram

22 02 2009

So I’m working on an algorithm to come up with a wiring diagram for the dodecahedral core. It’s more complicated than just wiring up the 12 coils in series. This is would only magnetically protect 12 of the 30 connecting joints. Ideally each join would get one pass of superconducting cable. A picture to meditate on:

dodec_net

 

Lets start by making some methods to traverse the net. Currently I have this functionality:

 

 

Geometry::Dodecahedron.faces.first

=> [Vector[1, 1, 1], Vector[1, 1, -1], Vector[0.618033988749895, 1.61803398874989, 0], Vector[1.61803398874989, 0, 0.618033988749895], Vector[1.61803398874989, 0, -0.618033988749895]]

So I can easily iterate through the the faces, and I get the vertices of that face unordered. The first challenge is to order these collections of vertices so that you traverse the face clockwise simply by iterating the collection.




Vacuum Chamber

22 02 2009

I’m watching this auction for a vacuum chamber. It weighs 653Kg (1440Lbs). Big and Heavy. I checked fedex rates, it would cost a minimum of $2,000 to ship this beast. More than the chamber. Maybe it can be uhauled for less: Road Trip.

MSimon, this thing is near you.





Chassis Cutaway

22 02 2009

I built this cutaway version of the chassis so we can do a fit and finish test with superconducting cable without spending a wad of money. 

cutout





New Arrivals

22 02 2009

Just in: An eeePc and replacement water pumps for the laser from Hong Kong. I got the eeePc because I wanted a dedicated Ubuntu machine. I couldn’t get Ubuntu installed on my old mac. I’m going to see if I can now get the reprap host software running. Also going to try installing SciLab.

eeepc

 

recursive





Twitter

21 02 2009

I’m on twitter: famulusfusion





Minimally Sufficient

21 02 2009

So the goal of this first machine is only to achieve first fusion. This could mean a single solitary neutron in a detector.

Towards that end I need to make calculations for a minimally sufficient design, so it’s _expected_ to produce fusion. Off the top of my head these are some of the relevant inputs:

radius of the core
ampturns of each coil
current going to the electron emitters
positive potential of the magrid skin
radius of the vacuum chamber
quality of the vacuum

I need to make calculations to take those inputs and calculate:

well depth
B-field strength
sufficient for fusion?

OK. So where to start? The WB6 report. Starting on page 4

Its ability to trap electrons inside the device is measured by an overall trapping factor, called Gmj, which is the ratio of the electron lifetime in the machine environment with B fields turned on to that with no B fields.  This overall e- current trapping factor is composed of two terms; one due to internal trapping by diamagnetic electron confinement leading to cusp confinement, and one due to electron trapping/flow through coil corner positions, which act somewhat like line cusps.

The first of these represents the effect of B field expansion under electron pressure, and is called the Wiffle-Ball factor Gwb.For a truncated cube geometry (used in all machines tested to date) this factor is Gwb  = (BR)^2/110Eo, where B is the magnetic field strength (in G) on-axis of  the main faces, R is the radius of the device (in cm) from its center to the midplane of the field coils, and Eo is the depth of the electric potential well (in eV) resulting from the injection of the energetic electrons that drive the device.  Typically the well depth is about 0.7-0.9 of the electron injection energy (Ei), depending on the exact geometry of the device and of the injection system.  In WB-6 well depth was about 0.8 of injection energy.

So there are some unknowns for a truncated dodecahedral configuration. I’m thinking a good place to start would be to express these calculations in ruby for the truncated cube, just to get my head around the ideas. Ouch my head hurts. 

 

So first we need to convert our magnetic field from Ampere-turn to Gauss. But first I want to understand Ampere-turn better:

The ampere-turn (AT) is the MKS unit of magnetomotive force

Lets take a closer look at magnetomotive force:

Magnetomotive force is any physical cause that produces magnetic flux. If a magnetic field (measured in teslas) passes through a cross sectional area A (measured in square meters), it produces a flux given by the equation MMF×A = flux (in webers).

and

Magnetic flux, represented by the Greek letter Φ (phi), is a measure of quantity of magnetism, taking into account the strength and the extent of a magnetic field. The SI unit of magnetic flux is the weber (in derived units: volt-seconds), and the unit of magnetic field is the weber per square meter, or tesla.

OK. One tesla is equal to 104 gauss. So we need to go from  Ampere-turn to Tesla.

The tesla (symbol T) is the SI derived unit of magnetic field B (which is also known as “magnetic flux density” and “magnetic induction”). The tesla is equal to one weber per square meter.

Now if I can keep these all in my head at once, I can connect them together. 

What is the relationship between magnetomotive force and  magnetic flux? How do I go from  Ampere-turn to webers?

magnetomotive force =  magnetic flux *  reluctance of the magnetic circuit. So now I need to determine the reluctance of the magnetic circuit.

Electromagnetic theory… whoa. 

Magnetic reluctance or “magnetic resistance”, is analogous to resistance in an electrical circuit (although it does not dissipate magnetic energy). In likeness to the way an electric field causes an electric current to follow the path of least resistance, a magnetic field causes magnetic flux to follow the path of least magnetic reluctance. It is a scalarextensive quantity, akin to electrical resistance.

Ok. MSimon directed me to this page which has more direct calculations. So for a loop of R = 0.03462 M and 400 ampturns, we get a a B field of 0.007259 T or 72.59601 G. This page raises the question: Are we interested in the B-field at the center of the current loop, or on the axis of the current loop (the center of the core)? I would guess the center of the core, since that’s where the electrons are. At this location we have B-field = 0.00046324 T or 4.632465 G. MSimon also mentioned that the WB6 had a B-field of 0.1 T, which would require the 14X the coil I currently have coming. This assumes we are measuring the B-field at the center of the coil, and not the center of the core. Correct? 

I took the javascript from this page and converted it to ruby, and checked the results against the page:

 

u = 2*Math::PI * (10.0**-7) * ((Unit(“tesla”) * Unit(“m”))/Unit(“ampere”))

puts b_field =  u*(ic*turns)/(torus_radius >> Unit(“meter”))

 

This gives us a B-field of 0.0072596 T

 

Gwb  = (BR)^2/110Eo, where B is the magnetic field strength (in G) on-axis of  the main faces, R is the radius of the device (in cm) from its center to the midplane of the field coils, and Eo is the depth of the electric potential well (in eV) resulting from the injection of the energetic electrons that drive the device.

Before I could continue I needed to define electronvolt in ruby-units. Fortunately this is pretty easy:

 

class Unit < Numeric

  @@USER_DEFINITIONS =

    {‘<eV>’=>[%w{eV electron_volt electronvolt},  1.60217653e-19, :energy, %w{joule} ]}

  Unit.setup

end

 

Now we have an expression in ruby for the gwb:

 

puts gwb = (((b_field >> Unit(‘G’)) * (torus_midplane_radius >> Unit(‘cm’)))**2) / 110*eo

So for the decawell unit running at 1000 eV potential, we get this gwb with a rather comical unit:
3.02178e+06 eV*cm^2*G^2

 





Prep

21 02 2009

Here is a 1 axis stepper motor robot (it’s just the x-axis of a reprap). I’ll use this to do a laser welding test… a straight line butt joint. This makes it easy to control speed and distance with Gcode.

1axis








%d bloggers like this: