diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3311/CH8/EX8.12/Ex8_12.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3311/CH8/EX8.12/Ex8_12.sce')
-rwxr-xr-x | 3311/CH8/EX8.12/Ex8_12.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3311/CH8/EX8.12/Ex8_12.sce b/3311/CH8/EX8.12/Ex8_12.sce new file mode 100755 index 000000000..c0b4a3973 --- /dev/null +++ b/3311/CH8/EX8.12/Ex8_12.sce @@ -0,0 +1,18 @@ +// chapter 8 +// example 8.12 +// Determine the ON time of the chopper +// page-465 +clear; +clc; +// given +Edc=230; // in V (dc source) +F=400; // in Hz (chopping frequency) +E0=150; // in V +// calculate +// Siince E0=alpha*Edc, therefore we get, +alpha=E0/Edc; +T=1/F; +// Since alpha=Ton/T, therefore we get, +Ton=alpha*T; +printf("\nThe ON time of chopper is \t Ton=%.4f ms",Ton*1E3); +// Note: The answer varies slightly due to precise calculation upto 6 decimal digit
\ No newline at end of file |