The evolution of kinetic entropy and its connection to energy transfer in fundamental processes
Load all of the data required for analyzing entropy and other dissipation parameters for a given time interval. Data is resample to the 30ms time cadence of the DES instrument.
import datetime as dt
import database
# Define the time interval
t0 = dt.datetime(2017, 7, 11, 22, 34, 0)
t1 = dt.datetime(2017, 7, 11, 22, 34, 5)
# Load data into file
file = database.load_data(t0, t1)
Compare entropy measures to other indicators of energy dissipation.
import datetime as dt
import plots
# Define the time interval
t0 = dt.datetime(2017, 7, 11, 22, 34, 0)
t1 = dt.datetime(2017, 7, 11, 22, 34, 5)
# Create the plot
plots.dissipation_measures(t0, t1)
Plot (and create, if not already created) a Maxwellian distribution Look-Up Table (LUT).
import datetime as dt
import plots
# Define the time interval
t0 = dt.datetime(2017, 7, 11, 22, 34, 0)
t1 = dt.datetime(2017, 7, 11, 22, 34, 5)
# Create the plot
plots.max_lut('mms3', 'brst', 'des-dist', t0, t1)
Determine the error between the measured, equivalent maxwellian, and optimized equivalent Maxwellian distribution fuctions. Note: this will take a minute or two.
import datetime as dt
import plots
# Define the time interval
t0 = dt.datetime(2017, 7, 11, 22, 34, 0)
t1 = dt.datetime(2017, 7, 11, 22, 34, 5)
# Create the plot
plots.max_lut_error('mms3', 'brst', 'des-dist', t0, t1)
Determine the error between the measured, equivalent maxwellian, and optimized equivalent Maxwellian distribution fuctions. Note: this will take a minute or two.
import datetime as dt
import plots
# Define the time interval
t0 = dt.datetime(2017, 7, 11, 22, 34, 0)
t1 = dt.datetime(2017, 7, 11, 22, 34, 5)
# Create the plot
plots.relative_entropy('mms3', 'brst', 'des-dist', t0, t1)