blob: 8af1b6cdb226a5672d08e3abd5c98ab21ced8a73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//example_2
//chapter 41
theta_1=30
n_qa=1.4702
theta2=asind(sind(theta_1)/n_qa)
disp("For 4000 A beam, theta_2 in degree=")
disp(theta2)
theta_1=30
n_qa=1.4624
theta2=asind(sind(theta_1)/n_qa)
disp("For 5000 A beam, theta_2 in degree=")
disp(theta2)
|