diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1628/CH2/EX2.9 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1628/CH2/EX2.9')
-rwxr-xr-x | 1628/CH2/EX2.9/Ex2_9.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/1628/CH2/EX2.9/Ex2_9.sce b/1628/CH2/EX2.9/Ex2_9.sce new file mode 100755 index 000000000..e2dbd87c1 --- /dev/null +++ b/1628/CH2/EX2.9/Ex2_9.sce @@ -0,0 +1,23 @@ +
+ // Example 2.9
+
+ // From the diagram 2.18
+ // Minimum value of Req is obtained if R=0
+ // Maximum value of Req is obtained if R= Open ckt
+
+R1=30; // Given the value of R1 & R1+R2= 75
+R2=75-R1; // The value of R2
+disp(' The value of R1 is = '+string(R1)+' Ohms ');
+disp(' The value of R2 is = '+string(R2)+' Ohms ');
+
+ // From the diagram 2.19
+
+Req= (30+75)/2; // Required value of Req is Req= (30+75)/2
+Rp=Req-R1; // Hance the parallel combination of R2 & R
+disp(' The value of Rp is = '+string(Rp)+' Ohms ');
+disp('The value of Rp is exactly half of R2= 45, hance the value of R should be '+string(R2)+' Ohms ');
+
+
+
+
+ // p 26 2.9
|