summaryrefslogtreecommitdiff
path: root/3871/CH10/EX10.4/Ex10_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3871/CH10/EX10.4/Ex10_4.sce')
-rw-r--r--3871/CH10/EX10.4/Ex10_4.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3871/CH10/EX10.4/Ex10_4.sce b/3871/CH10/EX10.4/Ex10_4.sce
new file mode 100644
index 000000000..d1c7aef07
--- /dev/null
+++ b/3871/CH10/EX10.4/Ex10_4.sce
@@ -0,0 +1,15 @@
+//===========================================================================
+//chapter 10 example 4
+clc;
+clear all;
+
+//variable declaration
+S = 0.02; //resistance of standard resistor in Ω
+Vs = 0.98; //voltage drop across standard resistor in V
+Vx = 0.735; //voltage drop across resistor under test in V
+
+//calculations
+X = (S*Vx)/Vs; //Resistance of resistor under test in Ω
+
+//result
+mprintf("Resistance of resistor under test= %3.3f Ω",X);