From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1049/CH10/EX10.7/ch10_7.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 1049/CH10/EX10.7/ch10_7.sce (limited to '1049/CH10/EX10.7') 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); -- cgit