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 /833/CH7/EX7.6 | |
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 '833/CH7/EX7.6')
-rwxr-xr-x | 833/CH7/EX7.6/Ex7_6.sce | 20 | ||||
-rwxr-xr-x | 833/CH7/EX7.6/Ex7_6.txt | 20 | ||||
-rwxr-xr-x | 833/CH7/EX7.6/Result7_6.txt | 10 |
3 files changed, 50 insertions, 0 deletions
diff --git a/833/CH7/EX7.6/Ex7_6.sce b/833/CH7/EX7.6/Ex7_6.sce new file mode 100755 index 000000000..0912cb0ab --- /dev/null +++ b/833/CH7/EX7.6/Ex7_6.sce @@ -0,0 +1,20 @@ +//Caption: Select a two circuit armature winding for a d.c machine
+//Exa:7.6
+clc;
+clear;
+close;
+p=4//Number of poles
+n=1000//Speed of d.c. machine(in r.p.m)
+V=400//Voltage of d.cmachine(in volts)
+B=0.04//Flux per pole(in weber)
+s_1=41//Slot 1
+s_2=45//Slot 2
+s_3=51//Slot 3
+a=2//Number of parallel paths
+Z=(V*60*a)/(B*n*p)
+Z_c=Z/a
+Y=(s_3+1)/(p/2)
+t=3//turns per coil
+c=t*a
+z=s_3*c
+disp(z,c,t,s_3,'slots,turn coils,coils sides per slot and total number of conductors=')
\ No newline at end of file diff --git a/833/CH7/EX7.6/Ex7_6.txt b/833/CH7/EX7.6/Ex7_6.txt new file mode 100755 index 000000000..0912cb0ab --- /dev/null +++ b/833/CH7/EX7.6/Ex7_6.txt @@ -0,0 +1,20 @@ +//Caption: Select a two circuit armature winding for a d.c machine
+//Exa:7.6
+clc;
+clear;
+close;
+p=4//Number of poles
+n=1000//Speed of d.c. machine(in r.p.m)
+V=400//Voltage of d.cmachine(in volts)
+B=0.04//Flux per pole(in weber)
+s_1=41//Slot 1
+s_2=45//Slot 2
+s_3=51//Slot 3
+a=2//Number of parallel paths
+Z=(V*60*a)/(B*n*p)
+Z_c=Z/a
+Y=(s_3+1)/(p/2)
+t=3//turns per coil
+c=t*a
+z=s_3*c
+disp(z,c,t,s_3,'slots,turn coils,coils sides per slot and total number of conductors=')
\ No newline at end of file diff --git a/833/CH7/EX7.6/Result7_6.txt b/833/CH7/EX7.6/Result7_6.txt new file mode 100755 index 000000000..065894342 --- /dev/null +++ b/833/CH7/EX7.6/Result7_6.txt @@ -0,0 +1,10 @@ +slots,turn coils,coils sides per slot and total number of conductors=
+
+ 51.
+
+ 3.
+
+ 6.
+
+ 306.
+
\ No newline at end of file |