diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1316/CH2/EX2.4 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1316/CH2/EX2.4')
-rw-r--r-- | 1316/CH2/EX2.4/example2_4.sce | 18 | ||||
-rw-r--r-- | 1316/CH2/EX2.4/resultexample2_4.txt | 2 |
2 files changed, 20 insertions, 0 deletions
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
|