diff options
Diffstat (limited to '371/CH13/EX13.7/13_7.sci')
-rwxr-xr-x | 371/CH13/EX13.7/13_7.sci | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/371/CH13/EX13.7/13_7.sci b/371/CH13/EX13.7/13_7.sci index 76d160230..916c1d2a9 100755 --- a/371/CH13/EX13.7/13_7.sci +++ b/371/CH13/EX13.7/13_7.sci @@ -1,10 +1,11 @@ -//Choppers and Transportation System Application//
-//Example 13.7//
-//R1=rotor resistance before introduction of control//
-//R2=rotor resistance after introduction of control//
-printf('R2=1.5*R1');
-R2=((R1*Ton)+(R1+R1)*Toff)/T;//rotor resistance referred to stator in ohms//
-printf('\nthe above condition satisfies when Ton=Toff');
-T=4;//total time period in ms//
-f=1000/T;//chopper frequency in hz//
+//Choppers and Transportation System Application// +//Example 13.7// +//R1=rotor resistance before introduction of control// +//R2=rotor resistance after introduction of control// +R1 = 100; +printf('R2=1.5*R1'); +R2=1.5*R1 //rotor resistance referred to stator in ohms// +printf('\nthe above condition satisfies when Ton=Toff'); +T=4;//total time period in ms// +f=1000/T;//chopper frequency in hz// printf('\nChopper frequency=f=%fhz',f);
\ No newline at end of file |