summaryrefslogtreecommitdiff
path: root/3543/CH3/EX3.15/Ex3_15.sce
blob: 8fe327db79638f6d962f6759c6576f1ae5bb6177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Example 3.15 
// Calculation of external efficiency 
// Page no 484

clc;
clear;
close;

//Given data
ne1=0.20;       //Total efficiency 
V=3;            // Voltage applied
Eg=1.43;        // Bandgap energy

// External efficiency
ne=(ne1*Eg/V)*100;

//Display result on command window
printf("\n External efficiency of the device (in percentage)= %0.1f  ",ne);