1.Derive the dispersion relation for low frequency plasma waves at parallel propagation in ideal MHD.

We assume $\mathbf{k} = k_\parallel \hat{z}$, and $\mathbf{B}_0 = B_0 \hat{z}$. Give the linearization of ideal MHD that:

that we have:

then we can obtain that:

and:

combine the formula (3) and (4), we can get:

we can get tow solutions, one is from the z component that:

and another one is:

2.Redo the above analysis by keeping the Hall term in the generalized Ohm’s law.

Like the procedure of Ideal-MHD, from the Maxwell equations we can obtain that:

and Generalized Ohm’s law:

so that:

with:

to get the $\mathbf{J_1}$:

put it into the momentum equation that: $\omega \rho_0 \mathbf{u_1} = i \mathbf{J}_1 \times \mathbf{B_0} + p_1 \mathbf{k}$, we have:

with the $\rho_0 = n_0 (m_i+m_e) \approx n_0 m_i$ and $p_0 = n_0 k_B T$, the z component demonstrate that:

rewrite the x, y component into the form of below:

to have a solution, the coefficient determinant must be zero, it means that:

with the $\Omega_i = \frac{e B_0}{m_i}$, $\lambda_i = \sqrt{\frac{m_i}{\mu_0 n_0 e^2}}$, we can derive that:

it can be reduced to a simpler form by consider the factorization of the trem that can’t be zero.

3.Solve the dispersion relation s obtained in Problem 2 numerically. Plot the dispersion relations and discuss the difference between the ideal and Hall MHD dispersion relations.

the figure of the dispersion is:

plasmahomework3-dispersion

the difference between the ideal MHD and Hall MHD dispersion relations is the x, y component contribute a Fast Magnetic wave which is coincident with the Alfven wave at the low frequency but the Ideal MHD has only the Alfven wave term. It has three positive solution roots for the dispersion equations that we can draw three curve to illustrate it. Besides this, we can also find a resonant phenomenon when the $\mathbf{k}$ is sufficient large. The Red dotted line is the false root because of the general division operation in solving process.

the code to plot the dispersion has been presented below:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
clear;
clc;
n0=1*10^8;
mi=1.67*10^(-27);
e = 1.6*10^(-16); B = 5*10^4*10^-9; Epsilon0 = 8.85*10^(-12); c = 3*10^8;mu0=4*pi*10^(-7);
gamma = 1;kBT = 1*e;
% wpei2 = (ni*e^2)./(Epsilon0*mi);
Omegai = (e*B)/mi;
lambdai = sqrt(mi/(e^2*mu0*n0));
% kk=0:1e-2:100;
kk = linspace(0,100,10000);
w=[];
w2=[];
w3=[];
line=[];
for k=kk
p=[1/Omegai^3,0,-(k^2*lambdai^2*(1+k^2*lambdai^2))/Omegai,k^4*lambdai^4];
p2=[1/Omegai^3,0,-(k^2*lambdai^2*(1+k^2*lambdai^2))/Omegai,-k^4*lambdai^4];
p3=[1,0,-k^2*(gamma*kBT)/mi];
omg=roots(p); w=[w,omg];
omg2=roots(p2); w2=[w2,omg2];
omg3=roots(p3); w3=[w3,omg3];
line=[line,1];
end
w11=w(1,:)./Omegai;
w12=w(2,:)./Omegai;
w13=w(3,:)./Omegai;
w21=w2(1,:)./Omegai;
w22=w2(2,:)./Omegai;
w23=w2(3,:)./Omegai;
w31=w3(1,:)./Omegai;
w32=w3(2,:)./Omegai;

%%

figure(1);
clf;
% set(gca,'LineWidth',2);
% w11, w22, w23, w32 为负根,舍弃
loglog(kk,w12,kk,w13,kk,w21,kk,w31,'LineWidth',2);
hold on;
% legend('11','12','13','21','22','23','31','32');
p1=loglog(kk,line,'k--','LineWidth',1.5);
legend(p1,'\Omega_i')
xlabel('k');
ylabel('\omega/\Omega_{i}');
title('Dispersion Relationship');

saveas(gca, '3.png');