diff options
Diffstat (limited to '3830/CH1/EX1.34')
-rw-r--r-- | 3830/CH1/EX1.34/Ex1_34.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/3830/CH1/EX1.34/Ex1_34.sce b/3830/CH1/EX1.34/Ex1_34.sce new file mode 100644 index 000000000..0c0e44eb3 --- /dev/null +++ b/3830/CH1/EX1.34/Ex1_34.sce @@ -0,0 +1,27 @@ +// Exa 1.34
+
+clc;
+clear;
+
+// Given
+
+I1 = 10; // Current which produces deflection of 90 degrees
+Theta1 = 90; // In degrees
+I2 = 5; // Current for which theta is to be calculated
+
+// Solution
+
+//The deflection which produces a current of 1A when instrument is spring controlled
+// Tc ∝ theta
+// theta ∝ I^2
+
+theta2 = (I2/I1)^2 * Theta1 ;
+printf('The deflection which produces a current of 1A when instrument is spring controlled is equal to = %.1f degrees \n',theta2);
+//The deflection which produces a current of 1A when instrument is gravity controlled
+// Tc ∝ sin(theta)
+// theta ∝ I^2
+
+theta2_gravity = asind((I2/I1)^2 *sind(Theta1)) ;
+printf(' The deflection which produces a current of 1A when instrument is gravity controlled = %.2f degrees \n',theta2_gravity);
+
+// The value of I given as 1A in problem statement is incorrect to satisfy the problem answer(correct value is 5A)
|