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/CH8/EX8.2 | |
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/CH8/EX8.2')
-rwxr-xr-x | 3014/CH8/EX8.2/Ex8_2.sce | 10 | ||||
-rwxr-xr-x | 3014/CH8/EX8.2/Ex8_2.txt | 4 |
2 files changed, 14 insertions, 0 deletions
diff --git a/3014/CH8/EX8.2/Ex8_2.sce b/3014/CH8/EX8.2/Ex8_2.sce new file mode 100755 index 000000000..277e8fa44 --- /dev/null +++ b/3014/CH8/EX8.2/Ex8_2.sce @@ -0,0 +1,10 @@ +
+ clc
+// Given that
+H_c= 3.3e4 // // Magnetic field in A/m
+T_c = 7.2 // Critical temperature in kelvin
+T = 5 // Temperature in kelvin
+printf("Example 8.2\n")
+printf("Standard formula used \tH_c = H_c_0*(1-(T/T_c)^2) \n")
+H_c_0 = H_c*(1-(T/T_c)^2)^(-1) // Calculation of critical field
+printf("Magnetic Field at %d K is %e A/m\n\n\n",T,H_c_0)
diff --git a/3014/CH8/EX8.2/Ex8_2.txt b/3014/CH8/EX8.2/Ex8_2.txt new file mode 100755 index 000000000..58fa2ce1a --- /dev/null +++ b/3014/CH8/EX8.2/Ex8_2.txt @@ -0,0 +1,4 @@ +
+Example 8.2
+Standard formula used H_c = H_c_0*(1-(T/T_c)^2)
+Magnetic Field at 5 K is 6.373770e+04 A/m
|