summaryrefslogtreecommitdiff
path: root/3740/CH10/EX10.3/Ex10_3.sce
blob: 562fb574b9a36863af2a8c12bae37c93d85aea60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);