diff options
Diffstat (limited to '2123/CH5/EX5.34')
-rwxr-xr-x | 2123/CH5/EX5.34/Exa_5_35.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2123/CH5/EX5.34/Exa_5_35.sce b/2123/CH5/EX5.34/Exa_5_35.sce new file mode 100755 index 000000000..dfe975ba7 --- /dev/null +++ b/2123/CH5/EX5.34/Exa_5_35.sce @@ -0,0 +1,18 @@ +//Example No. 5.35
+clc;
+clear;
+close;
+format('v',9);
+
+//Given Data :
+V1=200;//V
+N1=940;//rpm
+Ra=0.02;//ohm
+Ia=100;//A
+N2=500;//rpm
+Eb1=V1-Ia*Ra;//V
+//Eb1/Eb2=N1/N2
+//Eb2=V2-Ia*Ra;//V
+V2=Eb1*N2/N1+Ia*Ra;//V
+cycle=V2/V1;
+disp(cycle,"Duty cycle : ");
|