summaryrefslogtreecommitdiff
path: root/132/CH4/EX4.4/Example4_4.sce
blob: f10c223beb7e06aca3a4fc411605281364839b79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Example 4.4
//Program to determine Maximum Current the Given Zener Diode can handle
clear;
clc ;
close ;
//Given Circuit Data
Vz=9.1; //Volts
P=364*10^(-3); //Watts
//Calculation
Iz=P/Vz;
//Displaying The Results in Command Window
printf("\n\t The Maximum permissible Current is Iz(max) = %f mA .",Iz/10^(-3));