diff options
Diffstat (limited to '3813/CH4/EX4.10/Ex4_10.sce')
-rw-r--r-- | 3813/CH4/EX4.10/Ex4_10.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3813/CH4/EX4.10/Ex4_10.sce b/3813/CH4/EX4.10/Ex4_10.sce new file mode 100644 index 000000000..80fcae322 --- /dev/null +++ b/3813/CH4/EX4.10/Ex4_10.sce @@ -0,0 +1,15 @@ +//Electric Drives:concepts and applications by V.subrahmanyam
+//Publisher:Tata McGraw-Hill
+//Edition:Second
+//Ex4_10
+clc;
+clear;
+V=500;// voltage in V
+I=15;//Current in A
+t=0.6;//time in sec
+f=80;//frequency in Hz
+Vav=V*t;
+Vi=V-Vav;
+Ton=t/f;
+L=Vi*(Ton/I);
+disp(L,"The inductance in Henry is:")
|