diff options
Diffstat (limited to '620/CH9/EX9.3/example9_3.sce')
-rw-r--r-- | 620/CH9/EX9.3/example9_3.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/620/CH9/EX9.3/example9_3.sce b/620/CH9/EX9.3/example9_3.sce new file mode 100644 index 000000000..7eb0fbefa --- /dev/null +++ b/620/CH9/EX9.3/example9_3.sce @@ -0,0 +1,10 @@ +vnl=1.2;
+vfl=1.1;
+disp("Part a");
+p_v=(vnl-vfl)*100/vfl;
+disp("the percentage voltage regulation of the cell (in %) is"); disp(p_v);
+disp("Part b");
+p_v1=40;
+vnl1=21;
+vfl1=vnl1/(1+p_v1/100);
+disp("the full-load voltage (in V) is"); disp(vfl1);
\ No newline at end of file |