diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1784/CH44 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1784/CH44')
-rwxr-xr-x | 1784/CH44/EX44.1/example1.sce | 8 | ||||
-rwxr-xr-x | 1784/CH44/EX44.2/example2.sce | 5 | ||||
-rwxr-xr-x | 1784/CH44/EX44.5/EX44_5.sce | 11 | ||||
-rwxr-xr-x | 1784/CH44/EX44.7/EX44_7.sce | 12 |
4 files changed, 36 insertions, 0 deletions
diff --git a/1784/CH44/EX44.1/example1.sce b/1784/CH44/EX44.1/example1.sce new file mode 100755 index 000000000..2f2f54144 --- /dev/null +++ b/1784/CH44/EX44.1/example1.sce @@ -0,0 +1,8 @@ +//example 1 +//chapter 44 +//clc() +m=1 +lambda=6500//in A + +a=(m*lambda)/sind(30) +disp(a,"a in A=")
\ No newline at end of file diff --git a/1784/CH44/EX44.2/example2.sce b/1784/CH44/EX44.2/example2.sce new file mode 100755 index 000000000..9a59e202c --- /dev/null +++ b/1784/CH44/EX44.2/example2.sce @@ -0,0 +1,5 @@ +//Example 2 +//Chapter 44 +lambda=6500 +lambda_1=lambda/1.5 +disp(lambda_1,"wavelength in A=")
\ No newline at end of file diff --git a/1784/CH44/EX44.5/EX44_5.sce b/1784/CH44/EX44.5/EX44_5.sce new file mode 100755 index 000000000..1922aa68e --- /dev/null +++ b/1784/CH44/EX44.5/EX44_5.sce @@ -0,0 +1,11 @@ +//chapter 44 +//Example 5 +clc +//given +m_0=(4*%pi*10^-7)//in weber +e_0=(8.9*10^-12) +R=5*10^-2//meters +dEbydT=10^12 +i_d=(e_0*%pi*R*R*dEbydT) +disp(" current in amp=") +disp(i_d)
\ No newline at end of file diff --git a/1784/CH44/EX44.7/EX44_7.sce b/1784/CH44/EX44.7/EX44_7.sce new file mode 100755 index 000000000..eb023ecb3 --- /dev/null +++ b/1784/CH44/EX44.7/EX44_7.sce @@ -0,0 +1,12 @@ +//chapter 44 +//example 7 +//given +//clc() + +lambda=480*10^-9//in m +d=0.10*10^-3//in m +D=50*10^-2// in m +a=0.02*10^-3 +delta_y=(lambda*D)/d +disp("solution (a)") +disp(delta_y,"D in m=") |