diff options
Diffstat (limited to '3813/CH3/EX3.13/Ex3_13.sce')
-rw-r--r-- | 3813/CH3/EX3.13/Ex3_13.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3813/CH3/EX3.13/Ex3_13.sce b/3813/CH3/EX3.13/Ex3_13.sce new file mode 100644 index 000000000..7806b5145 --- /dev/null +++ b/3813/CH3/EX3.13/Ex3_13.sce @@ -0,0 +1,14 @@ +//Electric Drives:concepts and applications by V.subrahmanyam
+//Publisher:Tata McGraw-Hill
+//Edition:Second
+//Ex3_14
+clc;
+clear;
+t0=1.5;//Time in ms
+t1=3;//Time in ms
+Vs=200;//Supply voltage in V
+gama=t0/t1;
+Vl=gama*Vs;
+Vrms=sqrt(gama)*Vs;
+Rf=(sqrt(1-gama))/(sqrt(gama));
+disp(Rf,"Ripple factor is:")
|