Hello all,
This is probably a basic one, but I'm new to this!
I have the following variables, wz, wc and wp, as defined below;
qe = 1.602176462 * 10^-19 ; (* elementary charge, C *);
melectron = 9.10938188 * 10^-31 (* electron's mass, kg *);
c2 = 0.06 * 10^6(* Curvature of potential well, V\:f00c m2*);
u0 = -1(* voltage, V*);
wz=\[Sqrt]((2(-qe)*c2*u0) /( melectron))
qe = 1.602176462 * 10^-19 ; (* elementary charge, C *)
melectron = 9.10938188 * 10^-31 (* electron's mass, kg *);
B0 = 0.9
wc = (qe / melectron) * B0
wp = (wc / 2) +\[Sqrt]((wc / 2)^2 - ((wz)^2 / 2))
This is for a penning trap design, and the condition that the penning trap works is that;
wp > wc
or alternatively put;
(qe*B0/melectron) < wp
Now, I need to find the minimum value of B0 that will make this inequality work.
I have tried;
Solve[((qe*B0/melectron))<wp, B0]
---But this just gives me an error.
Any advice as to how to get this to work would be much appreciated!
Thanks
Izzy