summaryrefslogtreecommitdiff
path: root/2720/CH7/EX7.6.1/ex7_6_1.sce
blob: bd50dafe55e69315e56fc23994f396f763896cc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Exa 7.6.1
clc;
clear;
close;
// Given data
O_V = 5;// output voltage in V
V_D = 1.5;//voltage drop in V
R = (O_V - V_D)/O_V;
R = R * 10^3;// in ohm
disp(R,"The resistance value in Ω is");
disp("As this is not standard value, use R=680 Ω which is a standard value")