diff options
Diffstat (limited to '1904/CH4/EX4.5/4_5.sce')
-rwxr-xr-x | 1904/CH4/EX4.5/4_5.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1904/CH4/EX4.5/4_5.sce b/1904/CH4/EX4.5/4_5.sce new file mode 100755 index 000000000..99808961b --- /dev/null +++ b/1904/CH4/EX4.5/4_5.sce @@ -0,0 +1,18 @@ +//To Compare the results the percent voltage drop ratio for different loading
+//Page 204
+clc;
+clear;
+
+//Voltage Drops in Percentage
+VDlumped=5;
+VDuniform=2.5;
+VDincreasing=3.333;
+
+//Ratio of the percent voltage drops
+Rlu=VDlumped/VDuniform;
+Rli=VDlumped/VDincreasing;
+Riu=VDincreasing/VDuniform;
+
+printf('\na) Percent VDlumped = %g Percent VDuniform\n',Rlu)
+printf('b) Percent VDlumped = %g Percent VDincreasing\n',Rli)
+printf('c) Percent VDincreasing = %g Percent VDuniform\n',Riu)
|