summaryrefslogtreecommitdiff
path: root/3554/CH12/EX12.2/Ex12_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3554/CH12/EX12.2/Ex12_2.sce')
-rw-r--r--3554/CH12/EX12.2/Ex12_2.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3554/CH12/EX12.2/Ex12_2.sce b/3554/CH12/EX12.2/Ex12_2.sce
new file mode 100644
index 000000000..42d6ef687
--- /dev/null
+++ b/3554/CH12/EX12.2/Ex12_2.sce
@@ -0,0 +1,17 @@
+// Exa 12.2
+
+clc;
+clear all;
+
+// Given data
+
+fre=20; // in Hz
+Time_base=5*10^-3; // in
+
+// Solution
+
+Period=1/fre; // in sec
+// Since period= timebase/ chart speed;
+Chart_speed=Time_base/Period; // in mm/sec
+
+printf(' The chart speed used to record one complete cycle on 5mm of recording paper =%.1f mm/sec \n',Chart_speed*10^3);