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 /1049/CH10/EX10.7 | |
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 '1049/CH10/EX10.7')
-rwxr-xr-x | 1049/CH10/EX10.7/ch10_7.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1049/CH10/EX10.7/ch10_7.sce b/1049/CH10/EX10.7/ch10_7.sce new file mode 100755 index 000000000..42d8f87f8 --- /dev/null +++ b/1049/CH10/EX10.7/ch10_7.sce @@ -0,0 +1,20 @@ +clear;
+clc;
+V_l=400;
+V_ml=sqrt(2)*V_l;
+m=6;
+f=50;
+w=2*%pi*f;
+L=.0012;
+I=40;
+disp("for firing angle=0deg");
+a=0;
+V_or=(V_ml*(m/%pi)*sin(%pi/m))*cosd(a);
+V_omx=V_or-3*w*L*I/%pi;
+V_rms=V_omx/sqrt(2); printf("rms value of load voltage=%.2f V",V_rms);
+
+disp("for firing angle=30deg");
+a=30;
+V_or=(V_ml*(m/%pi)*sin(%pi/m))*cosd(a);
+V_omx=V_or-3*w*L*I/%pi;
+V_rms=V_omx/sqrt(2); printf("rms value of load voltage=%.2f V",V_rms);
|