diff options
Diffstat (limited to '3014/CH8/EX8.4/Ex8_4.sce')
-rwxr-xr-x | 3014/CH8/EX8.4/Ex8_4.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3014/CH8/EX8.4/Ex8_4.sce b/3014/CH8/EX8.4/Ex8_4.sce new file mode 100755 index 000000000..1d3da19bf --- /dev/null +++ b/3014/CH8/EX8.4/Ex8_4.sce @@ -0,0 +1,13 @@ +
+
+ clc
+// Given that
+H_c_0= 0.0803// Critical Field in tesla
+T_c = 7.2 // Critical temperature in kelvin
+T = 4.2 // Temperature in kelvin
+printf("Example 8.4\n")
+printf("Standard formula used \tH_c = H_c_0*(1-(T/T_c)^2) \n")
+H_c = H_c_0*(1-(T/T_c)^2) // Calculation of critical field
+
+printf("Magnetic Field at %d K is %f tesla.\n\n\n",T,H_c)
+// Answer in book is 0.0548 tesla
|