summaryrefslogtreecommitdiff
path: root/2330/CH2/EX2.2/ex2_2.sce
blob: b94f8f3f72be4ee056146e49950fe5e60846886f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Example 2.2
clc;
clear;
close;
format('v',6)
// given data
Vin= 15;// in V
I=0;
R_L= 10;// in kΩ
R_L= R_L*10^3;// in Ω
// The output voltage 
Vout= I*R_L;// in V
// The voltage across the diode 
V_R= Vin-Vout;// in V
disp(Vout,"The output voltage in volts is : ");
disp(V_R,"The voltage across the diode in volts is : ");