From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 181/CH3/EX3.13/example3_13.sce | 22 ++++++++++++++++++++++ 181/CH3/EX3.13/example3_13.txt | 1 + 2 files changed, 23 insertions(+) create mode 100755 181/CH3/EX3.13/example3_13.sce create mode 100755 181/CH3/EX3.13/example3_13.txt (limited to '181/CH3/EX3.13') 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 -- cgit