diff options
Diffstat (limited to '3753/CH5/EX5.7')
-rw-r--r-- | 3753/CH5/EX5.7/Ex5_7.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3753/CH5/EX5.7/Ex5_7.sce b/3753/CH5/EX5.7/Ex5_7.sce new file mode 100644 index 000000000..5566aeb17 --- /dev/null +++ b/3753/CH5/EX5.7/Ex5_7.sce @@ -0,0 +1,14 @@ +//Example 5.7, Page number 5.29 + +clc;clear;close +// variable declaration +a=5;//unitless +n1=1.48;//unitless +delta=0.01;//unitless +V=25;// V number + +// Calculation +lamda=(%pi*(a*10**-6)*n1*sqrt(2*delta))/V // Cutoff Wavelength + +// Result +printf("Cutoff Wavellength = %.3f micro-m",(lamda*10**7)) |