I'm stupid and I deleted the previous repository...

So, code is working, this case reproduce a Diko's peak with Poisson
equation by changing the boundary conditions over time.
This commit is contained in:
Jorge Gonzalez 2024-09-26 17:58:45 +02:00
commit 8eab3b5610
13 changed files with 821 additions and 0 deletions

15
scripts_python/readPhi.py Normal file
View file

@ -0,0 +1,15 @@
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()
phi = df['phi (V)'].to_numpy()
n_e = df['n_e (m^-3)'].to_numpy()
return time, x, phi, n_e