diff options
Diffstat (limited to '3769/CH9/EX9.2/Ex9_2.sce')
-rw-r--r-- | 3769/CH9/EX9.2/Ex9_2.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3769/CH9/EX9.2/Ex9_2.sce b/3769/CH9/EX9.2/Ex9_2.sce new file mode 100644 index 000000000..ed7f08a63 --- /dev/null +++ b/3769/CH9/EX9.2/Ex9_2.sce @@ -0,0 +1,19 @@ +clear +//Given +V=500 +d=2*10**-2 //m +v=3*10**7 +x=6*10**-2 +e=1.8*10**11 + +//Calculation +// +E=V/d +a=E*e +t=x/v +v1=a*t +T=v1/v +A=atan(T)*180.0/3.14 + +//Result +printf("\n Angle is %0.1f degree",A) |