summaryrefslogtreecommitdiff
path: root/3836/CH11/EX11.6/Ex11_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3836/CH11/EX11.6/Ex11_6.sce')
-rw-r--r--3836/CH11/EX11.6/Ex11_6.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3836/CH11/EX11.6/Ex11_6.sce b/3836/CH11/EX11.6/Ex11_6.sce
new file mode 100644
index 000000000..eb20db0b8
--- /dev/null
+++ b/3836/CH11/EX11.6/Ex11_6.sce
@@ -0,0 +1,15 @@
+clear
+//Initialisation
+fsd1=50 //full scale deflection of voltmeter in Volts
+fsd2=1*10**-3 //full scale deflection of moving coil meter in Ampere
+Rm=25 //resistance of moving coil meter in Ohms
+
+//Calculation
+Rsm=fsd1*fsd2**-1
+Rse=Rsm-Rm
+
+//Result
+printf("\n Rse = %.3f KOhm\n",Rse*10**-3)
+
+printf("\n Therefore, Resistor ~ %d KOhm\n",round(Rse*10**-3))
+