From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3793/CH15/EX15.2/exp_15_2.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 3793/CH15/EX15.2/exp_15_2.sce (limited to '3793/CH15/EX15.2/exp_15_2.sce') diff --git a/3793/CH15/EX15.2/exp_15_2.sce b/3793/CH15/EX15.2/exp_15_2.sce new file mode 100644 index 000000000..2b4cdccad --- /dev/null +++ b/3793/CH15/EX15.2/exp_15_2.sce @@ -0,0 +1,17 @@ +clear; +clc; +E_ll=110; +U=12; +V_o=(3*sqrt(2)*E_ll)/%pi; +X=0; +V_d1=(V_o*(cosd(X)+cosd(U+X)))/2; +printf("\nthe dc output voltage when (X=0) = %.3f kV",V_d1); +X1=25; +V_d2=(V_o*(cosd(X1)+cosd(U+X1)))/2; +printf("\nthe dc output voltage when (X1=25) = %.3f kV",V_d2); +X2=90; +V_d3=(V_o*(cosd(X2)+cosd(U+X2)))/2; +printf("\nthe dc output voltage when (X2=90) = %.3f kV",V_d3); +X3=120; +V_d4=(V_o*(cosd(X3)+cosd(U+X3)))/2; +printf("\nthe dc output voltage when (X3=120) = %.3f kV",V_d4); -- cgit