blob: 6fa0695c73c5d080ac78cfddfb48a9c27af4d0a6 (
plain)
1
2
3
4
5
6
7
8
9
|
//Ex:8.26
clc;
clear;
close;
nt=0.18;// total efficiency
Eg=1.43;// band gape energy eV
V=2.5;// appied voltage in volt
n_ex=(nt*(Eg/V))*100;// external efficiency
printf("The external efficiency =%f %%", n_ex);
|