From 742089dc64254590308b2d3f128133eadd479484 Mon Sep 17 00:00:00 2001 From: b6458b4cfaa1d19a2ed7a035b531ed55 Date: Wed, 22 Apr 2020 19:24:11 +0000 Subject: [PATCH] Update Fichier_one-markdown.md --- Fichier_one-markdown.md | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/Fichier_one-markdown.md b/Fichier_one-markdown.md index 3dcb77a..f41002b 100644 --- a/Fichier_one-markdown.md +++ b/Fichier_one-markdown.md @@ -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 -- 2.18.1