So, code is working, this case reproduce a Diko's peak with Poisson equation by changing the boundary conditions over time.
17 lines
407 B
Python
17 lines
407 B
Python
import pandas
|
|
|
|
def read(filename):
|
|
# Get time
|
|
df = pandas.read_csv(filename,skiprows=0,nrows=1)
|
|
time = df['t (s)'].to_numpy()[0]
|
|
|
|
df = pandas.read_csv(filename,skiprows=2)
|
|
x = df['r (m)'].to_numpy()
|
|
n_i = df['n_i (m^-3)'].to_numpy()
|
|
u_i = df['u_i (m s^-1)'].to_numpy()
|
|
T_i = df['T_i (eV)'].to_numpy()
|
|
Z = df['Zave'].to_numpy()
|
|
|
|
return time, x, n_i, u_i, T_i, Z
|
|
|
|
|