diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /181/CH3/EX3.13 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '181/CH3/EX3.13')
-rwxr-xr-x | 181/CH3/EX3.13/example3_13.sce | 22 | ||||
-rwxr-xr-x | 181/CH3/EX3.13/example3_13.txt | 1 |
2 files changed, 23 insertions, 0 deletions
diff --git a/181/CH3/EX3.13/example3_13.sce b/181/CH3/EX3.13/example3_13.sce new file mode 100755 index 000000000..ed1d5e8c9 --- /dev/null +++ b/181/CH3/EX3.13/example3_13.sce @@ -0,0 +1,22 @@ +// Find maximum value of ac voltage
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 3-13 in page 160
+
+clear; clc; close;
+
+// Given data
+Vdc=30; // DC voltage in V
+Rf=25; // Internal resistance in ohms
+Rl=500; // Load resistance in ohms
+
+// Calculation
+Idc=Vdc/Rl;
+Im=%pi*Idc;
+Vi=Im^2*(Rf+Rl);
+printf("Voltage required at the input = %0.2f V",Vi);
+
+// Result
+// Voltage required at the input is = 18.65 V
\ No newline at end of file diff --git a/181/CH3/EX3.13/example3_13.txt b/181/CH3/EX3.13/example3_13.txt new file mode 100755 index 000000000..338360ae3 --- /dev/null +++ b/181/CH3/EX3.13/example3_13.txt @@ -0,0 +1 @@ +Voltage required at the input is = 18.65 V
\ No newline at end of file |