diff options
Diffstat (limited to '2792/CH11/EX11.12/Ex11_12.sce')
-rwxr-xr-x | 2792/CH11/EX11.12/Ex11_12.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2792/CH11/EX11.12/Ex11_12.sce b/2792/CH11/EX11.12/Ex11_12.sce new file mode 100755 index 000000000..f396d39bc --- /dev/null +++ b/2792/CH11/EX11.12/Ex11_12.sce @@ -0,0 +1,10 @@ +clc
+R =.33
+disp("R = "+string(R)) //initializing value of reflection coefficient
+alpha_R = 20
+disp("alpha_R = "+string(alpha_R)+"cm^-1") //initializing value of absorption loss coefficient
+L= (-1/alpha_R)*log(R)
+disp("The length of the cavity is ,L= (-1/alpha_R)*log(R)= "+string(L)+"cm")//calculation
+
+
+
|