From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2528/CH8/EX8.4/Ex8_4.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 2528/CH8/EX8.4/Ex8_4.sce (limited to '2528/CH8/EX8.4/Ex8_4.sce') diff --git a/2528/CH8/EX8.4/Ex8_4.sce b/2528/CH8/EX8.4/Ex8_4.sce new file mode 100755 index 000000000..0cbd8b4b2 --- /dev/null +++ b/2528/CH8/EX8.4/Ex8_4.sce @@ -0,0 +1,18 @@ +// Chapter8 +// 12V Voltage Regulator +// Page.No-279 +// Example8_4 +//Figure 8.17 +// Given +clear;clc; +Vref=7.15; //in V +Vout=12; //in V +Ilimit=0.050; //in Amp +R2=10000; //in Ohm +R1=Vout*R2/Vref-R2; +printf("\n Value of R1 is = %.f Ohm\n",R1); // Result +Vsense=0.65; //in V +Rsc=Vsense/Ilimit; +printf("\n Value of current sense resistor is = %.f Ohm\n",Rsc); // Result +R3=R1*R2/(R1+R2); +printf("\n Value of minimum drift resistor is = %.f Ohm\n",R3); // Result -- cgit