diff options
Diffstat (limited to '3756/CH6')
-rw-r--r-- | 3756/CH6/EX6.1/Ex6_1.sce | 15 | ||||
-rw-r--r-- | 3756/CH6/EX6.2/Ex6_2.sce | 15 | ||||
-rw-r--r-- | 3756/CH6/EX6.3/Ex6_3.sce | 16 | ||||
-rw-r--r-- | 3756/CH6/EX6.5/Ex6_5.sce | 18 | ||||
-rw-r--r-- | 3756/CH6/EX6.7/Ex6_7.sce | 16 |
5 files changed, 80 insertions, 0 deletions
diff --git a/3756/CH6/EX6.1/Ex6_1.sce b/3756/CH6/EX6.1/Ex6_1.sce new file mode 100644 index 000000000..56b1cba1c --- /dev/null +++ b/3756/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,15 @@ +clc +// +// +// + +//Variable declaration +lambdaa=5400*10**-10 //Wavelength +tc=10**-10 //coherence time +c=3*10**-8 + +//Calculations +dom=((lambdaa)/(tc*c))*10**-10 + +//Result +printf("\n The Degree of Monochromaticity is %2.0f *10**-6",dom) diff --git a/3756/CH6/EX6.2/Ex6_2.sce b/3756/CH6/EX6.2/Ex6_2.sce new file mode 100644 index 000000000..d47c323e8 --- /dev/null +++ b/3756/CH6/EX6.2/Ex6_2.sce @@ -0,0 +1,15 @@ +clc +// +// +// + +//Variable declaration +W=(3.14/3) //Angular frequency in radian + + + +//Calculations +t=((3.14)/(3*W)) + +//Result +printf("\n The time taken to move from one end of its path to 0.025m from mean position is %i sec",t) diff --git a/3756/CH6/EX6.3/Ex6_3.sce b/3756/CH6/EX6.3/Ex6_3.sce new file mode 100644 index 000000000..a86913613 --- /dev/null +++ b/3756/CH6/EX6.3/Ex6_3.sce @@ -0,0 +1,16 @@ +clc +// +// +// + +//Variable declaration +T=31.4 //Time Period +A=0.06 //Amplitude + + +//Calculations +W=((2*3.14)/T) +Vmax=W*A + +//Result +printf("\n The Maximum Velocity is %0.3f m/sec",Vmax) diff --git a/3756/CH6/EX6.5/Ex6_5.sce b/3756/CH6/EX6.5/Ex6_5.sce new file mode 100644 index 000000000..6ff0a6212 --- /dev/null +++ b/3756/CH6/EX6.5/Ex6_5.sce @@ -0,0 +1,18 @@ +clc +// +// +// + +//Variable declaration +m=8 //mass +g=9.8 //acceleration due to gravity +x=0.32 //Stretched spring deviation +m2=0.5 //mass of the other body + + +//Calculations +k=((m*g)/x) +T=((2*3.14)*sqrt(m2/k)) + +//Result +printf("\n The Time Period of Oscillation for the other body is %0.2f sec",T) diff --git a/3756/CH6/EX6.7/Ex6_7.sce b/3756/CH6/EX6.7/Ex6_7.sce new file mode 100644 index 000000000..efc1bb918 --- /dev/null +++ b/3756/CH6/EX6.7/Ex6_7.sce @@ -0,0 +1,16 @@ +clc +// +// +// + +//Variable declaration +Q=2000 //Quality Factor +f=240 //Frequency + + +//Calculations +Tau=((Q)/(2*3.14*f)) +t=4*Tau + +//Result +printf("\n The Time in which the amplitude decreases is %1.1f sec",t) |