diff options
Diffstat (limited to '3753/CH3/EX3.9')
-rw-r--r-- | 3753/CH3/EX3.9/Ex3_9.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3753/CH3/EX3.9/Ex3_9.sce b/3753/CH3/EX3.9/Ex3_9.sce new file mode 100644 index 000000000..42e6f5261 --- /dev/null +++ b/3753/CH3/EX3.9/Ex3_9.sce @@ -0,0 +1,17 @@ +//Example number 3.9, Page number 3.35 + + +clc;clear;close + +// Variable declaration +lamda_L1=39.6*10**-9 // in m +lamda_L2=173*10**-9 // in m +T1=7.1 // in s +T2=3 // in s + +// Calculations +x=(lamda_L1/lamda_L2)**2 // in kg/m^2 +Tc4=(T1**4)-((T2**4)*x)/(1-x) // in K +Tc=(Tc4)**(1/4) // in K +printf("Tc = %0.4f K",Tc) +printf("\nlamda0 = %.f nm",round((sqrt(1-(T2/Tc)**4)*lamda_L1)*10**9)) |