summaryrefslogtreecommitdiff
path: root/3769/CH17/EX17.2/Ex17_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH17/EX17.2/Ex17_2.sce')
-rw-r--r--3769/CH17/EX17.2/Ex17_2.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3769/CH17/EX17.2/Ex17_2.sce b/3769/CH17/EX17.2/Ex17_2.sce
new file mode 100644
index 000000000..6750233ad
--- /dev/null
+++ b/3769/CH17/EX17.2/Ex17_2.sce
@@ -0,0 +1,12 @@
+clear
+//Given
+u1=1.0
+u2=1.526
+i=45 //degree
+//Calculation
+sinr=(u1*sin(i*3.14/180.0))/u2
+r=asin(sinr)*180/3.14
+d=i-r
+
+//Result
+printf("\n Angle of deviation is %0.2f degree",d)