blob: bc46cf097e1746ef9c92b4e0cb60fd9ec9ec38db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)
|