summaryrefslogtreecommitdiff
path: root/1376/CH3/EX3.1
diff options
context:
space:
mode:
Diffstat (limited to '1376/CH3/EX3.1')
-rwxr-xr-x1376/CH3/EX3.1/3_1.sci8
1 files changed, 8 insertions, 0 deletions
diff --git a/1376/CH3/EX3.1/3_1.sci b/1376/CH3/EX3.1/3_1.sci
new file mode 100755
index 000000000..528d78922
--- /dev/null
+++ b/1376/CH3/EX3.1/3_1.sci
@@ -0,0 +1,8 @@
+// 3.1
+clc;
+disp('For spring controlled Tc is proportional to theta')
+theta=90*(3/5)^2;
+printf("Deflection for spring controlled instrument=%.2f degree",theta)
+disp('For gravity controlled Tc is proportional to sin(theta)')
+theta=asind((3/5)^2);
+printf("\nDeflection for gravity controlled instrument=%.2f degree",theta)