summaryrefslogtreecommitdiff
path: root/3740/CH10/EX10.3/Ex10_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3740/CH10/EX10.3/Ex10_3.sce')
-rw-r--r--3740/CH10/EX10.3/Ex10_3.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3740/CH10/EX10.3/Ex10_3.sce b/3740/CH10/EX10.3/Ex10_3.sce
new file mode 100644
index 000000000..562fb574b
--- /dev/null
+++ b/3740/CH10/EX10.3/Ex10_3.sce
@@ -0,0 +1,16 @@
+//Optoelectronics - An Introduction, 2nd Edition by J. Wilson and J.F.B. Hawkes
+//Example 10.3
+//OS=Windows XP sp3
+//Scilab version 5.5.2
+clc;
+clear;
+
+//given
+Rs=1.5e13;//Raman shift in Silica in Hz
+T=323;//Absolute temperature in K
+DeltaT=1;//Change in Temperature in Degree Celsius or K
+h=6.6e-34;//Planck's constant in SI Units
+k=1.38e-23;//Boltzmann constant in SI Units
+
+DeltaRs=h*Rs*DeltaT/(k*(T^2));
+mprintf("\n DeltaRs = %.1e per Degree Celsius",DeltaRs);