summaryrefslogtreecommitdiff
path: root/2216/CH8/EX8.4/ex_8_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '2216/CH8/EX8.4/ex_8_4.sce')
-rwxr-xr-x2216/CH8/EX8.4/ex_8_4.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2216/CH8/EX8.4/ex_8_4.sce b/2216/CH8/EX8.4/ex_8_4.sce
new file mode 100755
index 000000000..648d9dc6f
--- /dev/null
+++ b/2216/CH8/EX8.4/ex_8_4.sce
@@ -0,0 +1,15 @@
+//Example 8.4: The multiplication
+clc;
+clear;
+close;
+format('v',5)
+//given data :
+eta=40/100;//
+e=1.6*10^-19;// in J
+h=6.626*10^-34;//in Js
+c=3*10^8;// in m s^-1
+lamda=1.3*10^-6;// in m
+P_in=0.3*10^-6;// in W
+I=6*10^-6;// in A
+M=(I*h*c)/(P_in*eta*e*lamda);
+disp(M,"The multiplication factor,M = ")