summaryrefslogtreecommitdiff
path: root/2102/CH7/EX7.4/exa_7_4.sce
blob: 4f7187f530910c4c9de99866ef634f9d30f0c3c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Exa 7.4
clc;
clear;
close;
// Given data
Vmin= 2.2;// in V
Vmax= 4.0;// in V
I= 11;// in mA
I= I*10^-3;//in A
Resistance= Vmin/I;// in Ω
Current = Vmax/Resistance;// in A
disp(Resistance,"Resistance in Ω is : ")
disp(Current*10^3,"Current in mA is : ")