summaryrefslogtreecommitdiff
path: root/1445/CH4/EX4.11/ch4_ex_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '1445/CH4/EX4.11/ch4_ex_11.sce')
-rw-r--r--1445/CH4/EX4.11/ch4_ex_11.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/1445/CH4/EX4.11/ch4_ex_11.sce b/1445/CH4/EX4.11/ch4_ex_11.sce
new file mode 100644
index 000000000..c52886b03
--- /dev/null
+++ b/1445/CH4/EX4.11/ch4_ex_11.sce
@@ -0,0 +1,21 @@
+//CHAPTER 4- MEASURING INSTRUMENTS
+//Example 11
+
+disp("CHAPTER 4");
+disp("EXAMPLE 11");
+
+//VARIABLE INITIALIZATION
+r1=30000; //in Ohms
+r2=20000; //in Ohms
+v=600; //in Volts
+
+//SOLUTION
+v1=(r1*v)/(r1+r2); //voltage divider law
+v2=(r2*v)/(r1+r2); //voltage divider law
+disp(sprintf("Reading of the 1st voltmeter is %d V",v1));
+disp(sprintf("Reading of the 2nd voltmeter is %d V",v2));
+
+//END
+
+
+