puissance.py finalized
This commit is contained in:
parent
cfe815ef6e
commit
524623e0cd
10
puissance.py
10
puissance.py
|
@ -1,7 +1,6 @@
|
|||
import math
|
||||
import numpy as np
|
||||
# import matplotlib.pyplot as plt
|
||||
|
||||
import struct
|
||||
|
||||
#"C:\Users\quent\OneDrive\Bureau\ENSC\TransD\Framboisier\02400001.TXT"
|
||||
|
@ -17,8 +16,11 @@ temps = periode * taille
|
|||
resultat = np.zeros(taille)
|
||||
for i in range(taille):
|
||||
resultat[i] = f.readline() #on sait que chaque ligne corespond à une mesure
|
||||
f.close()
|
||||
resultat*=resultat
|
||||
res = 0
|
||||
aire = 0
|
||||
for i in range(taille-1):
|
||||
res += (resultat[i]+resultat[i+1]) / 2 * periode
|
||||
print(res)
|
||||
aire += (resultat[i]+resultat[i+1]) / 2 * periode
|
||||
f = open("puissance.txt" ,"a")
|
||||
f.writelines(str(aire)+"\n")
|
||||
f.close()
|
Loading…
Reference in a new issue