summaryrefslogtreecommitdiff
path: root/863/CH14/EX14.5
diff options
context:
space:
mode:
Diffstat (limited to '863/CH14/EX14.5')
-rw-r--r--863/CH14/EX14.5/Ex14_5.sce15
-rw-r--r--863/CH14/EX14.5/Ex14_5.txt15
-rw-r--r--863/CH14/EX14.5/Result14_5.txt8
3 files changed, 38 insertions, 0 deletions
diff --git a/863/CH14/EX14.5/Ex14_5.sce b/863/CH14/EX14.5/Ex14_5.sce
new file mode 100644
index 000000000..71e828717
--- /dev/null
+++ b/863/CH14/EX14.5/Ex14_5.sce
@@ -0,0 +1,15 @@
+//Caption:Determine meter indication when time base uses (a)6 decade counter (b)4 decade counter
+//Ex14.5
+clc;
+clear;
+close;
+f=3500//Applied frequency(in hz)
+F=10^6//Clock generator frequency(in hz)
+f1=F/(10^6)
+t1=1/f1
+c1=f*t1
+disp(c1,'Cycles of input counted during t1=')
+f2=F/(10^4)
+t2=1/f2
+c2=f*t2
+disp(c2,'Cycles of input counted during t2=') \ No newline at end of file
diff --git a/863/CH14/EX14.5/Ex14_5.txt b/863/CH14/EX14.5/Ex14_5.txt
new file mode 100644
index 000000000..71e828717
--- /dev/null
+++ b/863/CH14/EX14.5/Ex14_5.txt
@@ -0,0 +1,15 @@
+//Caption:Determine meter indication when time base uses (a)6 decade counter (b)4 decade counter
+//Ex14.5
+clc;
+clear;
+close;
+f=3500//Applied frequency(in hz)
+F=10^6//Clock generator frequency(in hz)
+f1=F/(10^6)
+t1=1/f1
+c1=f*t1
+disp(c1,'Cycles of input counted during t1=')
+f2=F/(10^4)
+t2=1/f2
+c2=f*t2
+disp(c2,'Cycles of input counted during t2=') \ No newline at end of file
diff --git a/863/CH14/EX14.5/Result14_5.txt b/863/CH14/EX14.5/Result14_5.txt
new file mode 100644
index 000000000..b1d0cb223
--- /dev/null
+++ b/863/CH14/EX14.5/Result14_5.txt
@@ -0,0 +1,8 @@
+Cycles of input counted during t1=
+
+ 3500.
+
+ Cycles of input counted during t2=
+
+ 35.
+ \ No newline at end of file