summaryrefslogtreecommitdiff
path: root/1628/CH4/EX4.11
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1628/CH4/EX4.11
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 '1628/CH4/EX4.11')
-rwxr-xr-x1628/CH4/EX4.11/Ex4_11.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/1628/CH4/EX4.11/Ex4_11.sce b/1628/CH4/EX4.11/Ex4_11.sce
new file mode 100755
index 000000000..96b356d68
--- /dev/null
+++ b/1628/CH4/EX4.11/Ex4_11.sce
@@ -0,0 +1,23 @@
+
+ // Examle 4.11
+
+ // From the diagram (4.14)
+
+Req=2+{(12*4)/(12+4)}+4; // Equivalent resistance (for 4.14a )
+v=36; // Voltage source
+i=v/Req; // Current supply by the voltage source
+I=i*(12/(12+4)); // Current in branch B ==> { by current divider }
+disp(' Current in branch B = '+string(I)+' Amp');
+
+Req1=3+{(12*6)/(12+6)}+1; // Equivalent resistance (for 4.14b )
+i1=v/Req1; // Current supply by the voltage source
+I1=i1*(12/(12+6)); // Current in branch A ==> { by current divider }
+disp(' Current in branch A = '+string(I1)+' Amp');
+
+Rtr=v/I; // Transfer resistance
+disp(' Transfer resistance from Branch A to B = '+string(Rtr)+' Ohm');
+
+
+
+ // p 117 4.11
+