summaryrefslogtreecommitdiff
path: root/3760/CH7/EX7.10/Ex7_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '3760/CH7/EX7.10/Ex7_10.sce')
-rw-r--r--3760/CH7/EX7.10/Ex7_10.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/3760/CH7/EX7.10/Ex7_10.sce b/3760/CH7/EX7.10/Ex7_10.sce
new file mode 100644
index 000000000..4aca2e29d
--- /dev/null
+++ b/3760/CH7/EX7.10/Ex7_10.sce
@@ -0,0 +1,8 @@
+clc;
+disp('b(1)');
+c=12; // number of coils
+r=0.1; // resistance of each coil
+// any one coil connected to commutator segment is in parallel with other 11 series connected coils therefore
+R=11*r; // resistance of 11 coil
+req=(r*R)/(r+R);
+printf('Resistance measured between two adjacent commutator segments is %f ohm\n',req);