diff options
Diffstat (limited to '3754/CH19/EX19.2')
-rw-r--r-- | 3754/CH19/EX19.2/19_2.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3754/CH19/EX19.2/19_2.sce b/3754/CH19/EX19.2/19_2.sce new file mode 100644 index 000000000..1be24be80 --- /dev/null +++ b/3754/CH19/EX19.2/19_2.sce @@ -0,0 +1,16 @@ +clear//
+
+//Variables
+
+RL = 20 //Load resistance (in kilo-ohm)
+V2 = 24 //Secondary voltage (in volts)
+
+//Calculation
+
+Vm = 2**0.5 * V2 //Maximum value of secondary voltage (in volts)
+Im = Vm / RL //Maximumj value of load current (in milli-Ampere)
+Idc = 0.318 * Im //dc current (in milli-Ampere)
+
+//Result
+
+printf("\n The value of dc load current is %0.3f mA.",Idc)
|