wiki:AstroBearProjects/resistiveMHD

Version 24 (modified by Shule Li, 12 years ago) ( diff )

Resistivity

The resistive equation can be written as:

The magnetic diffusivity eta is a function of temperature as we all know.

Now for the first equation, what if we want to include the temperature dependence into the code? From the next section, you can see that when a field configuration in equilibrium is subject to strong diffusion, usually heating would occur and surppress the local resistivity and thus the diffusivity. By expanding the first equation, we have the form:

Now the second term depends on all of the three components of B. So we end up with equations in which the time variance of Bx, By and Bz depend on each other.

So the coefficient array is thus no longer a tri-diagonal matrix. For cases where resistive speed is slow (which is usually the case), we can use explicit solver to treat the problem instead.

One may wonder if it is possible to throw away the second term on the right hand side of the diffusion equation to just let the diffusivity to vary with position but ignore its own spacial variation. This would give us a form of resistive MHD similar to that of the thermal diffusion case but with temperature dependence built in.

Unfortunately, this does not work because the diffusion equation itself has to be divergence free. Our roughest approximation, treating the resistivity as a constant satisfies the requirement as long as the divergence and the Laplacian are commutable. If we try to do the same thing to the above equation, we end up getting:

The first term on the right hand side is zero but the second term is not, especially at sharp temperature fronts where grad(T) is large.
So this approximation only works under slowly varying temperature situation.

Upon a closer look at the simulations conducted below, we can observe that the energy inside the domain does not conserve. There is a small increase of total energy during the evolution, especially for the force-free field case. This phenomenon is explained below.

In AstoBEAR, we explicitly calculate the resistivity induced current on the cell edges, following equation:

The magnetic field is represented by the aux field, which is centered on the cell faces. Its curl therefore reside on the cell edges. Here is an example on calculating the diffusive current on the x direction, notice that the red arrow is where we are calculating the diffusive current, the green arrows are where the magnetic field originally resides:

<< figure.

The actual code looks like:

<< code.

After calculating and storing jx, jy and jz of the given grid, the change of magnetic field due to diffusion can be calculated as:


In the case of AMR, we need to store the emf using function storefixupfluxes. In case of resistivity, it is simply the diffusive current. The code looks like:

<< code.

In the case of resistive MHD, the energy can be dissipated in the form of Joule heat, comparing to the infinite conductivity case, where the voltage inside the fluid is everywhere zero, and no heat is generated by the current.
If we dot the resistive induction equation with the magnetic field B, we obtain the time evolution equation for magnetic energy:



where is the magnetic energy flux caused by resistive diffusion and is the magnitude of the diffusive current.

In this equation, the S term accounts for the redistribution of magnetic energy (and thus the redistribution of total energy), and the term accounts for the loss of magnetic energy due to reconnection.
The total energy change for the resistive step is therefore:



Here the dissipation term is absent because the dissipation of magnetic energy does not change the total energy: the loss of magnetic energy is converted into thermal energy.
In the code, the energy flux as a result of magnetic diffusion needs to be calculated explicitly using:


The energy fluxes reside on the cell faces while the diffusive current reside on the cell edges. We therefore need to compute a face average of the diffusive current as well as the magnetic field components which are not normal to the face using the surrounding edges. In the last diagram, the blue arrows connected by dashed lines are what used to compute the energy flux.
The magnetic field can be updated from the diffusive currents by:


The updating of magnetic field and the calculation of the energy fluxes can be done at the same time, as in the code:

<< code.

We then call storefixupfluxes for the three energy flux components (as xflux, yflux and zflux in the code).
Finally, the energy is updated using the divergence of the energy fluxes. This finishes the diffusive process.

The resistive time scale is explicitly calculated by:


where c is the cfl number (set to be 0.5 in the code). To change the cfl number, the following line of code can be modified:

where 2d0 can be replaced by any value above 1 (for example, putting this number to 5d0 will reduce the cfl to 0.2).



Resistivity Test Problems

Sweet-Parker Problem

To investigate the Sweet-Parker problem, we introduce the following magnetic field configuration called "sheer pinch":


where in computational units we choose and .
The density profile is chosen so that the pressure equilibrium can be maintained with constant temperature.



where and . The temperature is set to be constant as 0.5.
The domain is set to be -6.4 < x < 6.4 and -12.8< y < 12.8, with fixed resolution 480 * 960. The boundaries are all open. The initial profile is plotted below:
http://www.pas.rochester.edu/~shuleli/hhc_plot.png

The initial state is in pressure equilibrium though unstable. There are two ways to generate instabilities. The first way is to artificially increase the resistivity at the center of the domain. This increase will result in a higher reconnectivity, which will eventually bend magnetic field. This creates an X point where field lines continue to come in and annihilate because of the lower field pressure at the center. The reconnection heat will drive outflows out of the X point, parallel to the direction of the sheer pinch. The box surrounding the X point where the outflows (Petschek shock) come out of is called the "Sweet-Parker Box". The following diagrams show how increased resistivity at the center of a sheer pinch drives Petschek shock.
http://www.pas.rochester.edu/~shuleli/multi_test/resistive_instab.png

The flow pattern for our setup is shown in the following plot:

http://www.pas.rochester.edu/~shuleli/hhc_flowpattern.png

The 2-D mach number plot is shown below:

http://www.pas.rochester.edu/~shuleli/hhc_mach.png

To test Sweet-Parker problem in AstroBEAR, we .

The following figure shows the Petschek shock from a reconnection spot at the center. Colored variable is the kinetic energy in log scale, magnetic field is illustrated by white lines.
http://www.pas.rochester.edu/~shuleli/multi_test/sp1_0020.png
A movie with 2-level AMR:
​http://www.pas.rochester.edu/~shuleli/multi_test/spmovie.gif open movie

The second way to perturb the sheer pinch is to put in a sinusoidal perturabtion on magnetic field:




where Bp is the perturbation amplitude and the wave number:
.
This perturbation creates periodical X points and O points, which leads to bright and dark spots of magnetic pressure. Material flow into the dark spots as a result of pressure imbalance, which creates periodical dense "islands". The growth rate and the size of the "islands" depend on resistivity and the strength of the perturbation.

http://www.pas.rochester.edu/~shuleli/multi_test/mihr_0180.png

To watch a full movie, ​click here

Notice that in our island formation problem, the perturbation is anti-symmetric about the center. So the density pattern is also anti-symmetric. It is trivial to use a symmetric perturbation in order to obtain a symmetric island pattern.

Attachments (3)

Download all attachments as: .zip

Note: See TracWiki for help on using the wiki.