Trying to implement floating potential
These things are never easy.
This commit is contained in:
parent
8eab3b5610
commit
c39e9ab3fc
5 changed files with 38 additions and 27 deletions
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue