diff options
Diffstat (limited to '3763/CH10/EX10.4/Ex10_4.sce')
-rw-r--r-- | 3763/CH10/EX10.4/Ex10_4.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3763/CH10/EX10.4/Ex10_4.sce b/3763/CH10/EX10.4/Ex10_4.sce new file mode 100644 index 000000000..8a8dbcd0e --- /dev/null +++ b/3763/CH10/EX10.4/Ex10_4.sce @@ -0,0 +1,17 @@ +clear +// +// +// + +//Variable declaration +eta=0.6 //quantum efficiency +q=1.6*10**-19 //charge(coulomb) +lamda=1.3*10**-6 //lamda(m) +h=6.625*10**-34 //plancks constant(J s) +c=3*10**8 //velocity of light(m/s) + +//Calculation +R=eta*q*lamda/(h*c) //responsibility(A/W) + +//Result +printf("\n responsibility is %0.3f A/W",R) |