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 /1286/CH5 | |
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 '1286/CH5')
-rwxr-xr-x | 1286/CH5/EX5.1/5_1.sce | 11 | ||||
-rwxr-xr-x | 1286/CH5/EX5.2/5_2.sce | 12 | ||||
-rwxr-xr-x | 1286/CH5/EX5.3/5_3.sce | 13 | ||||
-rwxr-xr-x | 1286/CH5/EX5.4/5_4.sce | 13 |
4 files changed, 49 insertions, 0 deletions
diff --git a/1286/CH5/EX5.1/5_1.sce b/1286/CH5/EX5.1/5_1.sce new file mode 100755 index 000000000..f03200d86 --- /dev/null +++ b/1286/CH5/EX5.1/5_1.sce @@ -0,0 +1,11 @@ +clc
+//initialisations
+h=50//m
+g=9.8//m/sec2
+l=1000
+j=4.2//j/cal
+//calculations
+q=h*g/j
+t=q/l
+//results
+printf(' difference in temperature of water= % 1f C',t)
diff --git a/1286/CH5/EX5.2/5_2.sce b/1286/CH5/EX5.2/5_2.sce new file mode 100755 index 000000000..860ed6733 --- /dev/null +++ b/1286/CH5/EX5.2/5_2.sce @@ -0,0 +1,12 @@ +clc
+//initialisations
+t1=327//c
+t2=47.6//c
+c=30//cal/kg
+l=6000//cal/kg
+j=4.2//j/cal
+//CALCULATIONS
+h=c*(t1-t2)+l
+v=sqrt(2*j*h)
+//results
+printf(' velocity of bullet= % 1f m/sec',v)
diff --git a/1286/CH5/EX5.3/5_3.sce b/1286/CH5/EX5.3/5_3.sce new file mode 100755 index 000000000..8aa836322 --- /dev/null +++ b/1286/CH5/EX5.3/5_3.sce @@ -0,0 +1,13 @@ +clc
+//initialisation
+e=3//v
+i=2//amp
+e1=3.75//v
+i1=2.5//amp
+t=2//c
+m=30//gm/min
+m1=48//gm/min
+//CALCULATIONS
+p=(e*i-e1*i1)/(t*(m-m1)/44.444)
+//results
+printf(' J= % 1f j/cal',p)
diff --git a/1286/CH5/EX5.4/5_4.sce b/1286/CH5/EX5.4/5_4.sce new file mode 100755 index 000000000..3836b8385 --- /dev/null +++ b/1286/CH5/EX5.4/5_4.sce @@ -0,0 +1,13 @@ +clc
+//initialisations
+c=1000
+t=1//c
+f=1//f
+J=4.18//j/cal
+g=9.8//m/sec2
+//CALCULATIONS
+h=c*t*J/g
+h1=h*f*5/9
+//results
+printf(' height pf waterfall to rasie 1 c= % 1f m',h)
+printf(' height of waterfall to raise 1 f= % 1f m',h1)
|