blob: fb54a3a3a6d5a8ec13122b4fe26d112351a76889 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Example 9.7.a;//responsivity
clc;
clear;
close;
C=3*10^8;//SPEED of light in meter per second
n=0.50;//quantum efficiency
h=900;//wavelength in nano meter
ht=6.62*10^-34;//plank constt.
R=((n*h)/1248);//responsivity
disp(R,"Responsivity is in ampere per watt")
|