diff options
Diffstat (limited to '2459/CH20/EX20.2/Ex20_2.sce')
-rw-r--r-- | 2459/CH20/EX20.2/Ex20_2.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2459/CH20/EX20.2/Ex20_2.sce b/2459/CH20/EX20.2/Ex20_2.sce new file mode 100644 index 000000000..3bf880b67 --- /dev/null +++ b/2459/CH20/EX20.2/Ex20_2.sce @@ -0,0 +1,11 @@ +//chapter20
+//example20.2
+//page437
+
+V_NL=30 // V
+regulation=1
+
+// since regulation=((V_NL-V_FL)/V_FL)*100, we get V_FL as
+
+V_FL=100*V_NL/(100+regulation)
+printf("full load voltage = %.3f V \n",V_FL)
|