summaryrefslogtreecommitdiff
path: root/3890/CH2/EX2.8/Ex2_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3890/CH2/EX2.8/Ex2_8.sce')
-rw-r--r--3890/CH2/EX2.8/Ex2_8.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3890/CH2/EX2.8/Ex2_8.sce b/3890/CH2/EX2.8/Ex2_8.sce
new file mode 100644
index 000000000..1b1d25049
--- /dev/null
+++ b/3890/CH2/EX2.8/Ex2_8.sce
@@ -0,0 +1,17 @@
+//Electric machines and power systems by Syed A Nasar
+//Publisher:TataMcgraw Hill
+//Year: 2002 ; Edition - 7
+//Example 2.7
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+c=0.1; //circumference in m
+A=0.0016; //cross sectional area in m^2
+N1=10; //number of turns in the coil
+p=0.115; //amplitude permeability
+
+L11=N1^2*A*p/c;
+
+disp(L11,'the inductance of coil 1 in H')