diff options
Diffstat (limited to '3537/CH2/EX2.6/Ex2_6.sce')
-rw-r--r-- | 3537/CH2/EX2.6/Ex2_6.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3537/CH2/EX2.6/Ex2_6.sce b/3537/CH2/EX2.6/Ex2_6.sce new file mode 100644 index 000000000..5eedf8154 --- /dev/null +++ b/3537/CH2/EX2.6/Ex2_6.sce @@ -0,0 +1,10 @@ +//Example 2_6
+clc();
+clear;
+//To calculate the dispersive power of the granting in the third order spectrum
+k=3
+e=1/4000 //units in cm
+lemda=5000*10^-8 //units in cm
+theta=asin((k*lemda)/e)
+dt_dl=k/(e*cos(theta))
+printf("Disperssive power of the granting in the third order spectrum is %.0f",dt_dl)
|