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.13 | |
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.13')
-rwxr-xr-x | 833/CH7/EX7.13/Ex7_13.sce | 17 | ||||
-rwxr-xr-x | 833/CH7/EX7.13/Ex7_13.txt | 17 | ||||
-rwxr-xr-x | 833/CH7/EX7.13/Result7_13.txt | 4 |
3 files changed, 38 insertions, 0 deletions
diff --git a/833/CH7/EX7.13/Ex7_13.sce b/833/CH7/EX7.13/Ex7_13.sce new file mode 100755 index 000000000..f1657c3d0 --- /dev/null +++ b/833/CH7/EX7.13/Ex7_13.sce @@ -0,0 +1,17 @@ +//Caption:Find the time of Commutation
+//Exa:7.13
+clc;
+clear;
+close;
+p=4//Number of poles
+n=600//Speed of generator(in r.p.m)
+d=0.4//Diameter of commutator(in m)
+c=243//Number ofcommutator segments
+c_s=3//Coil sides per layer
+w=12.5//Width of brush(in mm)
+W=0.6//Width of mica between commutator segments
+W_c=(%pi*d*1000)/(c)
+D=w-W+(2*W_c)
+V_c=(%pi*d*n)/60
+T=D/V_c*(10^(-3))
+disp(T,'Time of commutation(in sec)=')
\ No newline at end of file diff --git a/833/CH7/EX7.13/Ex7_13.txt b/833/CH7/EX7.13/Ex7_13.txt new file mode 100755 index 000000000..f1657c3d0 --- /dev/null +++ b/833/CH7/EX7.13/Ex7_13.txt @@ -0,0 +1,17 @@ +//Caption:Find the time of Commutation
+//Exa:7.13
+clc;
+clear;
+close;
+p=4//Number of poles
+n=600//Speed of generator(in r.p.m)
+d=0.4//Diameter of commutator(in m)
+c=243//Number ofcommutator segments
+c_s=3//Coil sides per layer
+w=12.5//Width of brush(in mm)
+W=0.6//Width of mica between commutator segments
+W_c=(%pi*d*1000)/(c)
+D=w-W+(2*W_c)
+V_c=(%pi*d*n)/60
+T=D/V_c*(10^(-3))
+disp(T,'Time of commutation(in sec)=')
\ No newline at end of file diff --git a/833/CH7/EX7.13/Result7_13.txt b/833/CH7/EX7.13/Result7_13.txt new file mode 100755 index 000000000..53baa06da --- /dev/null +++ b/833/CH7/EX7.13/Result7_13.txt @@ -0,0 +1,4 @@ + Time of commutation(in sec)=
+
+ 0.0017700
+
\ No newline at end of file |