diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1026/CH10 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1026/CH10')
-rwxr-xr-x | 1026/CH10/EX10.1/Example10_1.sce | 19 | ||||
-rwxr-xr-x | 1026/CH10/EX10.10/Example10_10.sce | 19 | ||||
-rwxr-xr-x | 1026/CH10/EX10.11/Example10_11.sce | 23 | ||||
-rwxr-xr-x | 1026/CH10/EX10.12/Example10_12.sce | 21 | ||||
-rwxr-xr-x | 1026/CH10/EX10.13/Example10_13.sce | 41 | ||||
-rwxr-xr-x | 1026/CH10/EX10.2/Example10_2.sce | 23 | ||||
-rwxr-xr-x | 1026/CH10/EX10.3/Example10_3.sce | 31 | ||||
-rwxr-xr-x | 1026/CH10/EX10.4/Example10_4.sce | 27 | ||||
-rwxr-xr-x | 1026/CH10/EX10.5/Example10_5.sce | 23 | ||||
-rwxr-xr-x | 1026/CH10/EX10.6/Example10_6.sce | 27 | ||||
-rwxr-xr-x | 1026/CH10/EX10.7/Example10_7.sce | 41 | ||||
-rwxr-xr-x | 1026/CH10/EX10.8/Example10_8.sce | 27 | ||||
-rwxr-xr-x | 1026/CH10/EX10.9/Example10_9.sce | 21 |
13 files changed, 343 insertions, 0 deletions
diff --git a/1026/CH10/EX10.1/Example10_1.sce b/1026/CH10/EX10.1/Example10_1.sce new file mode 100755 index 000000000..a67e9283b --- /dev/null +++ b/1026/CH10/EX10.1/Example10_1.sce @@ -0,0 +1,19 @@ +//chapter10,Example10_1,pg 270
+
+L=1.33*10^-22
+
+B=0.025
+
+m=6.68*10^-27
+
+q=3.2*10^-19
+
+w=(B*q)/m
+
+E=0.5*L*w//E=0.5I(w^2),Iw=L
+
+E=E/(1.6*10^-19)//converting into ev
+
+printf("KE of particle\n")
+
+printf("E=%.2f ev",E)
\ No newline at end of file diff --git a/1026/CH10/EX10.10/Example10_10.sce b/1026/CH10/EX10.10/Example10_10.sce new file mode 100755 index 000000000..d2e524de9 --- /dev/null +++ b/1026/CH10/EX10.10/Example10_10.sce @@ -0,0 +1,19 @@ +//chapter10,Example10_10,pg 275
+
+//F=mg=qE
+
+E=250
+
+R=10^-8
+
+rho=10^3//density
+
+m=(4/3)*%pi*(R^3)*rho//m=volume*density
+
+W=m*9.8//weight of drop(mg)
+
+q=W/E
+
+printf("charge on water drop\n")
+
+disp(q)
\ No newline at end of file diff --git a/1026/CH10/EX10.11/Example10_11.sce b/1026/CH10/EX10.11/Example10_11.sce new file mode 100755 index 000000000..7fc2e2713 --- /dev/null +++ b/1026/CH10/EX10.11/Example10_11.sce @@ -0,0 +1,23 @@ +//chapter10,Example10_11,pg 275
+
+e=1.6*10^-19
+
+v=5*10^5
+
+B=0.3
+
+N=6.025*10^26
+
+M72=72/N
+
+R72=(M72*v)/(B*e)
+
+M74=74
+
+R74=(R72/72)*M74
+
+S=2*(R74-R72)//linear separation of two line
+
+printf("linear separation of two line\n")
+
+printf("S=%.2f m",S)
\ No newline at end of file diff --git a/1026/CH10/EX10.12/Example10_12.sce b/1026/CH10/EX10.12/Example10_12.sce new file mode 100755 index 000000000..f97d99025 --- /dev/null +++ b/1026/CH10/EX10.12/Example10_12.sce @@ -0,0 +1,21 @@ +//chapter10,Example10_12,pg 276
+
+l=5*10^-2
+
+d=0.3//distance of screen from end of mag. field
+
+D=d+(l/2)
+
+y=0.01
+
+m=9.1*10^-31
+
+e=1.6*10^-19
+
+Va=1000
+
+B=(y/(D*l))*sqrt((2*m*Va)/e)
+
+printf("flux density\n")
+
+printf("B=%.8f Wb/m2",B)
\ No newline at end of file diff --git a/1026/CH10/EX10.13/Example10_13.sce b/1026/CH10/EX10.13/Example10_13.sce new file mode 100755 index 000000000..912e85bac --- /dev/null +++ b/1026/CH10/EX10.13/Example10_13.sce @@ -0,0 +1,41 @@ +//chapter10,Example10_13,pg 276
+
+e=1.6*10^-19
+
+Va=150
+
+m=9.1*10^-31
+
+vx=sqrt((2*e*Va)/m)
+
+V=20
+
+d=10^-2
+
+ay=(e/m)*(V/d)
+
+l=10*10^-2
+
+vy=ay*(l/vx)
+
+theta=atan(vy/vx)
+
+theta=theta*(180/%pi)//converting into degree
+
+theta=theta*(%pi/180)//converting into radian
+
+Y=D*tan(theta)
+
+S=(Y/V)
+
+printf("velocity of electron reaching field vx=%.2f m/sec\n",vx)
+
+printf("\nacceleration due to electric field ay=%.2f m/sec2\n",ay)
+
+printf("\nfinal velocity attained by deflecting field vy=%.2f m/sec\n",vy)
+
+printf("\nangle of deflection theta=%.2f deg.\n",theta)
+
+printf("\ndeflection on screen Y=%.2f m\n",Y)
+
+printf("\ndeflection senstivity S=%.2f m/volt\n",S)
\ No newline at end of file diff --git a/1026/CH10/EX10.2/Example10_2.sce b/1026/CH10/EX10.2/Example10_2.sce new file mode 100755 index 000000000..6260afb1a --- /dev/null +++ b/1026/CH10/EX10.2/Example10_2.sce @@ -0,0 +1,23 @@ +//chapter10,Example10_2,pg 271
+
+R=0.35
+
+n=1.38*10^7
+
+m=1.67*10^-27
+
+q=1.6*10^-19
+
+B=(2*%pi*n*m)/q
+
+E=((B^2)*(q^2)*(R^2))/(2*m)
+
+E=E/q
+
+printf("magnetic field induction\n")
+
+printf("B=%.2f wb/m2",B)
+
+printf("\nmaximum energy of proton\n")
+
+printf("E=%.2f ev",E)
\ No newline at end of file diff --git a/1026/CH10/EX10.3/Example10_3.sce b/1026/CH10/EX10.3/Example10_3.sce new file mode 100755 index 000000000..b178078d4 --- /dev/null +++ b/1026/CH10/EX10.3/Example10_3.sce @@ -0,0 +1,31 @@ +//chapter10,Example10_3,pg 271
+
+m=9.1*10^-31
+
+e=1.6*10^-19
+
+//due to potential difference V, electron is accelerated
+
+//eV=0.5*m*(v^2)
+
+//due to transverse magnetic field B electron moves in circular path of radius R
+
+//(m*(v^2))/R=BeV
+
+B=1.19*10^-3
+
+V=1000
+
+v=sqrt((2*e*V)/m)
+
+R=(m*v)/(B*e)
+
+L=m*v*R
+
+printf("radius of electron trajectory\n")
+
+printf("R=%.2f m",R)
+
+printf("\nangular momentum of electron\n")
+
+disp(L)
\ No newline at end of file diff --git a/1026/CH10/EX10.4/Example10_4.sce b/1026/CH10/EX10.4/Example10_4.sce new file mode 100755 index 000000000..3faf84579 --- /dev/null +++ b/1026/CH10/EX10.4/Example10_4.sce @@ -0,0 +1,27 @@ +//chapter10,Example10_4,pg 272
+
+vx=1.7*10^7
+
+Ey=3.4*10^4
+
+x=3*10^-2
+
+t=x/vx
+
+//y=0.5*ay*(t^2)
+
+ay=(e*Ey)/m
+
+y=0.5*ay*(t^2)
+
+Bz=Ey/vx
+
+printf("verical displacement of electron \n")
+
+printf("y=%.2f m",y)
+
+printf("\nmagnitude of magnetic field\n")
+
+printf("B=%.4f wb/m2",B)
+
+printf("\ndirection of field is upward as Ey is downward")
\ No newline at end of file diff --git a/1026/CH10/EX10.5/Example10_5.sce b/1026/CH10/EX10.5/Example10_5.sce new file mode 100755 index 000000000..840591a88 --- /dev/null +++ b/1026/CH10/EX10.5/Example10_5.sce @@ -0,0 +1,23 @@ +//chapter10,Example10_5,pg 272
+
+m=1.67*10^-27
+
+q=1.6*10^-19
+
+B=0.5
+
+n=((B*q)/(2*%pi*m))
+
+R=1
+
+E=((B^2)*(q^2)*(R^2))/(2*m)
+
+E=E/(1.6*10^-19)
+
+printf("frequency of oscillation voltage\n")
+
+printf("n=%.2f Hz",n)
+
+printf("\nmaximum energy of proton\n")
+
+printf("E=%.2f ev",E)
\ No newline at end of file diff --git a/1026/CH10/EX10.6/Example10_6.sce b/1026/CH10/EX10.6/Example10_6.sce new file mode 100755 index 000000000..45f3c9c74 --- /dev/null +++ b/1026/CH10/EX10.6/Example10_6.sce @@ -0,0 +1,27 @@ +//chapter10,Example10_6,pg 273
+
+q=3.2*10^-19
+
+m=6.68*10^-27
+
+B=1.5
+
+v=7.263*10^6
+
+F=B*q*v
+
+printf("force on particle\n")
+
+disp(F)
+
+T=(2*%pi*m)/(B*q)
+
+n=1/T
+
+printf("\nperiodic time\n")
+
+disp(T)
+
+printf("\nresonance frequency\n")
+
+printf("n=%.2f Hz",n)
\ No newline at end of file diff --git a/1026/CH10/EX10.7/Example10_7.sce b/1026/CH10/EX10.7/Example10_7.sce new file mode 100755 index 000000000..cfb18230d --- /dev/null +++ b/1026/CH10/EX10.7/Example10_7.sce @@ -0,0 +1,41 @@ +//chapter10,Example10_7,pg 273
+
+n=1.2*10^7
+
+mp=1.67*10^-27
+
+qp=1.6*10^-19
+
+Bp=(2*%pi*mp*n)/qp
+
+R=0.5
+
+Ep=((Bp^2)*(qp^2)*(R^2))/(2*mp)
+
+Ep=Ep/qp
+
+malp=6.68*10^-27
+
+qalp=2*1.6*10^-19
+
+Balp=(2*%pi*malp*n)/qalp
+
+Ealp=((Balp^2)*(qalp^2)*(R^2))/(2*malp)
+
+Ealp=Ealp/qp
+
+printf("flux density for proton\n")
+
+printf("Bp=%.2f Wb/m2",Bp)
+
+printf("\nflux density for alpha particle\n")
+
+printf("Balp=%.2f Wb/m2",Balp)
+
+printf("\nenergy of proton\n")
+
+printf("Ep=%.2f ev",Ep)
+
+printf("\nenergy of alpha particle\n")
+
+printf("Ealp=%.2f ev",Ealp)
\ No newline at end of file diff --git a/1026/CH10/EX10.8/Example10_8.sce b/1026/CH10/EX10.8/Example10_8.sce new file mode 100755 index 000000000..6827e284e --- /dev/null +++ b/1026/CH10/EX10.8/Example10_8.sce @@ -0,0 +1,27 @@ +//chapter10,Example10_8,pg 274
+
+e=1.6*10^-19
+
+me=9.1*10^-31//mass of electron
+
+q=3.2*10^-19
+
+malp=6.68*10^-27//mass of alpha particle
+
+B=0.05
+
+V=20*10^3
+
+//v=sqrt((2*q*V)/m)
+
+//R=(1/B)*sqrt((2*m*V)/q)
+
+Re=(1/B)*sqrt((2*me*V)/e)
+
+Ralp=(1/B)*sqrt((2*malp*V)/q)
+
+S=2*Ralp-2*Re//linear separation between two particles on common boundary wall
+
+printf("linear separation between two particles on common boundary wall\n")
+
+printf("S=%.2f m",S)
\ No newline at end of file diff --git a/1026/CH10/EX10.9/Example10_9.sce b/1026/CH10/EX10.9/Example10_9.sce new file mode 100755 index 000000000..e2e98fa26 --- /dev/null +++ b/1026/CH10/EX10.9/Example10_9.sce @@ -0,0 +1,21 @@ +//chapter10,Example10_9,pg 274
+
+V1=200
+
+//electrostatic focusing condition
+
+//(sini/sinr)=(v2/v1)=sqrt(V2/V1)
+
+//0.5mv2=eV
+
+i=60*(%pi/180)//converting into radian
+
+r=45*(%pi/180)//converting into radian
+
+V2=200*((sin(i)/sin(r))^2)
+
+pd=V2-V1//potential difference
+
+printf("potential difference between two region\n")
+
+printf("\npd=%.2f Volts",pd)
\ No newline at end of file |