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 /3014/CH4/EX4.12 | |
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 '3014/CH4/EX4.12')
-rwxr-xr-x | 3014/CH4/EX4.12/Ex4_12.sce | 15 | ||||
-rwxr-xr-x | 3014/CH4/EX4.12/Ex4_12.txt | 5 |
2 files changed, 20 insertions, 0 deletions
diff --git a/3014/CH4/EX4.12/Ex4_12.sce b/3014/CH4/EX4.12/Ex4_12.sce new file mode 100755 index 000000000..af8cce616 --- /dev/null +++ b/3014/CH4/EX4.12/Ex4_12.sce @@ -0,0 +1,15 @@ +
+clc
+//Given that
+alpha_300 = 2.5e-39 // total polarisability in C^2m/N at 300 K
+alpha_600 = 1.75e-39 // total polarisability in C^2m/N at 600 K
+T1 = 300 // Initial temperature in Kelvin
+T2 = 600 // Final Temperature in Kelvin
+printf("Example 4.12\n")
+b = (alpha_300-alpha_600)*T2
+al_def_300 = alpha_300 - b/300
+al_oriant_300 = b/300
+al_oriant_600 = b/600
+printf("\n Deformational Polarizability is %e C^2mN^-1",al_def_300)
+printf("\n Orientational Polarizability at %d degree Celcius is %e C^2mN^-1",T1,al_oriant_300)
+printf("\n Orientational Polarizability at %d degree Celcius is %e C^2mN^-1",T2,al_oriant_600)
diff --git a/3014/CH4/EX4.12/Ex4_12.txt b/3014/CH4/EX4.12/Ex4_12.txt new file mode 100755 index 000000000..6b72216c9 --- /dev/null +++ b/3014/CH4/EX4.12/Ex4_12.txt @@ -0,0 +1,5 @@ +Example 4.12
+
+ Deformational Polarizability is 1.000000e-39 C^2mN^-1
+ Orientational Polarizability at 300 degree Celcius is 1.500000e-39 C^2mN^-1
+ Orientational Polarizability at 600 degree Celcius is 7.500000e-40 C^2mN^-1
\ No newline at end of file |