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 /24/CH41 | |
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 '24/CH41')
-rwxr-xr-x | 24/CH41/EX41.1/Example41_1.sce | 14 | ||||
-rwxr-xr-x | 24/CH41/EX41.1/Example41_1_result.txt | 2 | ||||
-rwxr-xr-x | 24/CH41/EX41.2/Example41_2.sce | 12 | ||||
-rwxr-xr-x | 24/CH41/EX41.2/Example41_2_result.txt | 3 | ||||
-rwxr-xr-x | 24/CH41/EX41.3/Example41_3.sce | 2 | ||||
-rwxr-xr-x | 24/CH41/EX41.3/Example41_3_result.txt | 1 | ||||
-rwxr-xr-x | 24/CH41/EX41.3/Example41_3a.jpg | bin | 0 -> 26918 bytes | |||
-rwxr-xr-x | 24/CH41/EX41.4/Example41_4.sce | 10 | ||||
-rwxr-xr-x | 24/CH41/EX41.4/Example41_4_result.txt | 2 | ||||
-rwxr-xr-x | 24/CH41/EX41.5/Example41_5.sce | 9 | ||||
-rwxr-xr-x | 24/CH41/EX41.5/Example41_5_result.txt | 2 | ||||
-rwxr-xr-x | 24/CH41/EX41.6/Example41_6.sce | 19 | ||||
-rwxr-xr-x | 24/CH41/EX41.6/Example41_6_result.txt | 5 |
13 files changed, 81 insertions, 0 deletions
diff --git a/24/CH41/EX41.1/Example41_1.sce b/24/CH41/EX41.1/Example41_1.sce new file mode 100755 index 000000000..2c5550345 --- /dev/null +++ b/24/CH41/EX41.1/Example41_1.sce @@ -0,0 +1,14 @@ +//Given that
+Bdot = 1.4/10^-3 //in T/m
+w = 3.5*10^-2 //in m
+v = 750 //in m/s
+M = 1.8*10^-25 //in kg
+u = 9.27*10^-24 //in J/T
+
+//Sample Problem 41-1
+printf("**Sample Problem 41-1**\n")
+Fz = u*Bdot
+a = Fz/M
+t = w/v
+d = 0.5*a*t^2
+printf("The atoms have been deflected %e m", d)
\ No newline at end of file diff --git a/24/CH41/EX41.1/Example41_1_result.txt b/24/CH41/EX41.1/Example41_1_result.txt new file mode 100755 index 000000000..dbbbed1de --- /dev/null +++ b/24/CH41/EX41.1/Example41_1_result.txt @@ -0,0 +1,2 @@ +**Sample Problem 41-1**
+The atoms have been deflected 7.850889e-005 m
\ No newline at end of file diff --git a/24/CH41/EX41.2/Example41_2.sce b/24/CH41/EX41.2/Example41_2.sce new file mode 100755 index 000000000..aa39e71a3 --- /dev/null +++ b/24/CH41/EX41.2/Example41_2.sce @@ -0,0 +1,12 @@ +//Given that
+B = 1.80 //in T
+Uz =1.41*10^-26 //in J/T
+h = 6.62*10^-34 //in J-s
+c = 3*10^8 //in m/s
+
+//Sample Problem 42-2
+printf("**Sample Problem 42-2**\n")
+f = 2*Uz*B/h
+printf("The frequency of the alternating field is %e Hz\n", f)
+lambda = c/f
+printf("The wavelength of the field is %fm", lambda)
\ No newline at end of file diff --git a/24/CH41/EX41.2/Example41_2_result.txt b/24/CH41/EX41.2/Example41_2_result.txt new file mode 100755 index 000000000..fd727191e --- /dev/null +++ b/24/CH41/EX41.2/Example41_2_result.txt @@ -0,0 +1,3 @@ +**Sample Problem 42-2**
+The frequency of the alternating field is 7.667674e+007 Hz
+The wavelength of the field is 3.912530m
\ No newline at end of file diff --git a/24/CH41/EX41.3/Example41_3.sce b/24/CH41/EX41.3/Example41_3.sce new file mode 100755 index 000000000..01a788558 --- /dev/null +++ b/24/CH41/EX41.3/Example41_3.sce @@ -0,0 +1,2 @@ +//Sample Problem 41_3
+printf("Sample Problem 42_3")
\ No newline at end of file diff --git a/24/CH41/EX41.3/Example41_3_result.txt b/24/CH41/EX41.3/Example41_3_result.txt new file mode 100755 index 000000000..4e79be70b --- /dev/null +++ b/24/CH41/EX41.3/Example41_3_result.txt @@ -0,0 +1 @@ +**Sample Problem 41-3**
\ No newline at end of file diff --git a/24/CH41/EX41.3/Example41_3a.jpg b/24/CH41/EX41.3/Example41_3a.jpg Binary files differnew file mode 100755 index 000000000..d25b573d4 --- /dev/null +++ b/24/CH41/EX41.3/Example41_3a.jpg diff --git a/24/CH41/EX41.4/Example41_4.sce b/24/CH41/EX41.4/Example41_4.sce new file mode 100755 index 000000000..59032a23e --- /dev/null +++ b/24/CH41/EX41.4/Example41_4.sce @@ -0,0 +1,10 @@ +//Given that
+K = 35*10^3 //in ev
+e = 1.6*10^-19 //in coulomb
+h = 6.62*10^-34 //in J-s
+c = 3*10^8 //in m/s
+
+//Sample Problem 41-4
+printf("**Sample Problem 41-4**\n")
+lambdaMin = h*c/(K*e)
+printf("The cutoff wavelength is %em", lambdaMin)
\ No newline at end of file diff --git a/24/CH41/EX41.4/Example41_4_result.txt b/24/CH41/EX41.4/Example41_4_result.txt new file mode 100755 index 000000000..9cdfb6db3 --- /dev/null +++ b/24/CH41/EX41.4/Example41_4_result.txt @@ -0,0 +1,2 @@ +**Sample Problem 41-4**
+The cutoff wavelength is 3.546429e-011m
\ No newline at end of file diff --git a/24/CH41/EX41.5/Example41_5.sce b/24/CH41/EX41.5/Example41_5.sce new file mode 100755 index 000000000..6bab074ee --- /dev/null +++ b/24/CH41/EX41.5/Example41_5.sce @@ -0,0 +1,9 @@ +//Given that
+Kalpha = 178.9*10^-12 //in m
+Kimpure = 143.5*10^-12 //in m
+Z = 27
+
+//sample Problem 41-5
+printf("**Sample Problem 41-5**\n")
+Zx = sqrt(Kalpha/Kimpure)*(Z-1) + 1
+printf("The proton number of the impurity is %d", Zx)
\ No newline at end of file diff --git a/24/CH41/EX41.5/Example41_5_result.txt b/24/CH41/EX41.5/Example41_5_result.txt new file mode 100755 index 000000000..3483bb996 --- /dev/null +++ b/24/CH41/EX41.5/Example41_5_result.txt @@ -0,0 +1,2 @@ +**Sample Problem 41-5**
+The proton number of the impurity is 30
\ No newline at end of file diff --git a/24/CH41/EX41.6/Example41_6.sce b/24/CH41/EX41.6/Example41_6.sce new file mode 100755 index 000000000..f6ff6277d --- /dev/null +++ b/24/CH41/EX41.6/Example41_6.sce @@ -0,0 +1,19 @@ +//Given that
+lambda = 550*10^-9 //in m
+T = 300 //in K room temprature
+h = 6.62*10^-34 //in J-s
+c = 3*10^8 //in m/s
+e = 1.6*10^-19
+K = 8.62*10^-5*e
+
+//Sample Problem 41-6a
+printf("**Sample Problem 41-6a**\n")
+deltaE = h*c/lambda
+ratio = %e^(-(deltaE)/(K*T))
+printf("The ratio is equal to %e\n", ratio)
+
+//Sample Problem 41-6b
+printf("\n**Sample Problem 41-6b**\n")
+ratio = 0.5
+T = -deltaE/K/log(ratio)
+printf("The temprature required for the given ratio is equal to %fK", T)
\ No newline at end of file diff --git a/24/CH41/EX41.6/Example41_6_result.txt b/24/CH41/EX41.6/Example41_6_result.txt new file mode 100755 index 000000000..6527ca0a7 --- /dev/null +++ b/24/CH41/EX41.6/Example41_6_result.txt @@ -0,0 +1,5 @@ +**Sample Problem 41-6a**
+The ratio is equal to 1.255602e-038
+
+**Sample Problem 41-6b**
+The temprature required for the given ratio is equal to 37771.466347K
\ No newline at end of file |