Potencia Optica
Publicado por julio salcedo (2 intervenciones) el 16/08/2013 01:49:49
Tengo un script que no me da respuesta:
____________________________
cuando el programa pide datos, se deben ingresar los siguientes:
Radiative recombination time: 25
Non-radiative recombination time: 90
Velocity of light in free space: 3e08
Planks constant: 6.624e-34
Charge of one electron: 1.602e-19
Drive current: 35e-03
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
%Potencia interna generada en el dispositivo LED
clear all;
close all;
clc;
tuo_r = input('Enter the radiative recombination time in nano seconds: ');
tuo_nr = input('Enter the non-radiative recombination time in nano seconds: ');
C = input('Enter the velocity of light in free space: ');
%ppp
h = input('Enter the value of Planks constant: ');
q = input('Enter the value of charge of one electron: ');
I = input('Enter the value of Drive current in Amperes: ');
Etta_internal = 1/(1+(tuo_r/tuo_nr));
n=1;
for Lambda=800:50:1600
Pinternal(Lambda+50) = Etta_internal*(h*C/q)*(I/Lambda);
PO= Pinternal*1000;
Pot(n)=PO;
n=n+1;
disp('Pot. Ópt. entreg. LED en mW. para %d nm. = %f ',Lambda, PO);
end
Lambda=800:50:1600
plot(Lambda,Pot,'b--','linewidth',3);
title('POTENCIA INTERNA GENERADA EN EL DISPOSITIVO LED');
xlabel('Longitud de Onda (nm.)');
ylabel('Potencia Óptica (mW.)');
grid;
legend('CURVA Long. Onda vs. Pot. Ópt.');
____________________________
cuando el programa pide datos, se deben ingresar los siguientes:
Radiative recombination time: 25
Non-radiative recombination time: 90
Velocity of light in free space: 3e08
Planks constant: 6.624e-34
Charge of one electron: 1.602e-19
Drive current: 35e-03
Valora esta pregunta


0