diff options
Diffstat (limited to '3828/CH13/EX13.3/Ex13_3.sce')
-rw-r--r-- | 3828/CH13/EX13.3/Ex13_3.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3828/CH13/EX13.3/Ex13_3.sce b/3828/CH13/EX13.3/Ex13_3.sce new file mode 100644 index 000000000..4941e3036 --- /dev/null +++ b/3828/CH13/EX13.3/Ex13_3.sce @@ -0,0 +1,21 @@ +//Chapter 13 : Thin Film Preparation Techniques and their Applications + +clear; + +//Variable declaration +Pmax=21*10**-3 //maximum power output +Isc=100*10**-3 //short circuit voltage +Voc=500*10**-3 //open circuit voltage +Pin=35*10**-3 //Power input +A=4 //area of solar cell + +//Calculations +Fill_Factor=Pmax/(Isc*Voc) +n=(Pmax/(Pin*A))*100 + +//Result +mprintf("Fill factor = %.2f",Fill_Factor) +mprintf("\nPercentage of efficieny = %d percent",n) + +//The answer provided in the textbook is wrong + |