From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 605/CH5/EX5.10/5_10.sce | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 605/CH5/EX5.10/5_10.sce (limited to '605/CH5/EX5.10') diff --git a/605/CH5/EX5.10/5_10.sce b/605/CH5/EX5.10/5_10.sce new file mode 100755 index 000000000..250a25e79 --- /dev/null +++ b/605/CH5/EX5.10/5_10.sce @@ -0,0 +1,27 @@ + +fr=35*10^9 +w=2*%pi*fr +Es=9.9 +Er=36 +uo=4*%pi*10^-7 +Eo=8.8154*10^-12 +z1=1.2892*10^8/(fr*sqrt(Es)) +z2=1.2892*10^8/(fr*sqrt(Er)) +r=0.835*10^-3 +printf("\n1.2892*10^8/(fr*sqrt(Es))=%.3e m",z1) +printf("\n1.2892*10^8/(fr*sqrt(Er))=%.3e m",z2) +ko=w*sqrt(uo*Eo) +y=sqrt((ko*r)^2*(Er-1)-5.784) +printf("\ny=%.3f",y) +k_=2.405/r+y/(2.405*r*(1+2.43/y+0.291*y)) +printf("\nk_=%.3e",k_) +a1=sqrt(k_^2-ko^2*Es) +a2=sqrt(k_^2-ko^2) +B=sqrt(ko^2*Er-k_^2) +printf("\na1=%.3e\na2=%.3e\nB=%.3e",a1,a2,B) +d=10^-3 +t=.25*10^-3 +h=1/B*(atan(a1/(B*tanh(a1*t)))+atan(a2/(B*tanh(a2*d)))) +printf("\nh=%.3e m",h) + + -- cgit