blob: b9ebe71c8de9a14145f8ea6ee01a05e574c234df (
plain)
1
2
3
4
5
6
7
8
9
|
clc
// Given that
v = 1e6 // velocity of ion beam in m/sec
B = 1 // magnetic field in tesla
// Sample Problem 10 on page no. 6.24
printf("\n # PROBLEM 10 # \n")
E = B * v
printf("\n Standard formula used \n E = B * v. \n")
printf("\n Internal electric field = %e V/m",E)
|