summaryrefslogtreecommitdiff
path: root/3871/CH5/EX5.36
diff options
context:
space:
mode:
Diffstat (limited to '3871/CH5/EX5.36')
-rw-r--r--3871/CH5/EX5.36/Ex5_36.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3871/CH5/EX5.36/Ex5_36.sce b/3871/CH5/EX5.36/Ex5_36.sce
new file mode 100644
index 000000000..7b307de90
--- /dev/null
+++ b/3871/CH5/EX5.36/Ex5_36.sce
@@ -0,0 +1,19 @@
+//===========================================================================
+//chapter 5 example 36
+
+clc;
+clear all;
+
+//variable declaration
+theta1 = 105; //deflection in °
+I1 = 20; //current in A
+I2 = 20; //current in A
+f1 = 50; //frequency in Hz
+f2 = 75; //frequency in Hz
+
+
+//calculations
+theta = (theta1)*((I2/I1)^2)*(f2/f1);
+
+//result
+mprintf("deflection of the instrument while measuring 20 A = %3.1f °",theta);