summaryrefslogtreecommitdiff
path: root/3753/CH5/EX5.7/Ex5_7.sce
blob: 5566aeb17496b2aacdba600b171e6820b0a1e736 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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))