diff options
Diffstat (limited to '3669/CH9/EX9.6')
-rw-r--r-- | 3669/CH9/EX9.6/6.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3669/CH9/EX9.6/6.sce b/3669/CH9/EX9.6/6.sce new file mode 100644 index 000000000..c83039f4c --- /dev/null +++ b/3669/CH9/EX9.6/6.sce @@ -0,0 +1,11 @@ +
+//Variable declaration
+h=6.625*10**-34; //plancks constant
+e=1.6*10**-19;
+V=650*10**-6; //voltage(V)
+
+//Calculation
+new=2*e*V/h; //frequency(Hz)
+
+//Result
+printf('frequency is %0.3f *10**9 Hz \n',(new/10**9))
\ No newline at end of file |