Changed aimed.csv imput file for aimed.txt
This commit is contained in:
parent
070428663c
commit
c3c570764b
10
functions.py
10
functions.py
|
@ -221,9 +221,11 @@ def rcr(project_folder):
|
||||||
return Rc_C_Rd
|
return Rc_C_Rd
|
||||||
|
|
||||||
def barPlot(project_folder,DBP,MBP,SBP,PP,Q_avg,save_path):
|
def barPlot(project_folder,DBP,MBP,SBP,PP,Q_avg,save_path):
|
||||||
import csv
|
aimed_all = [1] #No li agrada fer append en una llista buida, no recordo perquè i segur que es pot fer millor
|
||||||
with open(project_folder+'/aimed.csv', 'r') as f:
|
f = open(project_folder+'/aimed.txt', 'r') #obrir el fitxer
|
||||||
aimed_all = list(csv.reader(f, delimiter=';'))
|
for line in f:
|
||||||
|
aimed_all = line.split() #fas una llista amb cada valor de la línia carregan-te els espais buits
|
||||||
|
del aimed_all[0] #esborrar el primer valor que has posat perquè no estigues buida la llista
|
||||||
|
|
||||||
def plot_bar(CFD,aimed,name,save_path,unit):
|
def plot_bar(CFD,aimed,name,save_path,unit):
|
||||||
labels = []
|
labels = []
|
||||||
|
@ -293,5 +295,3 @@ def barPlot(project_folder,DBP,MBP,SBP,PP,Q_avg,save_path):
|
||||||
CFD = [round(float(i),1) for i in Q_avg]
|
CFD = [round(float(i),1) for i in Q_avg]
|
||||||
aimed = [round(float(i),1) for i in aimed_all[4]]
|
aimed = [round(float(i),1) for i in aimed_all[4]]
|
||||||
plot_bar(CFD,aimed,'Q_avg',save_path,' [mL/s]')
|
plot_bar(CFD,aimed,'Q_avg',save_path,' [mL/s]')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user