Update Fichier_one-markdown.md

parent 1ddf9ff1
......@@ -29,4 +29,37 @@ semiconducteurs en fonction du paramètre de maille
2. Schématisation des bandes du GaN au voisinage de k = 0 [16]
3. Paramètres de maille a et c des nitrures d’éléments III
` MPAIP`
\ No newline at end of file
` MPAIP`
```
import numpy as np # Lib pour faire les calculs
from scipy.optimize import curve_fit # La fonction qui fitte
import matplotlib.pyplot as pl
import scipy as sp
from matplotlib import cm
from scipy import interpolate
data= np.loadtxt('Datascht.txt', delimiter='\t', usecols=(0,1))
v= data[:,0]
print(v)
C= data[:,1]
print(C)
#M= C*2
#print(M)
#F= 1/M
#print(F)
#pl.plot(v,F)
f=interpolate.interp1d(v,C)
v1=np.linspace(0.5,14.6,num=20000)
C1=f(v1)
courbe=pl.plot(v,C,'yo',v1,C1,'b-')
font={'fontname':'Times New Roman','color':'b','fontweight':13}
pl.xlabel('Tension(V)')
pl.ylabel('Capacité(c)')
pl.title('caractéristique capacité-tension de la jonction Schottky fournie')
pl.legend(courbe,('courbe expérimentale','courbe théorique'))
```
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment