diff options
Diffstat (limited to '3745/CH1/EX1.61/Ex1_61.sce')
-rw-r--r-- | 3745/CH1/EX1.61/Ex1_61.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3745/CH1/EX1.61/Ex1_61.sce b/3745/CH1/EX1.61/Ex1_61.sce new file mode 100644 index 000000000..fd431887e --- /dev/null +++ b/3745/CH1/EX1.61/Ex1_61.sce @@ -0,0 +1,19 @@ +// Ex 61 Page 403 + +clc;clear;close; +// Given +d=5/100;//m +S=-4/100;//m +Ve=3;//kV +theta=45;//degree +e=1.6*10**-19;//C +m=9.67*10**-31;//kg + +u=sqrt(2*e*Ve*1000/m);//m/s +uy=u*sind(theta);//m/s +vy=0;//since final velocity =0 +//vy**2-uy**2=2*ay*S +ay=(vy**2-uy**2)/2/S;//m**2/s +//ay=e/m*V/d +V=ay*m*d/e;//V +printf("Potential difference = %.f V",V) |