summaryrefslogtreecommitdiff
path: root/3830/CH4/EX4.4/Ex4_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3830/CH4/EX4.4/Ex4_4.sce')
-rw-r--r--3830/CH4/EX4.4/Ex4_4.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3830/CH4/EX4.4/Ex4_4.sce b/3830/CH4/EX4.4/Ex4_4.sce
new file mode 100644
index 000000000..6ddf351ea
--- /dev/null
+++ b/3830/CH4/EX4.4/Ex4_4.sce
@@ -0,0 +1,15 @@
+// Exa 4.4
+
+clc;
+clear;
+
+// Given
+
+Def_sensitivity = 0.05; // Deflection sensitivity in mm/V
+Spot_deflection = 5; // in mm
+
+// Solution
+
+AppliedVoltage = Spot_deflection/Def_sensitivity ;
+
+printf(' The applied voltage = %d V \n',AppliedVoltage);