summaryrefslogtreecommitdiff
path: root/2528/CH8/EX8.4/Ex8_4.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2528/CH8/EX8.4/Ex8_4.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2528/CH8/EX8.4/Ex8_4.sce')
-rwxr-xr-x2528/CH8/EX8.4/Ex8_4.sce18
1 files changed, 18 insertions, 0 deletions
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