diff options
Diffstat (limited to '2912/CH5/EX5.10/Ex5_10.sce')
-rwxr-xr-x | 2912/CH5/EX5.10/Ex5_10.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2912/CH5/EX5.10/Ex5_10.sce b/2912/CH5/EX5.10/Ex5_10.sce new file mode 100755 index 000000000..1765b7481 --- /dev/null +++ b/2912/CH5/EX5.10/Ex5_10.sce @@ -0,0 +1,11 @@ +//chapter 5
+//example 5.10
+//Calculate wavelength
+//page 106
+clear;
+clc;
+//given
+V=10000; // in V (Potential)
+//calculate
+lambda=12.27/sqrt(V); // calculation of wavelength in Angstrom
+printf('\nThe wavelength is\t=%.3f Angstrom',lambda);
|