Loi d'Ohm généralisée, mythe ou réalité

Loi d'Ohm généralisée, mythe ou réalité

par Labgaa Mohamed Chakib,
Nombre de réponses : 5

Bonjour, 

Je pense donc je U = Z x I 

En réponse à Labgaa Mohamed Chakib

Re: Loi d'Ohm généralisée, mythe ou réalité

par Harbulot Teddy,

fc = 300e3  # Fréquence porteuse en Hz

y_demod = y * np.cos(2 * np.pi * fc * t)

En réponse à Harbulot Teddy

Re: Loi d'Ohm généralisée, mythe ou réalité

par Harbulot Teddy,
plt.plot(t, y_demod_filtered)
plt.xlabel("Temps (s)")
plt.ylabel("Amplitude démodulée")
plt.title("Signal démodulé")
plt.grid()
plt.show()

y_demod_filtered = filtfilt(b, a, y_demod)
En réponse à Harbulot Teddy

Re: Loi d'Ohm généralisée, mythe ou réalité

par Harbulot Teddy,
from scipy.signal import butter, filtfilt

b, a = butter(N=4, Wn=200, fs=1/T_s, btype='low')
y_filtered = filtfilt(b, a, y)
En réponse à Labgaa Mohamed Chakib

Re: Loi d'Ohm généralisée, mythe ou réalité

par Soltani Ahmed Mehdi,
import numpy as np
import matplotlib.pyplot as plt
from scipy.signal import butter, lfilter



g= np.load("HAE705.npy")
y = g/10
fS = 1e6
t = np.arange(len(y)) / fS


#plt.figure()
#plt.plot(t, y)
#plt.xlabel("temps")
#plt.ylabel("amplitude")
#plt.show()

f0 = 300e3
fc = 200

cos = np.cos(2*np.pi*f0*t)
sin = np.sin(2*np.pi*f0*t)

I = y * cos
Q = y * sin

fc_norm = fc / (fS / 2)
b, a = butter(1, fc_norm, btype='low')

I_filtre = lfilter(b, a, I)
Q_filtre = lfilter(b, a, Q)

phi1= np.arctan2(Q_filtre,I_filtre)
phi2= np.unwrap(phi1)




plt.figure()
plt.plot(t, phi2)
plt.title("phase instentané phi2(t)")
plt.xlabel("temps (s)")
plt.ylabel("phase (rad)")
plt.show()

freq = np.gradient(phi2) / (2 * np.pi) * fS

for _ in range(4):
freq = lfilter(b, a, freq)

plt.figure()
plt.plot(t, freq)
plt.title("freq(t)")
plt.xlabel("temps (s)")
plt.ylabel("frequence (Hz)")
plt.show()

freqences = [...]
plataux = [...]
val_assci = np.round((plataux - offset) / scale)

message = "".join([chr(int(val)) for val in ascii_values])

print("Decoded message:", message)