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/CH9/EX9.7/Ex9_7.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/CH9/EX9.7/Ex9_7.sce')
-rwxr-xr-x | 3311/CH9/EX9.7/Ex9_7.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3311/CH9/EX9.7/Ex9_7.sce b/3311/CH9/EX9.7/Ex9_7.sce new file mode 100755 index 000000000..9fd86cde9 --- /dev/null +++ b/3311/CH9/EX9.7/Ex9_7.sce @@ -0,0 +1,16 @@ +// chapter 9 +// example 9.7 +// Compute DC and switch voltage ratings +// page-570 +clear; +clc; +// given +E0_rms=220; // in V (Fundamental output voltage) +M=0.8; // modulation index +// calculate +// since E0_rms=sqrt(1/2)*M*(Edc_2), therefore we get +Edc_2=E0_rms/(sqrt(1/2)*M); // calculation of DC voltage ratings +V_CEO=2*Edc_2; // calculation of switch voltage ratings +printf("\nThe DC voltage ratings is \t %.2f V",Edc_2); +printf("\nThe switch voltage ratings is \t %.f V",V_CEO); +// Note: The answer varies slightly due to precise calculation
\ No newline at end of file |