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 /1991/CH1 | |
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 '1991/CH1')
-rwxr-xr-x | 1991/CH1/EX1.1/1.sce | 24 | ||||
-rwxr-xr-x | 1991/CH1/EX1.1/graph1.jpeg | bin | 0 -> 28500 bytes | |||
-rwxr-xr-x | 1991/CH1/EX1.1/graph2.jpeg | bin | 0 -> 58444 bytes |
3 files changed, 24 insertions, 0 deletions
diff --git a/1991/CH1/EX1.1/1.sce b/1991/CH1/EX1.1/1.sce new file mode 100755 index 000000000..1513b21aa --- /dev/null +++ b/1991/CH1/EX1.1/1.sce @@ -0,0 +1,24 @@ +clc
+clear
+//input
+x=(0:50:550)//temperature difference in x axis
+y=[0,0.43,0.79,1.10,1.36,1.54,1.69,1.77,1.80,1.78,1.70,1.54]//emf in y axis
+//calculation
+title("a graph of E vs teta")//setting title for graph
+xlabel("temperature difference teta")//setting x label
+ylabel("emf E")//setting y label
+plot(x,y)//plotting the graph
+printf("from the grapgh it can be determined that neutral temperature is 400deg C")
+x=(50:50:550)//temperature difference in x axis
+y=[8.6,7.9,7.3,6.8,6.2,5.6,5.1,4.5,4.0,3.4,2.8] //E/theta in y axis
+plot(x,y,"+-")//plotting the graph
+title("a graph of E/teta vs teta")//set title
+xlabel("temperature difference teta")//set x label
+ylabel(" E/teta")//set y label
+legend("E Vs Theta","E/theta Vs theta")
+b=-(4.5*10^-6)/400//gradient of graph is b
+a=4.5*10^-6-(b*400)//finding the intercept on y axis by substututing the points(400,4.5) in line equation
+printf("\n the value of b is %3.3e VdegC^-2",b)
+printf("\n the value of a is %3.3e VdegC^-1",a)
+
+
diff --git a/1991/CH1/EX1.1/graph1.jpeg b/1991/CH1/EX1.1/graph1.jpeg Binary files differnew file mode 100755 index 000000000..35512eafd --- /dev/null +++ b/1991/CH1/EX1.1/graph1.jpeg diff --git a/1991/CH1/EX1.1/graph2.jpeg b/1991/CH1/EX1.1/graph2.jpeg Binary files differnew file mode 100755 index 000000000..85c4fd1f9 --- /dev/null +++ b/1991/CH1/EX1.1/graph2.jpeg |