diff options
author | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
commit | f35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch) | |
tree | eb72842d800ac1233e9d890e020eac5fd41b0b1b /371/CH13 | |
parent | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff) | |
download | Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2 Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip |
updated the code
Diffstat (limited to '371/CH13')
-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 |