puissance_max.py

Created by elodie-gamot

Created on October 04, 2021

287 Bytes

Déterminer graphiquement la puissance maximale de fonctionnement d’une cellule photovoltaïque


from math import *
from matplotlib.pyplot import *

I=[2.67,2.59,2.43,2.23,2.16,1.94,1.54,1.05,0.57,0.36,0.05]
U=[0.016,0.063,0.128,0.191,0.209,0.245,0.286,0.317,0.339,0.347,0.356]
P=[]

for k in range(len(I)):
  P.append(I[k]*U[k])

  
plot(I,P,'red')
grid()
show()