Small set of corrections to the tag v2.5. Includes changes to python scripts to plot data. Includes new 'fast' setup conditions that allow to output cases in an hour or so with still a good CFL condition and grid resolution.
14 lines
288 B
Python
14 lines
288 B
Python
import pandas
|
|
|
|
def read(filename):
|
|
# Get time
|
|
df = pandas.read_csv(filename)
|
|
time = df['t (s)'].to_numpy()
|
|
n = df['n (m^-3)'].to_numpy()
|
|
u = df['u (m s^-1)'].to_numpy()
|
|
T = df['T (eV)'].to_numpy()
|
|
Zinj = df['Zinj'].to_numpy()
|
|
|
|
return time, n, u, T, Zinj
|
|
|
|
|