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 /1430/CH3/EX3.10 | |
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 '1430/CH3/EX3.10')
-rw-r--r-- | 1430/CH3/EX3.10/exa3_10.sce | 10 | ||||
-rw-r--r-- | 1430/CH3/EX3.10/exa3_10.txt | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/1430/CH3/EX3.10/exa3_10.sce b/1430/CH3/EX3.10/exa3_10.sce new file mode 100644 index 000000000..cf2b9b3bb --- /dev/null +++ b/1430/CH3/EX3.10/exa3_10.sce @@ -0,0 +1,10 @@ +//Example 3.10
+// Analog Multimeter Design
+V_fs=120*10^-3; // d'Arsonval Parameter
+I_fs=200*10^-6; // d'Arsonval Parameter
+// Movement's Resistance
+R_m=V_fs/I_fs;
+R_v=((5000-120)*(600))/120;// Multiplier Resistance
+R_a=600/((30000/200)-1); // Shunt Resistance
+disp(R_v,"Design Value for Multiplier resistor(in Ohms)=")
+disp(R_a,"Design Value for Shunt resistor(in Ohms)=")
diff --git a/1430/CH3/EX3.10/exa3_10.txt b/1430/CH3/EX3.10/exa3_10.txt new file mode 100644 index 000000000..e2523202d --- /dev/null +++ b/1430/CH3/EX3.10/exa3_10.txt @@ -0,0 +1,10 @@ + -->exec('C:\Users\sangeet\Documents\Scilab\Circuits\Chapter 3\exa3.10.sce', -1)
+
+ Design Value for Multiplier resistor(in Ohms)=
+
+ 24400.
+
+ Design Value for Shunt resistor(in Ohms)=
+
+ 4.0268456
+
|