diff options
Diffstat (limited to '24/CH29/EX29.6')
-rwxr-xr-x | 24/CH29/EX29.6/Example29_6.sce | 11 | ||||
-rwxr-xr-x | 24/CH29/EX29.6/Example29_6_result.txt | 2 |
2 files changed, 13 insertions, 0 deletions
diff --git a/24/CH29/EX29.6/Example29_6.sce b/24/CH29/EX29.6/Example29_6.sce new file mode 100755 index 000000000..dcfaeb950 --- /dev/null +++ b/24/CH29/EX29.6/Example29_6.sce @@ -0,0 +1,11 @@ +//Given that
+i = 28 //in A
+LD = 46.6*10^-3 //in kg/m
+g = 9.8 //in m/s^2
+
+//Sample Problem 29-6
+printf("**Sample Problem 29-6**\n")
+L = 1 //(say)
+m = LD*L
+B = m*g/i/L
+printf("The minimum magnetic field required to suspend the wire is equal to %eT", B)
\ No newline at end of file diff --git a/24/CH29/EX29.6/Example29_6_result.txt b/24/CH29/EX29.6/Example29_6_result.txt new file mode 100755 index 000000000..9c9b11b99 --- /dev/null +++ b/24/CH29/EX29.6/Example29_6_result.txt @@ -0,0 +1,2 @@ +**Sample Problem 29-6**
+The minimum magnetic field required to suspend the wire is equal to 1.631000e-002T
\ No newline at end of file |