summaryrefslogtreecommitdiff
path: root/182/CH4/EX4.6
diff options
context:
space:
mode:
Diffstat (limited to '182/CH4/EX4.6')
-rwxr-xr-x182/CH4/EX4.6/example4_6.sce12
-rwxr-xr-x182/CH4/EX4.6/example4_6.txt2
2 files changed, 14 insertions, 0 deletions
diff --git a/182/CH4/EX4.6/example4_6.sce b/182/CH4/EX4.6/example4_6.sce
new file mode 100755
index 000000000..4b2cb87c4
--- /dev/null
+++ b/182/CH4/EX4.6/example4_6.sce
@@ -0,0 +1,12 @@
+
+// example 4-6 in page 100
+clc;
+// data give
+Eb=1.5;// Full scale voltage in volts
+R1=1e+3;//R1=1 K-ohm
+//calculation
+for n=1:2
+ E=Eb*(n/3);// 1/3rd and 2/3rd value of full scale
+ Rx=R1/((Eb/E)-1);
+ printf("at %d/3 FSD, Rx=%d ohm\n",n,Rx)
+end
diff --git a/182/CH4/EX4.6/example4_6.txt b/182/CH4/EX4.6/example4_6.txt
new file mode 100755
index 000000000..0ebce895d
--- /dev/null
+++ b/182/CH4/EX4.6/example4_6.txt
@@ -0,0 +1,2 @@
+6.at 1/3 FSD, Rx=500 ohm
+at 2/3 FSD, Rx=2000 ohm