diff options
Diffstat (limited to '3793/CH15/EX15.3/exp_15_3.sce')
-rw-r--r-- | 3793/CH15/EX15.3/exp_15_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3793/CH15/EX15.3/exp_15_3.sce b/3793/CH15/EX15.3/exp_15_3.sce new file mode 100644 index 000000000..3730a1454 --- /dev/null +++ b/3793/CH15/EX15.3/exp_15_3.sce @@ -0,0 +1,12 @@ +clear;
+clc;
+E_ll=110;
+X=10;
+V_o=(3*sqrt(2)*E_ll)/%pi;
+U1=15;
+V_d1=(V_o*(cosd(X)+cosd(U1+X)))/2;
+printf("\nthe dc output voltage when (U1=15) = %.3f kV",V_d1);
+
+U2=20;
+V_d2=(V_o*(cosd(X)+cosd(U2+X)))/2;
+printf("\nthe dc output voltage when (U2=20) = %.3f kV",V_d2);
|