diff options
Diffstat (limited to '620/CH28/EX28.4/example28_4.sce')
-rw-r--r-- | 620/CH28/EX28.4/example28_4.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/620/CH28/EX28.4/example28_4.sce b/620/CH28/EX28.4/example28_4.sce new file mode 100644 index 000000000..d205338d6 --- /dev/null +++ b/620/CH28/EX28.4/example28_4.sce @@ -0,0 +1,15 @@ +v1=120;
+v2=6.3;
+r=220;
+disp("Part a");
+vm=v2*sqrt(2);
+vdc=2*vm/%pi;
+disp("the dc voltage (in V) across the load is"); disp(vdc);
+disp("Part b");
+idc=vdc/r;
+disp("the dc current (in mA) throught the load is");disp(idc *10^3);
+disp("Part c");
+pdc=vdc*idc;
+disp("the dc power delivered (in W) to the load is"); disp(pdc);
+disp("Part d");
+disp("the P.I.V. of each diode is"); disp(vm);
\ No newline at end of file |