blob: 30d3501581d2a4a8c50cc98dd36c602d8fb01606 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Example 3.4 //G factor
clc;
clear;
close;
format('v',10)
d=0.793;//in micro meter
v=%pi/2;//point of intersection
ua=0.934;//
wa=1.262;//
Y=(wa*(1+(sind(ua))*(cosd(ua))/ua));//
G=(1+((cosd(ua))^2)/Y)^(-1);//
disp(G,"G factor is")
//answer is wrong in the textbook
|