diff options
Diffstat (limited to '3828/CH13/EX13.4/Ex13_4.sce')
-rw-r--r-- | 3828/CH13/EX13.4/Ex13_4.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3828/CH13/EX13.4/Ex13_4.sce b/3828/CH13/EX13.4/Ex13_4.sce new file mode 100644 index 000000000..bc46cf097 --- /dev/null +++ b/3828/CH13/EX13.4/Ex13_4.sce @@ -0,0 +1,18 @@ +//Chapter 13 : Thin Film Preparation Techniques and their Applications + +clear; + +//Variable declaration +Pmax=18*10**-3 //maximum power output +F=0.6 //fill factor +Voc=300*10**-3 //open circuit voltage +Pin=21*10**-3 //Power input +A=5 //area of solar cell + +//Calculations +Isc=Pmax/(F*Voc) +n=(Pmax/(Pin*A))*100 + +//Result +mprintf("Isc = %d mA",Isc*1000) +mprintf("\nPercentage of efficieny = %f percent",n) |