diff options
Diffstat (limited to '2243/CH13/EX13.11/Ex13_11.sce')
-rwxr-xr-x | 2243/CH13/EX13.11/Ex13_11.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/2243/CH13/EX13.11/Ex13_11.sce b/2243/CH13/EX13.11/Ex13_11.sce new file mode 100755 index 000000000..3de391bdf --- /dev/null +++ b/2243/CH13/EX13.11/Ex13_11.sce @@ -0,0 +1,9 @@ +clc();
+clear;
+//Given :
+V1 = 250; // potential in V
+V2 = 500;// potential in V
+theta1 = 45;// angle in degrees
+//Law of electron refraction = sin(theta1)/sin(theta2) = (V2/V1)^0.5
+theta2 = asind(((V1/V2)^(1/2))*sind(45));
+printf("theta2 = %d degrees",theta2);
|