From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 1316/CH2/EX2.4/example2_4.sce | 18 ++++++++++++++++++ 1316/CH2/EX2.4/resultexample2_4.txt | 2 ++ 2 files changed, 20 insertions(+) create mode 100644 1316/CH2/EX2.4/example2_4.sce create mode 100644 1316/CH2/EX2.4/resultexample2_4.txt (limited to '1316/CH2/EX2.4') diff --git a/1316/CH2/EX2.4/example2_4.sce b/1316/CH2/EX2.4/example2_4.sce new file mode 100644 index 000000000..f1b08d7a8 --- /dev/null +++ b/1316/CH2/EX2.4/example2_4.sce @@ -0,0 +1,18 @@ +//Chapter 2 +//Example 2.4 +//Page 60 + +clear; +clc; + +R1 = 120; +R2 = 120; +R3 = 120; +R4 = 121; +V=10; +printf("Assuming detector impedance to be very high , we find the offset as \n") +//Calculation of Delta Vd +Del_Vd = V*(((R3*R2)-(R1*R4))/((R1+R3)*(R2+R4))) +printf("Delta Vd = %f V",Del_Vd) + + diff --git a/1316/CH2/EX2.4/resultexample2_4.txt b/1316/CH2/EX2.4/resultexample2_4.txt new file mode 100644 index 000000000..c9b08d046 --- /dev/null +++ b/1316/CH2/EX2.4/resultexample2_4.txt @@ -0,0 +1,2 @@ + Assuming detector impedance to be very high , we find the offset as +Delta Vd = -0.020747 V -- cgit