Two-stream instability with UPIC-ES
Before anything else, we need to change to the stored notebook's directory, which contains input files for the PIC simulator.
cd /notebooks/two-stream
def __interact(f,**kwargs): print("Interaction not implemented, setting...") for name,val in kwargs.items(): if isinstance(val, bool): nval = True elif isinstance(val, str): nval = val elif isinstance(val, int): nval = val//2 elif isinstance(val, float): nval = val/2 elif isinstance(val, tuple): if False in [isinstance(x, int) for x in val]: nval = (val[1]-val[0])/2 else: nval = (val[1]-val[0])//2 elif isinstance(val, list): nval = val[0] elif isinstance(val, ipywidgets.widgets.interaction.fixed): nval = val.get_interact_value() else: nval = val # punt and hope for the best print(name,"=",nval) return f(nval) import ipywidgets ipywidgets.interact = __interact
1. F. S. Tsung & K. G. Miller
A two-stream instability occurs when two species (either the same or different) in a plasma have equal but opposite drift velocities, . Depending on the physical parameters, modes can then arise which are unstable and grow exponentially.
To begin, we derive the general dispersion relation for these instabilities for two different (but not necessarily identical) species with two different drift velocities.
2. General dispersion relation
Consider two cold species, which we will generically label species 1 and species 2, each with constant drift velocity and and fluctuating velocity and , respectively. The linearized Navier-Stokes equation for each species is then
In addition, the continuity equation for each species is
Poisson's equation then yields
If we assume a plane wave solution of the form , then the dynamical equation turns into
Similarly, the continuity equation can be rewritten as
If we substitute this expression for into Poisson's equation, after rearranging we find that
Recognizing that , the term in parenthesis is then our dielectric constant. Setting this equal to zero gives the dispersion relation as
This equation can be used for various types of two-stream instabilities, for which the parameters and can be adjusted. Now let us consider the case where the two species are identical with opposite drift velocities of the same magnitude.
3. Two-stream instability
If the two species in question are simply counter-propagating electron beams of speed with no temperature, then we can rewrite the above dispersion relation. Let , , and define and . This gives a dispersion relation of
Solving the dispersion relation yields
However, we desire imaginary to have a growing mode, so solving for when gives
The fastest-growing mode occurs when , or . The dispersion relation is plotted in the following figure. The resonance condition, or the value for the most unstable mode number is therefore
From the above equation, one can see that the growth rate follows a universal curve in units of and . For the rest of the notebook, we will discuss the system in these units, but first we will briefly go over the units of the simulation code UPIC-ES.
4. Simulations with a Particle-in-Cell Code
#Edit some things below
In this project, you will be simulating plasmas with the electrostatic code UPIC-ES. The normalization of the code is , and the grid size . Therefore, velocity is measured in units of [ ].
Each plasma electron is initialized with positions (only in x) such that the density is uniform. The ions are initialized at the same positions but they have an infinite mass. Each electron is also initialized with velocities ( , , ) or momentum ( , , ) from a Maxwellian in each direction. The particles then begin to move in the self-consistent fields that their charge density produce, from the Poisson's law:
You will be looking at plots of the electrostatic potential, .
4.1. The following lines must always be executed before running anything else.
Reminder: Hit Shift+Enter to run a cell, or select the cell and click on the "Run" button in the top menu bar
import sys # comment out in main version sys.path.insert(0, '/home/jovyan/analysis') # comment out in main version
import osiris import numpy as np import matplotlib.pyplot as plt from mpmath import * plt.rc('font',size=24,family="serif") %matplotlib inline
5. Case 0 (prelude): Two streams with the same velocity ( )
dirname = 'onestream' osiris.run_upic_es(rundir=dirname,inputfile='1stream.txt')
In this case, there is no instability. Running with only one species at the same drift velocity results in a simple shift of the electron-plasma wave dispersion relation by . Thus instead of , the dispersion relation is simply Doppler-shifted plasma waves, i.e. , where the factor of comes from the fact that there are two cold beams and .
After the simulation is finished, plot the dispersion relation (run the next cell).
- Does the dispersion relation follow what we expected?
- What is the slope of the lines?
dirname = 'onestream' v0=3 nk=100 k_array=np.linspace(0,2,num=nk) omega_plus=np.zeros(nk) omega_minus=np.zeros(nk) # plt.figure(figsize=(10,10)) for ik in range(0,nk): omega_minus[ik]=-np.sqrt(2)+v0*k_array[ik] omega_plus[ik]=np.sqrt(2)+v0*k_array[ik] osiris.plot_wk_arb(rundir=dirname, field='pot',TITLE='pot',wlim=5, klim=1,plot_show=False) plt.plot(k_array,omega_plus,'b-',label='positive roots') plt.plot(k_array,omega_minus,'r.',label='negative roots') plt.legend() plt.show()
Next, plot the potential in real space and through time. Note the slant of constant slope?
- What is the slope?
- What does the constant slope imply?
dirname = 'onestream' osiris.plot_xt_arb(rundir=dirname, field='pot',tlim=[0,50])
Next, plot the phase space for the one-stream case. This should just be a thermal plasma with an offset velocity.
- Does the phase space change in time?
- Do we expect it to?
dirname='onestream' osiris.phaseinteract_upic(rundir=dirname)
Below are 3 different cases of the two stream instability. In the first example, we use the drift velocity of in UPIC-ES units. In the first example, the drift velocity is deliberately kept "high" (in comparison to other cases in this notebook) to keep the number of unstable modes small and to keep the physics simple.
6. Case 1 :
In these units, the instabilities will occur within the range of:
In this particular simulation, we are using 128 cells. Therefore, the fundamental mode number of the simulation box is:
So in this system, only modes 1-3 are unstable according to theory, with the largest having a growth rate of . The simulation runs for 80 , or 160 growth time for the most unstable modes. We try to keep the system as simple as possible for our first example.
The rest of the simulation parameters are:
- The length of the plasmas is 128 grids
- The simulation will run for a time 80 .
- The simulation uses particles.
- Beam velocity for each beam is (which provides a small amount of noise to trigger the instability).
6.1. Run the cell below to obtain the theoretical dispersion relation for this case
The instability peaks roughly at , which is roughly mode 2 of the simulation box (128 long).
The modes of the simulation box is marked as circles in the plot.
# first let's define the k-axis ################################################################ ################################################################ ## need the simulation size to make the simulation curve ################################################################ ################################################################ kmin=0 kmax=0.2 v0=9.0 nx = 128 osiris.tstream_plot_theory(v0,nx,kmin,kmax)
6.2. Run the simulation:
dirname = 'twostream-2' osiris.run_upic_es(rundir=dirname,inputfile='2stream-2.txt')
Run the cell below to look at the electrostatic potential as a function of time for the various modes in the simulation.
dirname = 'twostream-2' osiris.plot_tk_2stream(dirname,'Ex',klim=5,tlim=80,v0=9)
You can observe that the signal occurs near the modes where instability is predicted. The blue vertical line indicates where the growth rate goes to 0 (at ). There should be no instability to the right of the plot. The red vertical line indicates the location of the most unstable mode ( ).
Do the simulation results agree with theory?
What are the sources of the noise for signals whose wavenumber to the right of the BLUE line?
Next we'll look at the mode histories in greater detail, and compare the simulation data against theory.
Plot the electrostatic potential modes individually and compare their growth rate to the theoretical growth rate.
### Here we compare results against theory dirname = 'twostream-2' osiris.plot_tk_2stream_theory(dirname,'Ex',modemin=1,modemax=4,tlim=80,v0=9,init_amplitude=1e-3)
Plot the evolution of the electrostatic potential in real space.
- Is there a point in time at which the potential ceases to grow? Do you expect the field to grow without bounds or is there a physical reason for the growth to stop?
dirname = 'twostream-2' #osiris.plot_wk_arb(rundir=dirname, field='pot', TITLE='potential',wlim=4, klim=3) osiris.plot_xt_arb(rundir=dirname, field='pot' ,tlim=[0,80],xlim=[0,128])
Finally, here we visualize the evolution of the electron phase space (x,vx).
- Questions...
# Here you can see the evolution of phase space dirname='twostream-2' osiris.phaseinteract_upic(rundir=dirname)
7. Case 1(b), , no thermal fluctuations:
The instability takes thermal fluctuations from the beams and amplifies them. To demonstrate this, we will run a simulation with no thermal velocity. In this case, the fluctuation level is exactly 0 in the beginning, and the instability will stay "linear" for much longer. The simulation is identical to the first case, except:
Initial thermal velocity is 0
Double the particle number
dirname = 'twostream-quiet' osiris.run_upic_es(rundir=dirname,inputfile='2stream-quiet.txt')
Let's look at the two cases side-by-side. The quiet case is on top and the original (noisy) case is on the bottom. You can see how the instability is triggered by noise from the system. Note that, in the quiet case, the instability starts much later, and it barely reaches saturation at the end of the simulation (@ t= ). In the noisy case, the instability becomes visible much earlier, and reaches saturation by t= .
dirname = 'twostream-quiet' osiris.plot_tk_2stream(dirname,'pot',klim=5,tlim=80,v0=9) dirname = 'twostream-2' osiris.plot_tk_2stream(dirname,'pot',klim=5,tlim=80,v0=9)
Once again plot the electrostatic potential modes individually and compare their growth rate to the theoretical growth rate.
- Is the agreement better or worse than the noisy case?
### Here we compare results against theory dirname = 'twostream-quiet' osiris.plot_tk_2stream_theory(dirname,'pot',modemin=1,modemax=4,tlim=80,v0=9,init_amplitude=5e-12)
Plot the electrostatic potential through time.
- What is different from the noisy case? (How long does it take the potential to grow and saturate?)
dirname = 'twostream-quiet' #osiris.plot_wk_arb(rundir=dirname, field='pot', TITLE='potential',wlim=4, klim=3) osiris.plot_xt_arb(rundir=dirname, field='pot' ,tlim=[0,80],xlim=[0,128])
Visualize the phase space of the particles.
- What is different from the noisy case?
# Here you can see the evolution of phase space dirname='twostream-quiet' osiris.phaseinteract_upic(rundir=dirname)
8. Case 2:
To increase the number of unstable modes with UPIC, there are two ways to go. One way is to increase the system length, this will improve the resolution in space and increase the number of unstable modes within the same interval. Another way to go is to decrease the drift velocity, because the instability occurs within the range of , decreasing will increase the number of unstable modes in the same range of .
In the previous simulation, modes 1-3 are unstable. In this case, we double the size of the simulation and reduce the drift velocity by a factor of 1.8 (from 9 to 5). So in this case, modes 1-11 are unstable w.r.t. the two-stream instability. In this example, we will see how well the simulation agrees with theory when there are a large number of unstable modes.
The simulation parameters are:
- The length of the plasmas is 256 grids
- The simulation will run for a time 60 , stepsize is 0.2 , so the simulation has 300 timesteps.
- The simulation uses particles.
- Beam velocity for each beam is (which provides a small amount of noise to trigger the instability).
8.1. First plot the theoretical dispersion relation below:
Notice the increased number of system modes for this case.
################################################################ ################################################################ ## need the simulation size to make the simulation curve ################################################################ ################################################################ nx=256 kmin=0 kmax=0.5 v0=5 osiris.tstream_plot_theory(v0,nx,kmin,kmax)
Run the simulation
dirname = 'twostream' osiris.run_upic_es(rundir=dirname,inputfile='2stream.txt')
Run the cell below to look at the electrostatic potential as a function of time for the various modes in the simulation.
- How does the agreement compare with that of Case 1?
dirname = 'twostream' osiris.plot_tk_2stream(dirname,'pot',klim=5,tlim=60,v0=5)
Plot the electrostatic potential modes individually and compare their growth rate to the theoretical growth rate. The most unstable mode is mode 7.
### Here we compare results against theory dirname = 'twostream' osiris.plot_tk_2stream_theory(dirname,'pot',modemin=1,modemax=12,tlim=60,v0=5,init_amplitude=6e-5)
Plot the electrostatic potential through time.
- What do you notice about the fluctuations in space compared to Case 1?
dirname = 'twostream' #osiris.plot_wk_arb(rundir=dirname, field='pot', TITLE='potential',wlim=4, klim=3) osiris.plot_xt_arb(rundir=dirname, field='pot' ,tlim=[0,60])
Visualize the phase space of the particles.
# Here you can see the evolution of phase space dirname='twostream' osiris.phaseinteract_upic(rundir=dirname)
8.2. Future work
The above notebook gives some examples of the 2-stream instability. To explore the instability further, we suggest that you try the following:
- Change the simulation box size to change the resolution in
- Change the beam velocity (VX0 and VDX in the input deck)
- Make the simulation time (TEND) longer to look at the nonlinear stages of the instability