Trying to implement floating potential

These things are never easy.
This commit is contained in:
Jorge Gonzalez 2024-09-27 17:56:03 +02:00
commit c39e9ab3fc
5 changed files with 38 additions and 27 deletions

View file

@ -8,8 +8,9 @@ def read(filename):
df = pandas.read_csv(filename,skiprows=2)
x = df['r (m)'].to_numpy()
phi = df['phi (V)'].to_numpy()
E = df['E (V m^-1)'].to_numpy()
n_e = df['n_e (m^-3)'].to_numpy()
return time, x, phi, n_e
return time, x, phi, E, n_e