Spaces:
Running
Running
frances-dean
commited on
Commit
•
7a52b00
1
Parent(s):
41e2fa1
Update app.py
Browse files
app.py
CHANGED
@@ -839,8 +839,8 @@ def lvad_plots(Rm, Ra, Emax, Emin, Vd, Tc, start_v, beta, loop_simulated=True):
|
|
839 |
start = (N-2)*60000
|
840 |
end = (N)*60000
|
841 |
if loop_simulated:
|
842 |
-
line1, = ax.plot(Vlv0[start:
|
843 |
-
point1 = ax.scatter(Vlv0[start:
|
844 |
line2, = ax.plot(Vlvs[start:(start+1)], Plvs[start:(start+1)], lw=1, color=(78/255, 192/255, 44/255), label=f"LVAD, ω(0)= {round(w0,2)}r/min")
|
845 |
point2 = ax.scatter(Vlvs[start:(start+1)], Plvs[start:(start+1)], color=(78/255, 192/255, 44/255), s=5)#, label='End Diastole')
|
846 |
#point = ax.scatter(volumes[start:(start+1)], pressures[start:(start+1)], c="b", s=5, label='End Systole')
|
|
|
839 |
start = (N-2)*60000
|
840 |
end = (N)*60000
|
841 |
if loop_simulated:
|
842 |
+
line1, = ax.plot(Vlv0[start:end], Plv0[start:end], lw=1, color='b',label='No LVAD')
|
843 |
+
point1 = ax.scatter(Vlv0[start:end], Plv0[start:end], c="b", s=5)#, label='End Diastole')
|
844 |
line2, = ax.plot(Vlvs[start:(start+1)], Plvs[start:(start+1)], lw=1, color=(78/255, 192/255, 44/255), label=f"LVAD, ω(0)= {round(w0,2)}r/min")
|
845 |
point2 = ax.scatter(Vlvs[start:(start+1)], Plvs[start:(start+1)], color=(78/255, 192/255, 44/255), s=5)#, label='End Diastole')
|
846 |
#point = ax.scatter(volumes[start:(start+1)], pressures[start:(start+1)], c="b", s=5, label='End Systole')
|