diff options
Diffstat (limited to '273/CH5/EX5.1')
-rwxr-xr-x | 273/CH5/EX5.1/ex5_1sce.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/273/CH5/EX5.1/ex5_1sce.sce b/273/CH5/EX5.1/ex5_1sce.sce new file mode 100755 index 000000000..1ead0a8ae --- /dev/null +++ b/273/CH5/EX5.1/ex5_1sce.sce @@ -0,0 +1,15 @@ +clc;clear;
+//Example 5.1
+//Electron refraction, calculation of potential difference
+
+//given values
+ V1=250;//potential by which electrons are accelerated in Volts
+ alpha1=50*%pi/180;//in degree
+ alpha2=30*%pi/180;//in degree
+b=sin(alpha1)/sin(alpha2);
+ //calculation
+V2=(b^2)*V1;
+a=V2-V1;
+disp(a,'potential difference(in volts) is:');
+
+
|