diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3830/CH1/EX1.19/Ex1_19.sce | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.gz Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.bz2 Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.zip |
Diffstat (limited to '3830/CH1/EX1.19/Ex1_19.sce')
-rw-r--r-- | 3830/CH1/EX1.19/Ex1_19.sce | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/3830/CH1/EX1.19/Ex1_19.sce b/3830/CH1/EX1.19/Ex1_19.sce new file mode 100644 index 000000000..5cece7809 --- /dev/null +++ b/3830/CH1/EX1.19/Ex1_19.sce @@ -0,0 +1,32 @@ +// Exa 1.19
+
+clc;
+clear;
+
+// Given
+
+// Design of thermocouple voltmeter
+// Three ranges
+V1 = 5; // Volts
+V2 = 10; // Volts
+V3 = 25; // Volts
+Ifs = 50*10^-3; // Amp
+Rm = 200; // Ohms
+Imax = 5*10^-3; // Amps
+Rheater = 200; // Ohms
+
+// Solution
+
+printf(' To get a FSD for 5,10 and 25V, current through the heater must be limited to 5mA \n');
+
+printf('For a 5V range \n');
+Rs1 = V1/Imax - Rm;
+printf('Series resistance Rs = %d Ohms \n',Rs1);
+printf('For a 10V range \n');
+Rs2 = V2/Imax - Rm;
+printf('Series resistance Rs = %d Ohms \n',Rs2);
+printf('For a 25V range \n');
+Rs3 = V3/Imax - Rm;
+printf('Series resistance Rs = %d Ohms \n',Rs3);
+
+//The answer provided in the textbook for Rs3 is wrong
|